Clean skill
skillsig 给可安装的 agent skill 加上签名溯源与能力清单 —— 在第三方 skill 以完整工具/文件系统权限运行之前,先验签、再比对声明能力,未声明的越权直接拒绝。
npx -y skills add SuperMarioYL/skillprov --skill clean-skillAssembled 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
Look up the current weather for a city via a public API and print it.
SKILL.md
0.9 KB, as published. Nobody here has run it
weather-lookup
A small, honest skill: it fetches weather from a public HTTP endpoint and prints it. Every capability it uses is declared in the frontmatter above:
- net — it calls
https://api.open-meteo.com(declared host). - exec — it shells out via
curl. - env — it reads the optional
WEATHER_UNITSvariable.
It does not write any files outside its own directory, so fs-write is not
declared and the scanner finds none. skillprov verify returns a green PASS.
Usage
WEATHER_UNITS=metric ./scripts/lookup.sh "Berlin"