← 返回 Skills 市场
364
总下载
10
收藏
0
当前安装
5
版本数
在 OpenClaw 中安装
/install jisu-dream
功能描述
按关键词检索周公解梦释义,支持分页。当用户说:梦见蛇是什么意思?梦到飞代表什么?或类似解梦问题时,使用本技能。
使用说明 (SKILL.md)
\r \r
极速数据周公解梦(Jisu Dream)\r
\r
数据由 极速数据(JisuAPI) 提供 — 国内专业的 API 数据服务平台,提供生活常用、交通出行、工具万能等数据接口。\r \r 适合在对话中回答「梦见皮鞋是什么意思」「梦见下雨预示什么」「帮我查一下关于鞋的梦」之类的问题。\r \r
前置配置:获取 API Key\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/dream/dream.py`\r
\r
## 使用方式与请求参数\r
\r
当前脚本提供一个子命令:`search`,对应 `/dream/search` 接口。\r
\r
### 1. 按关键词搜索解梦(/dream/search)\r
\r
```bash\r
python3 skills/dream/dream.py search '{"keyword":"鞋","pagenum":1,"pagesize":10}'\r
```\r
\r
请求 JSON:\r
\r
```json\r
{\r
"keyword": "鞋",\r
"pagenum": 1,\r
"pagesize": 10\r
}\r
```\r
\r
| 字段名 | 类型 | 必填 | 说明 |\r
|----------|--------|------|-------------------------------|\r
| keyword | string | 是 | 关键词(UTF-8) |\r
| pagenum | int | 否 | 当前页,默认 1 |\r
| pagesize | int | 否 | 每页条数,默认 10,最大不超过 10 |\r
\r
## 返回结果示例(节选)\r
\r
```json\r
{\r
"total": "43",\r
"pagenum": "1",\r
"pagesize": "10",\r
"list": [\r
{\r
"name": "鞋 穿鞋",\r
"content": "男人梦见穿新鞋,要交好运……"\r
},\r
{\r
"name": "皮鞋",\r
"content": "梦见皮鞋,预示着要远行……"\r
}\r
]\r
}\r
```\r
\r
## 常见错误码\r
\r
来源于 [极速数据周公解梦文档](https://www.jisuapi.com/api/dream/) 的业务错误码:\r
\r
| 代号 | 说明 |\r
|------|------------|\r
| 201 | 关键词为空 |\r
| 203 | 没有信息 |\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. 用户提问:「梦见皮鞋是什么意思?」 \r
2. 代理调用:`python3 skills/dream/dream.py search '{"keyword":"皮鞋","pagenum":1,"pagesize":5}'`。 \r
3. 从返回的 `list` 中选取与用户梦境最相关的 1–3 条 `name` / `content`,用自然语言总结含义,并加上一句风险提示(仅供参考,不要过度迷信)。\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 simply queries the JisuAPI dream endpoint and needs your JISU_API_KEY and network access. Before installing: (1) only provide a JISU AppKey you control and are willing to use for this purpose; the API provider will receive every query (dream keywords) and may log/charge them; (2) confirm you trust jisuapi.com and understand their privacy/usage limits; (3) ensure the environment has Python and the 'requests' package (pip install requests) so the script runs; (4) avoid sending any sensitive personal data as part of dream queries. If you see unexpected network calls to other domains or additional env vars in a future version, treat that as suspicious.
功能分析
Type: OpenClaw Skill
Name: jisu-dream
Version: 1.0.4
The skill bundle is a legitimate integration for the JisuAPI Dream Interpretation service. The Python script (dream.py) securely handles API requests using the requests library, and the instructions in SKILL.md are consistent with the stated functionality without any signs of prompt injection or malicious intent.
能力评估
Purpose & Capability
Name/description match the implementation: the script calls JisuAPI's /dream/search and the skill requires an AppKey (JISU_API_KEY). Requiring python3 is appropriate for a Python script.
Instruction Scope
SKILL.md instructs only how to call the included script and how to set JISU_API_KEY. The instructions do not ask for unrelated files, credentials, or system data, nor do they send data to endpoints other than the documented JisuAPI URL.
Install Mechanism
No install spec (instruction-only) which is the lowest-risk pattern. One minor operational omission: the Python script uses the 'requests' library but SKILL.md/metadata do not declare this dependency or provide installation instructions (pip). This is an availability/operational issue, not a security mismatch.
Credentials
Only JISU_API_KEY is required and is the expected credential for the documented external API. No additional unrelated secrets or config paths are requested.
Persistence & Privilege
Skill is not always-enabled and does not request elevated or persistent system privileges. It does not modify other skills or system configuration.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install jisu-dream - 安装完成后,直接呼叫该 Skill 的名称或使用
/jisu-dream触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.4
- Skill description and name updated for improved clarity and user guidance.
- Added clear usage trigger examples to help identify when the skill should be used.
- No code changes were made in this version.
v1.0.3
No code changes; documentation improvements only.
- Enhanced SKILL.md with a new service introduction and "关于极速数据" section for better context.
- Improved API key registration and setup instructions.
- Reorganized documentation for clarity and easier onboarding.
- Usage instructions and return examples unchanged. No impact on existing functionality.
v1.0.2
- No user-visible changes detected in this version.
- No file or documentation updates since the previous release.
v1.0.1
- 修正文档中的脚本路径为 skills/dream/dream.py(原为 skill/dream/dream.py)
- 更新所有相关使用示例和命令行调用,反映路径调整
- 其余功能和使用方式保持不变
v1.0.0
- Initial release of jisu-dream skill for OpenClaw.
- Supports dream interpretation queries by keyword using the 极速数据周公解梦 API, with pagination.
- Returns a list of explanations including dream title and content, across 10 categories such as people, animals, activities, etc.
- Requires JISU_API_KEY environment variable; setup instructions provided.
- Includes usage examples, API input/output structure, and common error codes.
- Content intended for entertainment and learning reference only.
元数据
常见问题
Duke of Zhou's Dream Interpretation - 周公解梦 是什么?
按关键词检索周公解梦释义,支持分页。当用户说:梦见蛇是什么意思?梦到飞代表什么?或类似解梦问题时,使用本技能。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 364 次。
如何安装 Duke of Zhou's Dream Interpretation - 周公解梦?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install jisu-dream」即可一键安装,无需额外配置。
Duke of Zhou's Dream Interpretation - 周公解梦 是免费的吗?
是的,Duke of Zhou's Dream Interpretation - 周公解梦 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Duke of Zhou's Dream Interpretation - 周公解梦 支持哪些平台?
Duke of Zhou's Dream Interpretation - 周公解梦 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Duke of Zhou's Dream Interpretation - 周公解梦?
由 极速数据(@jisuapi)开发并维护,当前版本 v1.0.4。
推荐 Skills