BC wechat-mp-publisher
Publish one or multiple Markdown articles to WeChat Official Account (公众号) draft box in a single API call. Supports multi-article combined drafts (main article + sub-articles), smart cover image selection with Unsplash auto-match + 12-image fallback rotation, custom styling (gold quote highlights, && section dividers, accent headings), inline image auto-upload to WeChat CDN, digest auto-extraction, and optional immediate publish. Activate when user wants to push Markdown files to WeChat MP, publish to 公众号草稿箱, schedule WeChat articles, or automate public account content delivery.
Publish one or multiple Markdown articles to WeChat Official Account (公众号) draft box in a single API call.
As a process C 51/100 · Has gaps — weak spots: result and completion, when it triggers, inputs and preconditions
What is at stake
Medium-severity findings: the skill is probably honest, but read what alarmed the scanner.
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
- 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 · 6
✓ No critical or high findings
Medium and low: 6
-
medium Exfiltration
net-credential-usescripts/publish.mjs:99Credential used in a network call (verify the destination is the intended service)const res = await fetch(`${WECHAT_API}/token?grant_type=client_credential&appid=${appId}&secret=${appSecret}`); -
medium Exfiltration
net-credential-usescripts/publish.mjs:121Credential used in a network call (verify the destination is the intended service)const res = await fetch(`${WECHAT_API}/material/add_material?access_token=${accessToken}&type=image`, { method: "POST", body: form }); -
medium Exfiltration
net-credential-usescripts/publish.mjs:133Credential used in a network call (verify the destination is the intended service)const res = await fetch(`${WECHAT_API}/media/uploadimg?access_token=${accessToken}`, { method: "POST", body: form }); -
low Dangerous commands
cmd-cron-mentionreferences/setup.md:58Mentions editing / listing crontab# crontab -e
-
low Exfiltration
net-credential-usescripts/publish.mjs:253Credential used in a network call (verify the destination is the intended service) (detector / deny-list definition)const res = await fetch(`${WECHAT_API}/freepublish/submit?access_token=${token}`, {detector -
low Exfiltration
net-credential-usescripts/publish.mjs:306Credential used in a network call (verify the destination is the intended service) (quoted — discussed, not commanded)const draftRes = await fetch(`${WECHAT_API}/draft/add?access_token=${token}`, {quoted
Files scanned: 3. Evidence is masked. Grey chips explain why severity was lowered.
Against the Agent Skills spec
✓ No remarks against the Agent Skills spec
Process rating: all ten parameters 51/100
- 0Result and completion. Does not say what the result is
- 0Inputs and preconditions. Does not say what the process needs to start
- 0Progress reporting. Says nothing while it works
- 20When it triggers. No condition that starts the skill
- 30Running it twice. 3 mutating operations with no state check
- 40Consistency. Frontmatter name (wechat-mp-publisher) differs from the folder (wechat-multi-publisher)
- 50Failures and branches. 0 branches, has a failure section
- 100Tools and files. No external tools needed
- 100Steps. 6 steps
- 100Execution cost. Instruction body is 412 tokens
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
- +1No license
- +2Single-language instructions
- +3Description length 585: enough signal without eating the budget
- +4Structure: 6 headings
- +3Step-by-step instructions: 6 items
- +4Has examples (4 code blocks)
- +4Reference files are cited in the instructions (1 of 1)
- +3All 1 scripts are documented
Quality base 70; lint remarks subtract, signals add up to 100. Result: 91.