臻选顾问

v1.20260419.1133

臻选顾问 - 共健臻选AI产品顾问,查询保健品信息、推荐产品

0· 174·0 current·0 all-time
Security Scan
VirusTotalVirusTotal
Pending
View report →
OpenClawOpenClaw
Benign
medium confidence
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.
Assessment
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.

Like a lobster shell, security has layers — review code before you run it.

healthvk97eaep3aq2976v59nfavn2eyh8551g1latestvk97eaep3aq2976v59nfavn2eyh8551g1
174downloads
0stars
13versions
Updated 3d ago
v1.20260419.1133
MIT-0

共健臻选产品目录查询

⚠️ 每次回答前必须做的事

第一步:从 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 件
🛒 微信搜索「共健臻选」小程序

购买渠道

唯一渠道:微信小程序搜索「共健臻选

Comments

Loading comments...