finding-skills — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited finding-skills (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Skills on disk at /mnt/skills/user/ are a catalog — too expensive to preload as descriptions in every session's context. This skill is the on-demand accessor, analogous to Anthropic's ToolSearch for MCP tools.
PY=/home/user/.spokes/claude-skills/finding-skills/scripts/skills.py
# List every skill by name (cheap, ~1.4KB)
python3 "$PY" list
# Search by keyword — ranks name matches above description matches
python3 "$PY" search "adversarial review"
# Load the full SKILL.md of a specific skill
python3 "$PY" show challengingIn a live CCotw session the script lives at /mnt/skills/user/finding-skills/scripts/skills.py.
search <keywords>show <name>listsearch "<what you want to do>" — get 3–10 ranked candidatesshow <top-pick> — read its SKILL.mdscripts/, references/, etc.)Stop at step 1 if none of the candidates fit — don't shoehorn an unrelated skill onto the task.
Case-insensitive throughout. Results sorted high-to-low, ties broken by name.
list: one skill name per linesearch: tab-separated <name>\t<description (truncated to 200 chars)>, one per lineshow: raw SKILL.md contents to stdout; exit 1 with a stderr message if not foundAll three are line-oriented so they compose with grep, head, etc.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.