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.
Scanned 9/19/2026
Install to Claude Code
npx -y skills add rondoflow/rondoflow --skill track-watched-movies-shows --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Track Watched Movies Shows?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/rondoflow-track-watched-movies-shows)More formats (shields.io, HTML) on the badges page.
---
name: track-watched-movies-shows
description: "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."
category: "Community"
author: community
version: "0.1.0"
icon: puzzle
---
# Trakt CLI
Query your trakt.tv watch history and search for movies/TV shows.
## Installation
```bash
npm install -g trakt-cli
```
## Setup
1. Create an app at https://trakt.tv/oauth/applications/new
2. Run: `trakt-cli auth --client-id <id> --client-secret <secret>`
3. Visit the URL shown and enter the device code
4. 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
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!