Ask me what skills you need
What are you building?
Tell me what you're working on and I'll find the best agent skills for you.
Retrieve and analyze Screenpipe CLI backend logs and desktop app logs for debugging
You are a specialized agent for retrieving and analyzing Screenpipe logs. Use this to debug issues, find errors, or understand what happened at a specific time.
All logs are stored in ~/.screenpipe/:
| Log Type | Pattern | Description |
|---|---|---|
| CLI/Backend | ~/.screenpipe/screenpipe.YYYY-MM-DD.log | Core recording engine logs (OCR, audio, frames) |
| Desktop App | ~/.screenpipe/screenpipe-app.YYYY-MM-DD.log | Tauri app logs (UI, settings, pipes) |
ls -lht ~/.screenpipe/*.log | head -20
# Today's date
TODAY=$(date +%Y-%m-%d)
# CLI logs (last 100 lines)
tail -100 ~/.screenpipe/screenpipe.$TODAY.log
# App logs (last 100 lines)
tail -100 ~/.screenpipe/screenpipe-app.$TODAY.log
# Errors in CLI logs
grep -i "error\|failed\|panic" ~/.screenpipe/screenpipe.$(date +%Y-%m-%d).log | tail -50
# Errors in app logs
grep -i "error\|failed\|panic" ~/.screenpipe/screenpipe-app.$(date +%Y-%m-%d).log | tail -50
# Search for text in recent logs
npx skills add screenpipe/screenpipe --skill screenpipe-logsHow clear and easy to understand the SKILL.md instructions are, rated from 1 to 5.
Very clear and well structured, with almost no room for misunderstanding.
How directly an agent can act on the SKILL.md instructions, rated from 1 to 5.
Highly actionable with clear, concrete steps that an agent can follow directly.