← ClaudeAtlas

movie-wishlistlisted

Fast path for adding a movie to the watch-later wishlist. Triggers on short phrases like "add the movie X", "add to films to watch X", "in the film wishlist Y", "new movie to watch — Z", "throw the movie W into films". Before writing, it researches IMDb rating, release year, and genre via WebSearch and stores them next to the title in lists/movies.md. Not used for showing the list, marking watched, or removing — those operations go through the regular lists skill.
ztnkv/personal-operating-system · ★ 0 · AI & Automation · score 70
Install: claude install-skill ztnkv/personal-operating-system
# movie-wishlist Fast path for adding a film to `lists/movies.md` with automatic enrichment by IMDb rating, year, and genre. This skill is also a **reference example** of how to build a domain-specific skill on top of a generic skill (`lists`). If you find yourself adding the same kind of enrichment to other lists (books, games, restaurants…), use this skill as a template — duplicate the file, swap the data source, keep the structure. ## When to invoke Short phrases where the user wants to **add a film to watch later**: - *"add the movie Dune"* - *"add to films to watch — The Gentlemen"* - *"in the wishlist — Oppenheimer"* - *"new film to watch — Poor Things"* - *"in films — The Substance"* - *"throw Anatomy of a Fall into films"* This skill takes over the regular `lists` skill specifically on the **add operation for films**, because without rating and genre the entry loses its purpose. **Do NOT invoke on:** - *"what's in my films"*, *"show the film list"* → `lists` (show). - *"watched The Gentlemen"*, *"mark Dune as watched"* → `lists` (check). - *"remove X from films"* → `lists` (remove). ## Algorithm ### Step 1. Extract the title Strip noise words ("watch", "new", "movie", "film", etc.). Keep the title in the user's original language — the user may use a local translation or the English original. If there are several films separated by commas / "and" — process them one by one, one full algorithm cycle per film. If the request is too vague to tell what to add —