← Back to Skills Marketplace
uyeong

K Cinema Bridge

by U-Yeong Ju · GitHub ↗ · v0.1.1
cross-platform ✓ Security Clean
1112
Downloads
2
Stars
0
Active Installs
2
Versions
Install in OpenClaw
/install k-cinema-bridge
Description
Query Korean multiplex (Lotte Cinema, CGV, Megabox) box office rankings and upcoming movie data enriched with KOBIS details. Use when the user asks about Korean movies currently showing, box office rankings, upcoming releases, or wants movie recommendations based on genre, director, actor, or rating.
README (SKILL.md)

k-cinema-bridge

A JSON API providing Korean multiplex (Lotte Cinema, CGV, Megabox) box office and upcoming movie data, enriched with detailed information such as genre, director, and cast from KOBIS (Korean Film Council). Data is automatically refreshed daily at 00:00 UTC.

API Reference

  • Base URL: https://uyeong.github.io/k-cinema-bridge
  • All endpoints are accessible via GET requests without authentication.
  • The info field may be null, so always perform a null check before accessing it.
Endpoint Description
GET /api/boxoffice.json Combined box office from all sources ({lotte, cgv, megabox})
GET /api/boxoffice/{source}.json Box office by source (BoxOfficeMovie[])
GET /api/upcoming.json Combined upcoming movies from all sources ({lotte, cgv, megabox})
GET /api/upcoming/{source}.json Upcoming movies by source (UpcomingMovie[])

Valid source values: lotte, cgv, megabox

Data Models

BoxOfficeMovie

source: "lotte" | "cgv" | "megabox"
rank: number          -- Box office rank (starting from 1)
title: string         -- Movie title
rating: string        -- Audience rating
posterUrl: string     -- Poster image URL
info?: MovieInfo      -- KOBIS detailed info (may be null)

UpcomingMovie

source: "lotte" | "cgv" | "megabox"
title: string         -- Movie title
rating: string        -- Audience rating
posterUrl: string     -- Poster image URL
releaseDate: string   -- Release date (YYYY-MM-DD, may be an empty string)
info?: MovieInfo      -- KOBIS detailed info (may be null)

MovieInfo

code, title, englishTitle, originalTitle: string
runtime: string (minutes)
productionYear, openDate (YYYYMMDD), productionStatus, type: string
nations: string[]     -- Production countries
genres: string[]
directors: {name, englishName}[]
actors: {name, englishName, role, roleEnglish}[]
showTypes: {group, name}[]
companies: {code, name, englishName, part}[]
audits: {number, grade}[]
staff: {name, englishName, role}[]

Instructions

Recommending Popular Movies

When the user asks for movie recommendations or what's popular:

  1. Fetch GET {BASE_URL}/api/boxoffice.json to retrieve combined box office data from all sources.
  2. Identify movies that appear across multiple sources with low rank values — lower rank means higher popularity.
  3. Present the top-ranked movies with their title, rating, and genre from info.genres if available.

Announcing Upcoming Releases

When the user asks about upcoming or soon-to-be-released movies:

  1. Fetch GET {BASE_URL}/api/upcoming.json to retrieve combined upcoming movie data.
  2. Filter results by releaseDate (YYYY-MM-DD) to match the user's requested time range.
  3. Provide details such as genre, directors, and actors from the info field if available.

Searching by Genre, Director, or Actor

When the user asks about a specific genre, director, or actor:

  1. Fetch both GET {BASE_URL}/api/boxoffice.json and GET {BASE_URL}/api/upcoming.json.
  2. Filter results using the info field:
    • Genre: match against info.genres
    • Director: match against info.directors[].name
    • Actor: match against info.actors[].name
  3. Always null-check the info field before accessing nested properties.

Filtering by Audience Rating

When the user asks for age-appropriate movies:

  1. Use the rating field to filter. This field is always present and does not require the info field.
  2. Known rating values: "전체 관람가" (All ages), "12세 관람가" (12+), "15세 관람가" (15+), "청소년 관람불가" (Adults only).

Querying a Specific Multiplex

When the user asks about a specific cinema chain:

  1. Fetch GET {BASE_URL}/api/boxoffice/{source}.json or GET {BASE_URL}/api/upcoming/{source}.json.
  2. Valid source values: lotte, cgv, megabox.

Comparing Across Multiplexes

When the user asks to compare rankings between cinema chains:

  1. Fetch GET {BASE_URL}/api/boxoffice.json to retrieve combined data.
  2. Find movies with the same title across different sources and compare their rank values.

