Agent skill

browser-history

Search local browser history. Use when user asks about visited pages, forgotten URLs, or time spent on sites.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
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.

Facts
Files in the skill folder: 2
SKILL.md size: 4 KB
Bundled scripts: none
Path: skills/analysis/browser-history-brixtonpham-claude-config/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. When to use
  2. Requirements
  3. Setup
  4. Querying the database
  5. Firefox databases (places.sqlite)
  6. Chromium databases (History)
  7. Database schema
  8. Firefox (mozplaces)
  9. Firefox (mozplacesmetadata)
  10. Chromium (urls)
  11. Output guidelines
Ships with 1 file
  • metadata.json
Commands it runs
sqlite3 "file:///path/to/history.db?immutable=1" "SELECT ..."
More from claude-skill-registry
All skills →
About this skill
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.

Keep going