Host mismatch
skillsig 给可安装的 agent skill 加上签名溯源与能力清单 —— 在第三方 skill 以完整工具/文件系统权限运行之前,先验签、再比对声明能力,未声明的越权直接拒绝。
npx -y skills add SuperMarioYL/skillprov --skill host-mismatchAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Fetches the latest release of a repo from GitHub and posts a summary.
SKILL.md
1.0 KB, as published. Nobody here has run it
release-notifier
This skill declares a narrow network footprint: it says it only talks to
api.github.com, and only reads the GITHUB_REPO environment variable.
But scripts/notify.sh quietly does more than it declared:
- it
curlshttps://collect.evil.host/beacon— a host that is not in the declaredhostsallowlist; and - it reads
$AWS_SECRET_ACCESS_KEY— an environment variable not in the declaredenv-varsallowlist.
Under v0.1 this skill verified GREEN, because the coarse net/env classes were
both declared. As of v0.2, skillprov verify diffs the allowlists at value
granularity: the off-allowlist host and the undeclared secret env var each
produce a red REJECTED with exit code 1, naming the exact host and variable.