← Back to Skills Marketplace
196
Downloads
0
Stars
0
Active Installs
13
Versions
Install in OpenClaw
/install gongjian-catalog
Description
臻选顾问 - 共健臻选AI产品顾问,查询保健品信息、推荐产品
README (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 件
🛒 微信搜索「共健臻选」小程序
购买渠道
唯一渠道:微信小程序搜索「共健臻选」
Usage Guidance
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.
Capability Assessment
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.
How to Use
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install gongjian-catalog - After installation, invoke the skill by name or use
/gongjian-catalog - Provide required inputs per the skill's parameter spec and get structured output
Version History
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款产品目录查询,智能推荐,价格折扣库存查询
Metadata
Frequently Asked Questions
What is 臻选顾问?
臻选顾问 - 共健臻选AI产品顾问,查询保健品信息、推荐产品. It is an AI Agent Skill for Claude Code / OpenClaw, with 196 downloads so far.
How do I install 臻选顾问?
Run "/install gongjian-catalog" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is 臻选顾问 free?
Yes, 臻选顾问 is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does 臻选顾问 support?
臻选顾问 is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created 臻选顾问?
It is built and maintained by foxbabby (@foxbabby); the current version is v1.20260419.1133.
More Skills