Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

k-cinema-bridgek 电影院桥

Agent Skill

k-cinema-bridge 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

34,105

周安装

1,465

GitHub Stars

2

下载量

11,954
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:k-cinema-bridge(k 电影院桥)
来源仓库:https://github.com/uyeong/k-cinema-bridge
安装命令:
openclaw skills install k-cinema-bridge
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install k-cinema-bridge

简介

查询韩国影院(乐天影院、CGV、Megabox)票房排名和即将上映的电影数据,丰富了 KOBIS 详细信息。当用户询问当前正在放映的韩国电影、票房排名、即将上映的电影,或者想要根据类型、导演、演员或评级推荐电影时使用。

SKILL.md

name
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.
homepage
https://uyeong.github.io/k-cinema-bridge/
allowed-tools
WebFetch

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

  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

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

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

74.37%
按下载量换算8,890

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills