packages/skills/README.md
Screenpipe skills for AI agents.
One-liner to install Screenpipe skills to your AI agent (OpenClaw, Claude Code, etc). Your agent can then query your screen history, get daily digests, and search memories.
# Install to remote agent (e.g., OpenClaw)
bunx @screenpipe/skills install --remote openclaw
# Install locally
bunx @screenpipe/skills install
# List available skills
bunx @screenpipe/skills list
| Skill | Trigger | What it does |
|---|---|---|
| recall | "What was I doing at 3pm?" | Query screen history by time |
| search | "Find when I saw error 404" | Full-text search memories |
| digest | "What did I work on today?" | Daily activity summaries |
| context | "Context for the auth refactor" | Get context for a topic |
bunx @screenpipe/sync --daemon# 1. Sync your screen data to the agent
bunx @screenpipe/sync --daemon --remote openclaw:~/.screenpipe/
# 2. Install skills
bunx @screenpipe/skills install --remote openclaw
# 3. Ask your agent
"What was I doing at 3pm yesterday?"
"Find when I last saw the budget spreadsheet"
"Summarize my work today"
Skills are markdown files that teach your AI agent how to query the Screenpipe SQLite database:
-- Example: Get today's app usage
SELECT app_name, COUNT(*) as frames
FROM ocr_text o
JOIN frames f ON o.frame_id = f.id
WHERE date(f.timestamp) = date('now')
GROUP BY app_name
ORDER BY frames DESC;
The agent reads these skill files and uses them to answer your questions about your screen history.
MIT - Part of Screenpipe