首页龙虾技能列表 › K Cinema Bridge — 技能工具

K Cinema Bridge — 技能工具

v0.1.1

[自动翻译] Query Korean multiplex (Lotte Cinema, CGV, Megabox) box office rankings and upcoming movie data enriched with KOBIS details. Use when the user asks ab...

2· 1,029·0 当前·0 累计
by @uyeong (U-Yeong Ju)·MIT-0
下载技能包
License
MIT-0
最后更新
2026/2/26
安全扫描
VirusTotal
无害
查看报告
OpenClaw
安全
high confidence
The skill's requirements and runtime instructions match its stated purpose (fetching public JSON endpoints for Korean multiplex data) and it does not request unrelated credentials or perform surprising actions.
评估建议
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 mak...
详细分析 ▾
用途与能力
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.
指令范围
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.
安装机制
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.
凭证需求
The skill requires no environment variables, credentials, or config paths. No secrets are requested and the documented API endpoints are public GET endpoints.
持久化与权限
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.
安全有层次,运行前请审查代码。

License

MIT-0

可自由使用、修改和再分发,无需署名。

运行时依赖

无特殊依赖

版本

latestv0.1.12026/2/11

**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.

● 无害

安装命令 点击复制

官方npx clawhub@latest install k-cinema-bridge
镜像加速npx clawhub@latest install k-cinema-bridge --registry https://cn.clawhub-mirror.com

技能文档

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.
EndpointDescription
GET /api/boxoffice.jsonCombined box office from all sources ({lotte, cgv, megabox})
GET /api/boxoffice/{source}.jsonBox office by source (BoxOfficeMovie[])
GET /api/upcoming.jsonCombined upcoming movies from all sources ({lotte, cgv, megabox})
GET /api/upcoming/{source}.jsonUpcoming 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:

  • Fetch GET {BASE_URL}/api/boxoffice.json to retrieve combined box office data from all sources.
  • Identify movies that appear across multiple sources with low rank values — lower rank means higher popularity.
  • 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:

  • Fetch GET {BASE_URL}/api/upcoming.json to retrieve combined upcoming movie data.
  • Filter results by releaseDate (YYYY-MM-DD) to match the user's requested time range.
  • 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:

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

Filtering by Audience Rating

When the user asks for age-appropriate movies:

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

Querying a Specific Multiplex

When the user asks about a specific cinema chain:

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

Comparing Across Multiplexes

When the user asks to compare rankings between cinema chains:

  • Fetch GET {BASE_URL}/api/boxoffice.json to retrieve combined data.
  • 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.
数据来源:ClawHub ↗ · 中文优化:龙虾技能库
OpenClaw 技能定制 / 插件定制 / 私有工作流定制

免费技能或插件可能存在安全风险,如需更匹配、更安全的方案,建议联系付费定制

了解定制服务