movies

Fetch the latest cached movies list from a merged Maoyan and TMDB dataset.

Updated Apr 12, 2025
One-click install
npx skills add https://github.com/DavidKk/vercel-openapi --skill movies
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: movies
Source: https://github.com/DavidKk/vercel-openapi/tree/main/app/movies
Command: npx skills add https://github.com/DavidKk/vercel-openapi --skill movies

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill helps users quickly access a cached, merged list of current movies, reducing latency by serving data from a local cache rather than querying upstream sources.

Core Features & Use Cases

  • Cached data access: Returns the latest merged movie catalog from local cache to speed up responses.
  • Source transparency: Indicates whether data came from Maoyan, TMDB, or both.
  • Use Case: When a user asks for "what's new this week" you respond with a ready-to-use list from cache.

Quick Start

Ask for a quick list of latest movies; use the cache-backed endpoint to retrieve the current catalog.

Frequently Asked Questions about movies

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I get a fast list of current movies without querying upstream APIs live?

To get a fast list of current movies without live upstream calls, you retrieve data from a merged Maoyan and TMDB cache. This approach serves an offline-friendly catalog of current top picks and new releases instantly.

Can I fetch movie data from Maoyan and TMDB without making live network requests?

Yes, you can fetch Maoyan and TMDB movie data without live network requests by accessing a read-only local cache. This avoids upstream latency and provides a ready-to-use merged catalog of recently released titles.

What is the best way to retrieve a cached movies list for an offline-friendly overview?

The best way to retrieve a cached movies list for an offline-friendly overview is using a simple GET pathway. It enforces read-only access to the cache and does not mutate server state during retrieval.

Does the cached movie catalog indicate whether the data came from Maoyan or TMDB?

Yes, the cached movie catalog indicates source transparency, showing whether the data came from Maoyan, TMDB, or both. This helps you identify the origin of the current movies list returned from the cache.

Are there limitations when using a read-only cache to fetch the latest movies list?

The main limitation of using a read-only cache to fetch the latest movies list is that it enforces read-only access and does not mutate server state. It serves existing cached data rather than triggering fresh upstream queries.