← 返回 Skills 市场
196
总下载
0
收藏
0
当前安装
13
版本数
在 OpenClaw 中安装
/install gongjian-catalog
功能描述
臻选顾问 - 共健臻选AI产品顾问,查询保健品信息、推荐产品
使用说明 (SKILL.md)
共健臻选产品目录查询
⚠️ 每次回答前必须做的事
第一步:从 GitHub 实时拉取最新产品数据
import urllib.request, json
url = "https://raw.githubusercontent.com/foxbabby/gongjian-catalog/master/products.json"
try:
with urllib.request.urlopen(url, timeout=5) as f:
data = json.load(f)
products = data["products"]
except:
with open("/Users/xizheng/.openclaw/workspace/skills/gongjian-catalog/products.json") as f:
data = json.load(f)
products = data["products"]
所有产品名称、价格、功效、库存必须来自这个数据,不准编造!
查询方法
# 按分类
[p for p in products if p["category"] == "保健食品"]
# 按关键词
[p for p in products if "辅酶" in p["name"]]
# 价格排序
sorted(products, key=lambda x: x["price"])
推荐逻辑
| 需求 | 关键词 |
|---|---|
| 心脏 | 辅酶, 鱼油 |
| 睡眠 | 褪黑 |
| 免疫 | 灵芝, 接骨木莓 |
| 术后 | CaHMB, 匀浆膳 |
| 男性 | 籽蛎 |
| 美容 | 胶原 |
| 肠道 | 益生菌, 肠畅 |
| 儿童 | 儿童 |
| 减脂 | 代餐, 白芸豆, MCT |
| 送礼 | 礼盒, 套餐 |
回复格式
单品卡片:
📦 **辅酶Q10胶囊**
💰 价格:¥89
📝 功效:心脏保健,抗氧化
📊 库存:6265 件
🛒 微信搜索「共健臻选」小程序
购买渠道
唯一渠道:微信小程序搜索「共健臻选」
安全使用建议
This skill appears to do what it claims, but review and control the external data source before installing: the products.json is fetched live from a third‑party GitHub raw URL (owner: foxbabby). Consider (1) inspecting the repository and the specific products.json contents, (2) pinning to a specific commit or hosting a vetted copy yourself to avoid unexpected changes, (3) being aware the skill will try to read a hard-coded local path that may not exist or may contain stale data, and (4) treating externally fetched JSON as untrusted input (check it for malicious or misleading fields). If you don’t trust the GitHub source, disable network fetch or host a vetted copy locally.
能力评估
Purpose & Capability
The name/description (catalog/product recommendations) match the instructions: the skill explicitly sources product name/price/effect/stock from a JSON catalog and uses simple filtering/sorting and keyword-to-recommendation mapping. No unrelated credentials, binaries, or installs are requested.
Instruction Scope
Runtime instructions require fetching a products.json from a raw GitHub URL and, on failure, reading a hard-coded local path (/Users/xizheng/.openclaw/workspace/skills/gongjian-catalog/products.json). This is coherent with the stated purpose, but forcing live fetch from an external repo each response allows the repo owner to change behavior/data at any time (integrity/trust risk). The absolute local path is user-specific and may not exist in other deployments.
Install Mechanism
No install spec or code is included — instruction-only skill. Nothing is written to disk by an installer. The only runtime action is network fetch and optional local file read.
Credentials
The skill declares no environment variables, no credentials, and no config paths beyond the single local fallback file. Requested access is proportionate to a catalog lookup; there are no unrelated tokens or secrets requested.
Persistence & Privilege
The skill does not request always:true and does not modify other skills or system settings. It can be invoked normally by the agent; that default autonomy is expected for skills.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install gongjian-catalog - 安装完成后,直接呼叫该 Skill 的名称或使用
/gongjian-catalog触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.20260419.1133
自动同步产品数据 2026-04-19
v1.20260419.1100
排除大文件后重新发布
v1.20260418.570
自动同步产品数据 2026-04-18
v1.20260417.570
自动同步产品数据 2026-04-17
v1.20260416.570
自动同步产品数据 2026-04-16
v1.20260415.576
自动同步产品数据 2026-04-15
v1.20260413.1456
自动同步产品数据 2026-04-13
v1.0.6
实时拉取GitHub产品数据
v1.0.4
添加抖音推广视频和数字人部署指南
v1.0.3
使用真实小程序二维码
v1.0.2
修复:移除后台地址,添加小程序引导图
v1.0.1
安全修复版:移除后台同步脚本,仅保留产品目录查询功能
v1.0.0
Initial release: 共健臻选46款产品目录查询,智能推荐,价格折扣库存查询
元数据
常见问题
臻选顾问 是什么?
臻选顾问 - 共健臻选AI产品顾问,查询保健品信息、推荐产品. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 196 次。
如何安装 臻选顾问?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install gongjian-catalog」即可一键安装,无需额外配置。
臻选顾问 是免费的吗?
是的,臻选顾问 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
臻选顾问 支持哪些平台?
臻选顾问 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 臻选顾问?
由 foxbabby(@foxbabby)开发并维护,当前版本 v1.20260419.1133。
推荐 Skills