screenpipe
Installation
SKILL.md
Quick Usage
Search via API
# Search for text in screen recordings
curl "http://localhost:3030/search?q=meeting&limit=10"
# Search audio transcriptions only
curl "http://localhost:3030/search?q=budget&content_type=audio"
# Search with time range (ISO 8601)
curl "http://localhost:3030/search?q=invoice&start_time=2024-01-28T09:00:00Z&end_time=2024-01-28T17:00:00Z"
# Filter by app
curl "http://localhost:3030/search?q=code&app_name=Visual%20Studio%20Code"
# Get recent activity (no query = all content)
curl "http://localhost:3030/search?limit=50"
Related skills