Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Search and retrieve URLs, titles, and visit counts from Das's Chrome browsing history, including recent visits and YouTube video searches.
Search and retrieve URLs, titles, and visit counts from Das's Chrome browsing history, including recent visits and YouTube video searches.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
Search Das's Chrome browsing history to find URLs, videos, sites he's visited before.
~/Library/Application Support/Google/Chrome/Default/History SQLite database. Can be queried directly if Chrome isn't locking it.
sqlite3 ~/Library/Application\ Support/Google/Chrome/Default/History \ "SELECT url, title FROM urls WHERE url LIKE '%TERM%' OR title LIKE '%TERM%' ORDER BY last_visit_time DESC LIMIT 10;"
sqlite3 ~/Library/Application\ Support/Google/Chrome/Default/History \ "SELECT url, title FROM urls WHERE url LIKE '%youtube.com/watch%' AND (url LIKE '%TERM%' OR title LIKE '%TERM%') ORDER BY last_visit_time DESC LIMIT 10;"
sqlite3 ~/Library/Application\ Support/Google/Chrome/Default/History \ "SELECT url, title, visit_count FROM urls ORDER BY visit_count DESC LIMIT 20;"
sqlite3 ~/Library/Application\ Support/Google/Chrome/Default/History \ "SELECT url, title FROM urls ORDER BY last_visit_time DESC LIMIT 20;"
Chrome locks the History file while running. Options: Copy first: cp ~/Library/Application\ Support/Google/Chrome/Default/History /tmp/chrome_history sqlite3 /tmp/chrome_history "SELECT ..." Use WAL mode (usually works even when Chrome is open): The sqlite3 command often works anyway due to WAL mode.
open -a "Google Chrome" "URL_HERE"
osascript -e 'tell application "System Events" to set visible of process "Google Chrome" to false'
WhatSearch TermBrain.fm focus musicbrain.fmYouTube videosyoutube.com/watchGitHub reposgithub.comTranscript APItranscriptapi or youtubetotranscript
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.