askill
web-recap

web-recapSafety 75Repository

Extract browser history for finding URLs by topic or getting visit stats. Use when user asks about their browsing history, visited websites, or what they were doing online.

20 stars
1.2k downloads
Updated 12/17/2025

Package Files

Loading files...
SKILL.md

web-recap

Extracts browser history from Chrome, Chromium, Brave, Firefox, Safari, Edge. Run web-recap --help for all flags.

Key Flags

--date YYYY-MM-DD        Specific date (local timezone)
--start-date YYYY-MM-DD  Start of range
--end-date YYYY-MM-DD    End of range
--time HH                Specific hour (e.g., --time 14 for 2pm-3pm)
--browser NAME           chrome|firefox|safari|edge|brave|auto

Output Format

JSON with entries array. Each entry has: timestamp, url, title, domain, visit_count, browser.

Usage Patterns

Never dump raw output. Use jq to reduce tokens.

Search (find URLs by topic)

# Find entries matching a topic (searches title, domain, url)
web-recap | jq '[.entries[] | select(.title + .domain + .url | test("KEYWORD"; "i"))] | unique_by(.url) | map({title, url, domain})'

Stats (visit overview)

# Domain counts, sorted by visits
web-recap | jq '[.entries[].domain] | group_by(.) | map({domain: .[0], count: length}) | sort_by(-.count)'

Quick metadata

web-recap | jq '{start: .start_date, end: .end_date, total: .total_entries}'

Install

Download ZIP
Requires askill CLI v1.0+

AI Quality Score

88/100Analyzed 2/16/2026

Well-crafted skill for extracting browser history across multiple browsers. Strong actionability with practical jq examples and clear usage patterns. Minor safety concerns around sensitive data handling.

75
90
85
85
90

Metadata

Licenseunknown
Version-
Updated12/17/2025
Publisherrobzolkos

Tags

testing