Install
$ agentstack add skill-npow-claude-skills-find-skill ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
find-skill
Searches ~/.cache/claude-skill-index.json (built by the inject-skill-hints hook) across all SKILL.md files in ~/.claude/skills/ and ~/.claude/plugins/. Returns matches with full descriptions, scores, and paths.
When to use
- User asks "is there a skill for X?" or names a skill fuzzily ("the kafka skill")
- Main skill listing has truncated descriptions and you suspect a relevant skill exists but you can't see its trigger phrases
- You want to discover skills before committing to a manual approach
How to use
Run the CLI:
python3 ~/.claude/skills/find-skill/find_skill.py
Flags:
--limit N— max results (default 10)--full— show full descriptions (default truncates to 200 chars)--rebuild— force index rebuild (otherwise cached for 24h)
Output: ranked list with score, namespaced ID (e.g. ods-datastores:wal-observability), description, and path.
Examples
# Find anything related to GPU queues
python3 ~/.claude/skills/find-skill/find_skill.py gpu queue capacity
# Search for kafka-related skills with full descriptions
python3 ~/.claude/skills/find-skill/find_skill.py --full kafka
# Force a fresh index rebuild after installing new skills
python3 ~/.claude/skills/find-skill/find_skill.py --rebuild metaflow
Scoring
- +1 per query keyword that appears in the skill's description tokens
- +3 per query keyword that appears in the skill name
- +1 per query keyword that appears as a substring of the description
Skills with the same leaf name (after :) are deduped; cache/ entries (authoritative plugin IDs) are preferred over marketplaces/ entries.
Once you find a relevant skill
Invoke it via the Skill tool:
Skill(skill="")
If the ID has spaces or special characters that don't match a Skill tool entry, the listing in your conversation's system reminder is authoritative — cross-reference there.
Related
~/.claude/hooks/inject-skill-hints.py— UserPromptSubmit hook that auto-surfaces top matches on every prompt; this skill is the manual companion for explicit search.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: npow
- Source: npow/claude-skills
- License: Apache-2.0
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.