Agent skill
trakt
Track and view your watched movies and TV shows via trakt.tv. Use when user asks about their watch history, what they've been watching, or wants to search for movies/shows.
Stars
163
Forks
31
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/trakt
Metadata
Additional technical details for this skill
- clawdbot
-
{ "emoji": "\ud83c\udfac", "requires": { "bins": [ "trakt-cli" ] } }
SKILL.md
Trakt CLI
Query your trakt.tv watch history and search for movies/TV shows.
Installation
bash
npm install -g trakt-cli
Setup
- Create an app at https://trakt.tv/oauth/applications/new
- Run:
trakt-cli auth --client-id <id> --client-secret <secret> - Visit the URL shown and enter the device code
- Credentials saved to
~/.trakt.yaml
Commands
Watch History
bash
trakt-cli history # Recent history (default: 10 items)
trakt-cli history --limit 25 # Show more
trakt-cli history --page 2 # Paginate
Search
bash
trakt-cli search "Breaking Bad"
trakt-cli search "The Matrix"
Usage Examples
User: "What have I been watching lately?"
bash
trakt-cli history
User: "Show me my last 20 watched items"
bash
trakt-cli history --limit 20
User: "Find info about Severance"
bash
trakt-cli search "Severance"
Notes
- Search works without authentication
- History requires authentication
- Read-only access to watch history
Didn't find tool you were looking for?