Resources
6Install
npx skillscat add imoonkey/openweb/src-sites-rotten-tomatoes Install via the SkillsCat registry.
About this skill
This skill provides access to Rotten Tomatoes movie data, allowing agents to search for films and retrieve critic and audience scores, cast information, synopses, and other metadata. It solves the problem of accessing aggregated movie review data through a programmatic interface. Developers should use it when building applications that need movie ratings, reviews, or entertainment metadata from Rotten Tomatoes.
SKILL.md
Rotten Tomatoes
Overview
Movie review aggregator. Search movies, get details with Tomatometer and audience scores, cast, and synopsis.
Workflows
Find a movie and check scores
searchMovies(query)→slug,title,tomatometerScore,isCertifiedFreshgetMovieDetail(slug)→synopsis,audienceScore,cast,directors,genre
Quick Tomatometer lookup
searchMovies(query)→sluggetTomatoMeter(slug)→tomatometer.score,isCertifiedFresh,audienceScore.score
Compare movies
searchMovies(query)→slugvalues for each moviegetTomatoMeter(slug)for each → comparetomatometer.score,audienceScore.score
Operations
| Operation | Intent | Key Input | Key Output | Notes |
|---|---|---|---|---|
| searchMovies | search for movies | query | title, slug, year, tomatometerScore, isCertifiedFresh, cast | entry point, movies only (filters out TV/celebrity) |
| getMovieDetail | full movie details | slug ← searchMovies | title, synopsis, tomatometerScore, audienceScore, cast, directors, genre | LD+JSON + scorecard HTML parsing |
| getTomatoMeter | scores only | slug ← searchMovies | tomatometer.score, isCertifiedFresh, audienceScore.score | lightweight score-focused view |
Quick Start
# Search for a movie
openweb rotten-tomatoes exec searchMovies '{"query":"inception"}'
# Get movie details by slug
openweb rotten-tomatoes exec getMovieDetail '{"slug":"inception"}'
# Get just the Tomatometer scores
openweb rotten-tomatoes exec getTomatoMeter '{"slug":"inception"}'