| name | raven-search |
| description | Use when developer wants to find, evaluate, or install a new Claude skill. Searches anthropics/skills and GitHub, runs security audit, shows preview, requires architect approval before installing. |
| allowed-tools | Bash Read |
/raven-search
Search for skills, audit them, and install with approval.
Usage
/raven-search {query} ← search
/raven-search --install {name} ← install with audit + approval
/raven-search --list ← show approved skills
Steps
Search
Run: python3 .claude/scripts/skill-search.py --query "{query}"
Show results table. Prompt: "Which would you like to install? (number or full_name)"
Install + Audit
Run: python3 .claude/scripts/skill-search.py --install "{full_name}"
Script will:
- Fetch SKILL.md from source
- Run automated security audit
- Show first 15 lines for manual review
- Block if critical issues found
- Ask for approval (yes/no)
- Install to .claude/skills/ if approved
- Add to manifest.approved_skills
- Remind to restart Claude Code
After install
Remind developer:
- Review full SKILL.md before using
- Pin to commit hash for production use
- Re-audit on every update