browser-history
Search local browser history. Use when user asks about visited pages, forgotten URLs, or time spent on sites.
npx skills add majiayu000/claude-skill-registry --skill browser-history-brixtonpham-claude-config --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Browser History Search Search the user's browser history to find visited pages, analyze browsing patterns, and retrieve forgotten information. ## When to use - User asks about pages they visited ("what github repos did I look at last week?") - User wants to find a forgotten page ("find that article about LLMs I read") - User asks about browsing habits ("how much time did I spend on Twitter?") - User wants browsing statistics ("show my most visited sites") ## Requirements - `sqlite3` CLI ## Setup First, detect available browsers by running: ```bash ./find-browser.sh ``` - Output: PATH,TYPE,BROWSER,LAST_MODIFIED - **TYPE**: `firefox` or `chromium` (determines SQL syntax) - Use the first result (most recently used browser) by default - If multiple browsers were used recently (within last 24h), ask the user which one to search ## Querying the database Use `?immutable=1` in the SQLite URI to read the database even when the browser is open: ```bash sqlite3 "file:///path/to/history.db?immutable=1" "SELECT ..." ``` ### Firefox databases (places.sqlite) **Search by keyword:** ```sql SELECT title, url, datetime(last_visit_date/1000000, 'unixepoch', 'localtime') as visit_date FROM moz_place
- When to use
- Requirements
- Setup
- Querying the database
- Firefox databases (places.sqlite)
- Chromium databases (History)
- Database schema
- Firefox (mozplaces)
- Firefox (mozplacesmetadata)
- Chromium (urls)
- Output guidelines
sqlite3 "file:///path/to/history.db?immutable=1" "SELECT ..."
What does the browser-history skill do?
Search local browser history. Use when user asks about visited pages, forgotten URLs, or time spent on sites.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill browser-history-brixtonpham-claude-config --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
