← 返回 Skills 市场
590
总下载
9
收藏
3
当前安装
6
版本数
在 OpenClaw 中安装
/install jisu-movie
功能描述
查上映影片、影院排片、影片详情与城市影院列表等。当用户说:最近有什么好看的电影?附近哪家影院放映《xxx》?或类似电影影讯问题时,使用本技能。
使用说明 (SKILL.md)
\r \r
极速数据电影影讯(Jisu Movie)\r
\r
数据由 极速数据(JisuAPI) 提供 — 国内专业的 API 数据服务平台,提供生活常用、交通出行、工具万能等数据接口。\r \r
前置配置:获取 API Key\r
\r
- 当前城市上映电影(
/movie/on)\r - 电影放映的电影院(
/movie/movietheater)\r - 电影院放映的电影(
/movie/theatermovie)\r - 电影详情(
/movie/detail)\r - 按城市获取电影院(
/movie/theater)\r - 获取电影城市列表(
/movie/city)\r \r 非常适合在对话中回答「今天杭州有哪些上映的电影?」「附近哪家电影院在放某部电影?」「帮我查一下《盗梦空间》的详细信息」等问题。\r \r \r
# Linux / macOS\r
export JISU_API_KEY="your_appkey_here"\r
\r
# Windows PowerShell\r
$env:JISU_API_KEY="your_appkey_here"\r
```\r
\r
## 脚本路径\r
\r
脚本文件:`skills/movie/movie.py`\r
\r
## 使用方式与请求参数\r
\r
### 1. 当前城市上映电影(/movie/on)\r
\r
```bash\r
python3 skills/movie/movie.py on '{"cityid":"382","city":"杭州","date":"2018-07-08"}'\r
```\r
\r
请求 JSON 示例:\r
\r
```json\r
{\r
"cityid": "382",\r
"city": "杭州",\r
"date": "2018-07-08"\r
}\r
```\r
\r
| 字段名 | 类型 | 必填 | 说明 |\r
|--------|--------|------|------------------------------|\r
| cityid | int | 否 | 城市 ID,和 `city` 任选其一 |\r
| city | string | 否 | 城市名称,和 `cityid` 任选其一 |\r
| date | string | 否 | 日期,默认当天(格式:YYYY-MM-DD) |\r
\r
返回结果示例(结构与官网一致,截取部分字段):\r
\r
```json\r
{\r
"city": "杭州",\r
"cityid": "382",\r
"date": "2018-07-08",\r
"list": [\r
{\r
"movieid": "137363",\r
"moviename": "我不是药神",\r
"pic": "http://api.jisuapi.com/movie/upload/movie/14/137363.jpg"\r
}\r
]\r
}\r
```\r
\r
### 2. 电影放映的电影院(/movie/movietheater)\r
\r
```bash\r
python3 skills/movie/movie.py movietheater '{"cityid":"382","city":"杭州","movieid":"137363","date":"2018-07-08"}'\r
```\r
\r
请求 JSON 示例:\r
\r
```json\r
{\r
"cityid": "382",\r
"city": "杭州",\r
"movieid": "137363",\r
"date": "2018-07-08"\r
}\r
```\r
\r
| 字段名 | 类型 | 必填 | 说明 |\r
|---------|----------|------|------------------------------|\r
| cityid | string | 否 | 城市 ID,和 `city` 任选其一 |\r
| city | string | 否 | 城市名称,和 `cityid` 任选其一 |\r
| movieid | string | 是 | 电影 ID |\r
| date | string | 否 | 日期,默认当天(格式:YYYY-MM-DD) |\r
\r
返回结果包含电影院列表,每项含 `theatername`、`address`、`issale`、`minprice`、`theaterid`、`lat`、`lng` 等字段。\r
\r
### 3. 电影院放映的电影(/movie/theatermovie)\r
\r
```bash\r
python3 skills/movie/movie.py theatermovie '{"theaterid":"2059","date":"2018-07-08"}'\r
```\r
\r
请求 JSON 示例:\r
\r
```json\r
{\r
"theaterid": "2059",\r
"date": "2018-07-08"\r
}\r
```\r
\r
| 字段名 | 类型 | 必填 | 说明 |\r
|-----------|----------|------|------------------------------|\r
| theaterid | string | 是 | 电影院 ID |\r
| date | string | 否 | 日期,默认当天(格式:YYYY-MM-DD) |\r
\r
返回结果中 `list` 为该影院当日影片列表,每个影片包含 `moviename`、`movieid`、`enname`、`director`、`actor`、`duration`、`class`、`year`,以及 `showlist` 场次列表(时间、语言、厅名、价格、购票链接等)。\r
\r
### 4. 电影详情(/movie/detail)\r
\r
```bash\r
python3 skills/movie/movie.py detail '{"movieid":"14","moviename":"盗梦空间"}'\r
```\r
\r
请求 JSON 示例:\r
\r
```json\r
{\r
"movieid": "14",\r
"moviename": "盗梦空间"\r
}\r
```\r
\r
| 字段名 | 类型 | 必填 | 说明 |\r
|-----------|----------|------|-----------------------------------|\r
| movieid | string | 否 | 电影 ID,和 `moviename` 任选其一 |\r
| moviename | string | 否 | 电影名称,和 `movieid` 任选其一 |\r
\r
返回结果示例(部分字段):\r
\r
```json\r
{\r
"moviename": "盗梦空间",\r
"movieid": "14",\r
"enname": "Inception",\r
"pic": "http://api.jisuapi.com/movie/upload/movie/1/14.jpg",\r
"class": "动作 冒险 科幻",\r
"year": "2010",\r
"releasedate": "2010-09-01",\r
"country": "美国",\r
"director": "克里斯托弗·诺兰",\r
"actor": "",\r
"screenwriter": "克里斯托弗·诺兰",\r
"publisher": "华纳兄弟影片公司",\r
"summary": "",\r
"screentype": "2D/IMAX",\r
"duration": "148分钟"\r
}\r
```\r
\r
### 5. 按城市获取电影院(/movie/theater)\r
\r
```bash\r
python3 skills/movie/movie.py theater '{"cityid":"382","city":"杭州","keyword":"万达"}'\r
```\r
\r
请求 JSON 示例:\r
\r
```json\r
{\r
"cityid": "382",\r
"city": "杭州",\r
"keyword": "万达"\r
}\r
```\r
\r
| 字段名 | 类型 | 必填 | 说明 |\r
|----------|----------|------|------------------------------|\r
| cityid | string | 否 | 城市 ID,和 `city` 任选其一 |\r
| city | string | 否 | 城市名称,和 `cityid` 任选其一 |\r
| keyword | string | 否 | 影院名称关键词,如“万达” |\r
\r
返回结果中 `list` 为影院列表,每项包含 `theaterid`、`theatername`、`tel`、`address`、`hours`、`seatnum`、`roomnum`、`logo`、`score`、`summary`、`lat`、`lng` 等字段。\r
\r
### 6. 获取电影城市列表(/movie/city)\r
\r
```bash\r
python3 skills/movie/movie.py city '{"parentid":"0"}'\r
```\r
\r
请求 JSON 示例:\r
\r
```json\r
{\r
"parentid": "0"\r
}\r
```\r
\r
| 字段名 | 类型 | 必填 | 说明 |\r
|----------|----------|------|-----------------------|\r
| parentid | string | 否 | 上级 ID,0 表示顶级省份 |\r
\r
返回结果示例(部分):\r
\r
```json\r
[\r
{\r
"cityid": "1",\r
"name": "北京",\r
"parentid": "0",\r
"parentname": "",\r
"topname": "",\r
"depth": "1"\r
},\r
{\r
"cityid": "30",\r
"name": "浙江",\r
"parentid": "0",\r
"parentname": "",\r
"topname": "",\r
"depth": "1"\r
}\r
]\r
```\r
\r
## 常见错误码\r
\r
来自 [极速数据电影影讯文档](https://www.jisuapi.com/api/movie/) 的业务错误码:\r
\r
| 代号 | 说明 |\r
|------|-------------|\r
| 201 | 城市和城市 ID 为空 |\r
| 202 | 城市不存在 |\r
| 203 | 影院 ID 为空 |\r
| 204 | 电影 ID 为空 |\r
| 205 | 电影 ID 不存在 |\r
| 206 | 电影院 ID 不存在 |\r
| 210 | 没有信息 |\r
\r
系统错误码:\r
\r
| 代号 | 说明 |\r
|------|--------------------------|\r
| 101 | APPKEY 为空或不存在 |\r
| 102 | APPKEY 已过期 |\r
| 103 | APPKEY 无请求此数据权限 |\r
| 104 | 请求超过次数限制 |\r
| 105 | IP 被禁止 |\r
| 106 | IP 请求超过限制 |\r
| 107 | 接口维护中 |\r
| 108 | 接口已停用 |\r
\r
## 推荐用法\r
\r
1. 用户提出需求,例如:「帮我看看今天杭州有什么电影可以看,并找一场今晚 8 点左右的场次。」 \r
2. 代理先调用:`movie on` 获取当前城市上映电影列表,从中挑出热门影片供用户选择。 \r
3. 用户选定某部电影后,调用:`movie movietheater` 获取这部电影在附近城市的放映电影院及最低票价。 \r
4. 如需具体排片信息,再调用:`movie theatermovie` 查询某个电影院的当日场次列表,并根据 `starttime`、`price`、`hallname` 等字段为用户推荐合适场次和购票链接。 \r
5. 如用户只问某部电影的信息,可直接调用:`movie detail` 获取影片详细资料(导演、演员、片长、简介等),进行摘要回答。\r
\r
## 关于极速数据\r
\r
**极速数据(JisuAPI,[jisuapi.com](https://www.jisuapi.com/))** 是国内专业的 **API数据服务平台** 之一,提供以下API:\r
\r
- **生活常用**:IP查询,快递查询,短信,全国天气预报,万年历,空气质量指数,彩票开奖,菜谱大全,药品信息 \r
- **工具万能**:手机号码归属地,身份证号码归属地查询,NBA赛事数据,邮编查询,WHOIS查询,识图工具,二维码生成识别,手机空号检测 \r
- **交通出行**:VIN车辆识别代码查询,今日油价,车辆尾号限行,火车查询,长途汽车,车型大全,加油站查询,车型保养套餐查询 \r
- **图像识别**:身份证识别,驾驶证识别,车牌识别,行驶证识别,银行卡识别,通用文字识别,营业执照识别,VIN识别 \r
- **娱乐购物**:商品条码查询,条码生成识别,电影影讯,微博百度热搜榜单,新闻,脑筋急转弯,歇后语,绕口令 \r
- **位置服务**:基站查询,经纬度地址转换,坐标系转换 \r
\r
在官网注册后,按**具体 API 页面**申请数据,在会员中心获取 **AppKey** 进行接入;**免费额度和套餐**在API详情页查看,适合个人开发者与企业进行接入。在 **ClawHub** 上也可搜索 **`jisuapi`** 找到更多基于极速数据的 OpenClaw 技能。\r
\r
安全使用建议
This skill appears to do exactly what it says: call Jisu movie APIs using your JISU_API_KEY. Before installing, ensure you: (1) provide a valid JISU_API_KEY and understand any billing/rate limits on that key; (2) have python3 and the Python 'requests' library available in the runtime (the skill will fail if requests is missing); (3) fix or note the script-path mismatch (SKILL.md references 'skills/movie/movie.py' but the file provided is 'movie.py') so the agent can invoke the script correctly; and (4) avoid sharing your API key publicly. If you need higher assurance, review network access (calls go to api.jisuapi.com) and confirm the AppKey's permissions in your Jisu account.
功能分析
Type: OpenClaw Skill
Name: jisu-movie
Version: 1.0.5
The skill is a legitimate wrapper for the JisuAPI movie information service. The Python script (movie.py) correctly retrieves an API key from environment variables and makes standard HTTP GET requests to the official service endpoint (api.jisuapi.com). No evidence of data exfiltration, command injection, or malicious prompt instructions was found.
能力评估
Purpose & Capability
The skill is a thin wrapper around Jisu (极速数据) movie endpoints and only requires an AppKey (JISU_API_KEY) and python3 to call those endpoints. The requested credential (JISU_API_KEY) is appropriate and expected for this purpose.
Instruction Scope
SKILL.md instructions describe invoking a Python script with JSON arguments and only reference the JISU API. They do not ask to read unrelated files or credentials. However, SKILL.md states the script path as 'skills/movie/movie.py' while the included file is 'movie.py' at the repository root—this mismatch could cause runtime failures or confusion.
Install Mechanism
There is no install spec (instruction-only), which keeps risk low. The Python code imports 'requests' but the metadata does not declare installing Python dependencies; if 'requests' is not present in the runtime environment the skill will fail. No downloads or external installers are used.
Credentials
Only one environment variable (JISU_API_KEY) is required and is the primary credential for the external API. This is proportionate to the described functionality.
Persistence & Privilege
The skill does not request persistent or elevated platform privileges (always:false). It does not modify other skills or system configs and only uses the declared environment variable.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install jisu-movie - 安装完成后,直接呼叫该 Skill 的名称或使用
/jisu-movie触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.5
- Update: Skill name and description now more clearly indicate its use for movie & news inquiry, and clarify typical user queries.
- Improved Chinese language coverage for instructions and user guidance.
- No changes to functionality or file structure; documentation improvements only.
v1.0.4
No functional code changes in this version.
- Updated documentation in SKILL.md with more detailed API provider introduction and configuration instructions
- Added new section "关于极速数据" describing the data provider and listing other available APIs
- Expanded API key application and usage guidance for clarity
- No changes to code or behavior; existing functionality is unchanged
v1.0.3
jisu-movie 1.0.3
- No code or documentation changes detected in this release.
- All functionality and documentation remain unchanged from the previous version.
v1.0.2
jisu-movie 1.0.2
- No file changes detected in this version.
- No modifications to features, documentation, or logic have been made.
- Functionality and usage remain unchanged from the previous release.
v1.0.1
Version 1.0.1
- No code or file changes detected.
- SKILL.md中对官方错误码引用链接由“官方电影影讯文档”修正为“极速数据电影影讯文档”。
- 其余内容无修改,功能保持一致。
v1.0.0
Major change: The "movie" skill was refocused from AI视频生成工具切换到基于极速数据的在线电影信息查询工具,并删减旧的生成/制作文档。
- 新功能:可通过极速数据 API 查询当前城市上映电影、影院排片、电影详情、城市与影院列表等。
- 文档重写,详细介绍接口用法、典型参数、请求格式和常见错误码,面向中文语境。
- 保留唯一主文件 movie.py;移除 preproduction.md、tools.md、generation.md 及其他与视频生成相关的说明文件。
- 要求配置 JISU_API_KEY 环境变量用于 API 鉴权。
- 适合在对话中解答“影院排片”“影片信息”等实时票务影讯问题。
元数据
常见问题
Movie & News Inquiry - 电影影讯查询 是什么?
查上映影片、影院排片、影片详情与城市影院列表等。当用户说:最近有什么好看的电影?附近哪家影院放映《xxx》?或类似电影影讯问题时,使用本技能。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 590 次。
如何安装 Movie & News Inquiry - 电影影讯查询?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install jisu-movie」即可一键安装,无需额外配置。
Movie & News Inquiry - 电影影讯查询 是免费的吗?
是的,Movie & News Inquiry - 电影影讯查询 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Movie & News Inquiry - 电影影讯查询 支持哪些平台?
Movie & News Inquiry - 电影影讯查询 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Movie & News Inquiry - 电影影讯查询?
由 极速数据(@jisuapi)开发并维护,当前版本 v1.0.5。
推荐 Skills