pp-movie-goat
The movie CLI that combines TMDb's discovery engine with OMDb's multi-source ratings — and ships a SQLite watchlist that flags what's streaming on your services right now. Trigger phrases: `what should I watch tonight`, `where can I stream <title>`, `rate <title>`, `compare <title> and <title>`, `what's <person>'s filmography`, `plan a <franchise> marathon`, `use movie-goat`, `run movie-goat`.
What this skill does
<!-- GENERATED FILE — DO NOT EDIT.
This file is a verbatim mirror of library/media-and-entertainment/movie-goat/SKILL.md,
regenerated post-merge by tools/generate-skills/. Hand-edits here are
silently overwritten on the next regen. Edit the library/ source instead.
See the repository agent guide, section "Generated artifacts: registry.json, cli-skills/". -->
# Movie Goat — Printing Press CLI
## Prerequisites: Install the CLI
This skill drives the `movie-goat-pp-cli` binary. **You must verify the CLI is installed before invoking any command from this skill.** If it is missing, install it first:
1. Install via the Printing Press installer. It defaults binaries to `$HOME/.local/bin` on macOS/Linux and `%LOCALAPPDATA%\Programs\PrintingPress\bin` on Windows:
```bash
npx -y @mvanhorn/printing-press-library install movie-goat --cli-only
```
2. Verify: `movie-goat-pp-cli --version`
3. Ensure the reported install directory is on `$PATH` for the agent/runtime that will invoke this skill.
If the `npx` install fails (no Node, offline, etc.), fall back to a direct Go install (requires Go 1.26.3 or newer):
```bash
go install github.com/mvanhorn/printing-press-library/library/media-and-entertainment/movie-goat/cmd/movie-goat-pp-cli@latest
```
If `--version` reports "command not found" after install, the runtime cannot see the binary directory on `$PATH`. Do not proceed with skill commands until verification succeeds.
## When to Use This CLI
Use Movie Goat when an agent needs to answer cinephile questions that require combining streaming availability with multi-source ratings. It is the right choice for tonight-picker scenarios, franchise marathon planning, and rated career timelines. It is not the right choice for box-office tracking, review sentiment analysis, or any workflow that needs LLM-style summaries of plot or reviews.
## When Not to Use This CLI
Do not activate this CLI for requests that require creating, updating, deleting, publishing, commenting, upvoting, inviting, ordering, sending messages, booking, purchasing, or changing remote state. This printed CLI exposes read-only commands for inspection, export, sync, and analysis.
## Unique Capabilities
These capabilities aren't available in any other tool for this API.
### Cinephile rituals
- **`tonight`** — Pick what to watch tonight from trending titles actually streaming on your services.
_Use this when an agent needs a streaming-filtered shortlist; one call replaces tab-bouncing across TMDb/RT/JustWatch._
```bash
movie-goat-pp-cli tonight --mood thriller --max-runtime 120 --providers netflix,max --region US --json
```
- **`ratings`** — TMDb + IMDb + Rotten Tomatoes + Metacritic ratings for any title in one card.
_Use when an agent needs the canonical multi-source rating for a title; degrades gracefully to TMDb-only if OMDB_API_KEY is unset._
```bash
movie-goat-pp-cli ratings 550 --json
```
- **`marathon`** — Plan a franchise marathon with watch order, total runtime, and suggested breaks.
_Use when planning an event watch; agent can dump the schedule to share with a group._
```bash
movie-goat-pp-cli marathon "The Avengers" --order release --breaks-every 240 --json
```
- **`career`** — Explore any actor or director's full filmography with ratings and chronology.
_Use when an agent needs a rated chronological filmography; replaces flat IMDb lists with cross-source ratings._
```bash
movie-goat-pp-cli career "Christopher Nolan" --since 2010 --role director --json
```
- **`versus`** — Compare two movies or shows side-by-side across ratings, cast, runtime, and streaming.
_Use when an agent has to pick between two finalists; one command shows where they differ on every axis._
```bash
movie-goat-pp-cli versus 550 27205 --region US --json
```
- **`collaborators`** — List people who appear in 2+ of a person's credits, with count and titles.
_Use when an agent is researching a filmmaker's circle; surfaces recurring DPs/composers/actors mechanically._
```bash
movie-goat-pp-cli collaborators "Christopher Nolan" --min-count 3 --role crew --json
```
### Local state that compounds
- **`watchlist list`** — Local SQLite watchlist; flag rows that are streamable on your services.
_Use weekly to surface streamable items from a saved list; eliminates ad-hoc JustWatch checks per title._
```bash
movie-goat-pp-cli watchlist list --available --providers netflix,max --region US --json
```
- **`queue`** — Suggest next-watch picks derived from your watchlist's recommendations and similars.
_Use when an agent needs a fresh queue derived from saved interests; combines local state with API recommendations._
```bash
movie-goat-pp-cli queue --limit 20 --providers netflix,max --region US --json
```
## Command Reference
**discover** — Discover movies and TV shows with rich filters
- `movie-goat-pp-cli discover movies` — Discover movies by genre, year, rating, certification, cast, crew, streaming provider, and more
- `movie-goat-pp-cli discover tv` — Discover TV shows by genre, year, rating, network, and streaming provider
**genres** — Get genre lists for movies and TV
- `movie-goat-pp-cli genres movies` — Get the list of movie genres
- `movie-goat-pp-cli genres tv` — Get the list of TV genres
**movies** — Search and browse movies
- `movie-goat-pp-cli movies get` — Get detailed info about a movie including cast, ratings, and streaming availability
- `movie-goat-pp-cli movies now-playing` — Get movies currently in theaters
- `movie-goat-pp-cli movies popular` — Get current popular movies
- `movie-goat-pp-cli movies search` — Search for movies by title
- `movie-goat-pp-cli movies top-rated` — Get the highest rated movies
- `movie-goat-pp-cli movies upcoming` — Get movies coming soon to theaters
**multi** — Multi-search across movies, TV shows, and people
- `movie-goat-pp-cli multi <query>` — Search for movies, TV shows, and people in a single query
**people** — Search and browse people (actors, directors, crew)
- `movie-goat-pp-cli people get` — Get detailed info about a person including their filmography
- `movie-goat-pp-cli people popular` — Get popular people in entertainment
- `movie-goat-pp-cli people search` — Search for people by name
**trending** — Get trending movies, TV shows, and people
- `movie-goat-pp-cli trending all` — Get trending movies, TV, and people
- `movie-goat-pp-cli trending movies` — Get trending movies
- `movie-goat-pp-cli trending people` — Get trending people
- `movie-goat-pp-cli trending tv` — Get trending TV shows
**tv** — Search and browse TV shows
- `movie-goat-pp-cli tv airing-today` — Get TV shows with episodes airing today
- `movie-goat-pp-cli tv get` — Get detailed info about a TV show
- `movie-goat-pp-cli tv on-the-air` — Get TV shows currently on the air
- `movie-goat-pp-cli tv popular` — Get current popular TV shows
- `movie-goat-pp-cli tv search` — Search for TV shows by title
- `movie-goat-pp-cli tv top-rated` — Get the highest rated TV shows
### Finding the right command
When you know what you want to do but not which command does it, ask the CLI directly:
```bash
movie-goat-pp-cli which "<capability in your own words>"
```
`which` resolves a natural-language capability query to the best matching command from this CLI's curated feature index. Exit code `0` means at least one match; exit code `2` means no confident match — fall back to `--help` or use a narrower query.
## Recipes
### Tonight, well-rated, on my services
```bash
movie-goat-pp-cli tonight --mood drama --max-runtime 130 --providers netflix,max,prime --region US --agent --select "results.title,results.year,results.rating,results.providers"
```
Streaming-filtered shortlist with only the high-gravity fields an agent needs to decide.
### Watchlist sweep
```bash
movie-goat-pp-cli watchlist list --available --providers netflix,max --region US --agent
```
Weekly check: which saved titles became sRelated in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.