DC wenqisheng-ear-care
可视采耳门店智能客服Skill。当用户询问关于闻其声耳轻松可视采耳(门店名称)的任何信息时触发:包括营业时间、地址导航、预约规则、服务项目、套餐优惠、Wi-Fi密码、企业文化、采耳及眼部护理专业知识问答等。适用于美业/采耳门店的AI客服场景,支持引导式话术和结构化信息查询。触发关键词:闻其声、耳轻松、可视采耳、采耳、耳部护理、眼部护理。
As a process C 53/100 · Has gaps — weak spots: result and completion, when it triggers, inputs and preconditions
What is at stake
The skill contains fragments that, in the wrong hands, cost money or data. Below: what the installer risks and what the author should do.
The skill contains commands that delete files, rewrite disks or execute code fetched from the network. The agent may run them without asking if it believes the instructions require it.
Replace destructive commands with safe equivalents that ask for confirmation, scope them to one folder, and stop piping curl into a shell: pin a version and a checksum.
Below is the worst case for this category. The finding here is medium: the guard saw a sign, not a proof.
The instructions or scripts send data out: environment variables, keys, file contents, chat history. You may never notice, because the agent performs the upload as "part of the task".
If the upload is not needed for the task, remove it: catalogs flag such skills and delist them. If it is needed, name the destination explicitly, say what leaves the machine, and give the user a switch.
How to improve
- Address the high-severity findings: each costs 18 safety points. If one is a false positive, add the rule id to guard.allow in spec.yaml.
- Say in the description WHEN to use the skill ("use when…", example requests): that is the agent's main cue.
- Your own cases (evals/evals.json, 4–6 real requests with expected answers): the full check would then run those instead of a model-drafted suite.
- A spec.yaml with trigger phrases and assertions — a behaviour contract for CI; `skilltest init` writes a template.
Guard findings · 12
-
high Dangerous commands
cmd-persistenceinstall.ps1:47Persistence mechanism (cron / launchd / scheduled task / autorun registry)Register-ScheduledTask -TaskName $TaskName -Action $Action -Trigger $Trigger -Description "闻其声采耳Skill自动更新" | Out-Null
-
high Dangerous commands
cmd-persistenceinstall.sh:50Persistence mechanism (cron / launchd / scheduled task / autorun registry)(crontab -l 2>/dev/null; echo "7 3 * * * $UPDATE_CMD") | crontab -
Medium and low: 10
-
medium Exfiltration
net-redirectable-api-keybot-server/ai_client.py:41Helper sends the API key to a host configured by an environment variable — the key can be redirected to another serverAPI key + configurable base URL from environment
-
medium Dangerous commands
cmd-pipe-to-shell-known-hostREADME_EN.md:16Pipe-to-shell installer from a well-known host (still executes remote code)curl -sSL https://raw.githubusercontent.com/Liubuq-sys/wenqisheng-ear-care-skill/main/install.sh | bash
-
medium Dangerous commands
cmd-pipe-to-shell-known-hostREADME.md:18Pipe-to-shell installer from a well-known host (still executes remote code)curl -sSL https://raw.githubusercontent.com/Liubuq-sys/wenqisheng-ear-care-skill/main/install.sh | bash
-
low Exfiltration
read-dotenvbot-server/main.py:8Reads a .env file (quoted — discussed, not commanded)cp .env.example .env # 编辑填好 API Key
quoted -
low Exfiltration
read-dotenvbot-server/README.md:14Reads a .env filecp .env.example .env
-
low Dangerous commands
cmd-pipe-to-shell-known-hostinstall.sh:6Pipe-to-shell installer from a well-known host (still executes remote code) (code comment)# curl -sSL https://raw.githubusercontent.com/Liubuq-sys/wenqisheng-ear-care-skill/main/install.sh | bash
comment -
low Dangerous commands
cmd-cron-mentioninstall.sh:49Mentions editing / listing crontabif ! crontab -l 2>/dev/null | grep -q "auto_update.sh"; then
-
low Dangerous commands
cmd-cron-mentioninstall.sh:50Mentions editing / listing crontab(crontab -l 2>/dev/null; echo "7 3 * * * $UPDATE_CMD") | crontab -
-
low Dangerous commands
cmd-pipe-to-shell-known-hostREADME_EN.md:38Pipe-to-shell installer from a well-known host (still executes remote code) (quoted — discussed, not commanded)→ If not: run 'bash -c "curl -sSL https://raw.githubusercontent.com/Liubuq-sys/wenqisheng-ear-care-skill/main/install.sh | bash"'
quoted -
low Dangerous commands
cmd-pipe-to-shell-known-hostREADME.md:40Pipe-to-shell installer from a well-known host (still executes remote code) (quoted — discussed, not commanded)→ 如不存在,运行: bash -c 'curl -sSL https://raw.githubusercontent.com/Liubuq-sys/wenqisheng-ear-care-skill/main/install.sh | bash'
quoted
Files scanned: 29. Evidence is masked. Grey chips explain why severity was lowered.
Against the Agent Skills spec
- warning
description-no-whendescription does not say WHEN to use the skill (no "use when") - note
frontmatter-keyunknown frontmatter key "homepage"
Process rating: all ten parameters 53/100
- 0Result and completion. Does not say what the result is
- 0Inputs and preconditions. Does not say what the process needs to start
- 0Failures and branches. Linear process with no failure handling
- 0Progress reporting. Says nothing while it works
- 20When it triggers. No condition that starts the skill
- 100Tools and files. No external tools needed
- 100Steps. 100 steps
- 100Consistency. Name and required fields are in place
- 100Execution cost. Instruction body is 1528 tokens
- 100Running it twice. No mutating operations
Everything here is measured from the skill text rather than judged by a model, so the numbers are checkable. A parameter weighs more when it is a more common reason for the process to stall.
Quality signals
- +5Description has no quoted example phrases that should trigger the skill
- +4Description does not say when NOT to use the skill (false activations)
- +3Output format is not stated: the model decides each time
- +4No input/output examples
- -215 emoji in the instructions: noise for the model
- -36 of 6 scripts are never mentioned in SKILL.md
- +1No license
- +2Single-language instructions
- +3Description length 169: enough signal without eating the budget
- +4Structure: 20 headings
- +3Step-by-step instructions: 100 items
- +4Reference files are cited in the instructions (5 of 5)
Quality base 70; lint remarks subtract, signals add up to 100. Result: 66.