···30 Short: "Manage movie watch queue",
31 Long: `Track movies you want to watch.
3233-Search TMDB for movies and add them to your queue. Mark movies as watched when
34-completed. Maintains a history of your movie watching activity.`,
35 }
360037 addCmd := &cobra.Command{
38 Use: "add [search query...]",
39 Short: "Search and add movie to watch queue",
···54 addCmd.Flags().BoolP("interactive", "i", false, "Use interactive interface for movie selection")
55 root.AddCommand(addCmd)
56057 root.AddCommand(&cobra.Command{
58 Use: "list [--all|--watched|--queued]",
59 Short: "List movies in queue with status filtering",
···122 Short: "Manage TV show watch queue",
123 Long: `Track TV shows and episodes.
124125-Search TMDB for TV shows and add them to your queue. Track which shows you're
126-currently watching, mark episodes as watched, and maintain a complete history
127-of your viewing activity.`,
128 }
129130 addCmd := &cobra.Command{
···30 Short: "Manage movie watch queue",
31 Long: `Track movies you want to watch.
3233+Search for movies and add them to your queue. Mark movies as watched
34+when completed. Maintains a history of your movie watching activity.`,
35 }
3637+ // TODO: add colors
38+ // TODO: fix critic score parsing
39 addCmd := &cobra.Command{
40 Use: "add [search query...]",
41 Short: "Search and add movie to watch queue",
···56 addCmd.Flags().BoolP("interactive", "i", false, "Use interactive interface for movie selection")
57 root.AddCommand(addCmd)
5859+ // TODO: add interactive list view
60 root.AddCommand(&cobra.Command{
61 Use: "list [--all|--watched|--queued]",
62 Short: "List movies in queue with status filtering",
···125 Short: "Manage TV show watch queue",
126 Long: `Track TV shows and episodes.
127128+Search for TV shows and add them to your queue. Track which shows you're currently
129+watching, mark episodes as watched, and maintain a complete history of your viewing
130+activity.`,
131 }
132133 addCmd := &cobra.Command{