Response Guidelines

  • Respond in the same language the user is using.
  • When presenting movie lists, include title, rank or release date, rating, and genre when available.
  • If info is null for a movie, present only the base fields (title, rank, rating, posterUrl) without guessing missing details.
  • When comparing across multiplexes, use a table format for clarity.
Usage Guidance
This skill simply fetches public JSON files from the author's GitHub Pages site and formats/filter results; it doesn't request keys or access local files. Before installing, verify that you trust the homepage/source (https://uyeong.github.io/k-cinema-bridge/) and ensure your agent is allowed to perform outbound WebFetch requests — those web requests will include any movie queries you ask the agent to perform. If you need strict privacy, avoid sending sensitive data through the skill since it makes network requests to an external host.
Capability Analysis
Type: OpenClaw Skill Name: k-cinema-bridge Version: 0.1.1 The skill bundle is benign. All files consistently define a skill for querying Korean movie data from a static API hosted on GitHub Pages. The `SKILL.md` instructions guide the AI agent to use the `WebFetch` tool for specific, well-defined GET requests to `https://uyeong.github.io/k-cinema-bridge/api/` endpoints. The `openapi.json` further constrains path parameters (e.g., `source` enum), mitigating potential injection risks. There is no evidence of data exfiltration, malicious execution, persistence, or prompt injection attempts against the agent.
Capability Assessment
Purpose & Capability
Name/description describe aggregating box office and upcoming movie data; the skill only requires fetching public JSON endpoints from the documented GitHub Pages base URL, which is proportional and expected.
Instruction Scope
SKILL.md instructs only to GET specific endpoints, filter and present fields (title, rank, rating, info). It explicitly advises null-checks for info and has no steps that access unrelated files, env vars, or external endpoints beyond the documented base URL.
Install Mechanism
Instruction-only skill with no install spec and no code files; nothing is written to disk and no third-party packages or downloads are requested.
Credentials
The skill requires no environment variables, credentials, or config paths. No secrets are requested and the documented API endpoints are public GET endpoints.
Persistence & Privilege
The skill is not always-enabled and does not request persistent system privileges. Autonomous invocation is allowed by platform default but the skill's actions (public web GETs) are limited in scope.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install k-cinema-bridge
  3. After installation, invoke the skill by name or use /k-cinema-bridge
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v0.1.1
**Rewrite SKILL.md with structured instructions and frontmatter** - Rewrote SKILL.md entirely in English with YAML frontmatter (name, description, homepage, allowed-tools) - Added structured agent instructions: recommending popular movies, announcing upcoming releases, searching by genre/director/actor, filtering by audience rating, querying specific multiplexes, and comparing across chains - Added response guidelines for consistent agent behavior **Initial OpenAPI specification added** - Added openapi.json file defining the API structure and endpoints. - Enables standard integration and discovery of API methods for box office and upcoming movie data. - No code changes; documentation and interoperability improvements only.
v0.1.0
Initial release of k-cinema-bridge - Provides a public JSON API for Korean multiplex (Lotte Cinema, CGV, Megabox) box office and upcoming movie data. - Enriches with KOBIS data, including genres, directors, actors, and more. - Data auto-updates daily at 00:00 UTC. - Multiple endpoints for both aggregate and source-specific box office/upcoming movies. - JSON structures and sample usage cases documented for each API endpoint. - No authentication required; null checks needed for info fields.
Metadata
Slug k-cinema-bridge
Version 0.1.1
License
All-time Installs 0
Active Installs 0
Total Versions 2
Frequently Asked Questions

What is K Cinema Bridge?

Query Korean multiplex (Lotte Cinema, CGV, Megabox) box office rankings and upcoming movie data enriched with KOBIS details. Use when the user asks about Korean movies currently showing, box office rankings, upcoming releases, or wants movie recommendations based on genre, director, actor, or rating. It is an AI Agent Skill for Claude Code / OpenClaw, with 1112 downloads so far.

How do I install K Cinema Bridge?

Run "/install k-cinema-bridge" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is K Cinema Bridge free?

Yes, K Cinema Bridge is completely free (open-source). You can download, install and use it at no cost.

Which platforms does K Cinema Bridge support?

K Cinema Bridge is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created K Cinema Bridge?

It is built and maintained by U-Yeong Ju (@uyeong); the current version is v0.1.1.

💬 Comments