Web Recap banner
badlogic badlogic

Web Recap

AI community

Description

Help turn your browser history into AI-ready insights

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

web-recap

Extract browser history from Chrome, Chromium, Brave, Firefox, Safari, and Edge browsers and output it in JSON format suitable for analysis by LLMs and other tools.

**Privacy:** This tool runs entirely on your machine and never transmits data. Your browser history stays local unless you explicitly pipe it to an external service (like an LLM API).

Features

  • Multi-browser support: Chrome, Chromium, Edge, Brave, Firefox, and Safari
  • Cross-platform: Works on Linux, macOS, and Windows
  • Automatic detection: Auto-detects installed browsers or specify manually
  • Date filtering: Extract history for specific dates or date ranges
  • Timezone support: Parse dates in your local timezone or specify any timezone
  • Time filtering: Extract history for specific hours or time ranges
  • LLM-friendly output: JSON format optimized for consumption by language models
  • Minimal dependencies: Pure Go implementation with no CGO required for better cross-platform compilation

Installation

Download Binary

Download the latest binary from [GitHub Releases](https://github.com/robzolkos/web-recap/releases):

Platform Binary
Linux web-recap-linux-amd64
macOS (Intel) web-recap-darwin-amd64
macOS (Apple Silicon) web-recap-darwin-arm64
Windows web-recap-windows-amd64.exe
# Linux
curl -L https://github.com/robzolkos/web-recap/releases/latest/download/web-recap-linux-amd64 -o ~/.local/bin/web-recap
chmod +x ~/.local/bin/web-recap

# macOS (Apple Silicon)
curl -L https://github.com/robzolkos/web-recap/releases/latest/download/web-recap-darwin-arm64 -o ~/.local/bin/web-recap
chmod +x ~/.local/bin/web-recap

# macOS (Intel)
curl -L https://github.com/robzolkos/web-recap/releases/latest/download/web-recap-darwin-amd64 -o ~/.local/bin/web-recap
chmod +x ~/.local/bin/web-recap

**Note:** Ensure `~/.local/bin` is in your PATH. Add `export PATH="$HOME/.local/bin:$PATH"` to you