Search external skills via claude-skills-mcp, analyze and rewrite as new project-specific skills
Searches external skills and adapts them into project-specific skills.
/plugin marketplace add wayne930242/Reflexive-Claude-Code/plugin install wayne930242-ace-core-plugins-ace-core@wayne930242/Reflexive-Claude-CodeSearch and adapt external skills from the Claude Skills library to create new project-specific skills.
This command requires the claude-skills-mcp MCP server to be installed.
First, verify if the MCP tools are available:
Check if these MCP tools are accessible:
- find_helpful_skills
- read_skill_document
- list_skills
If not available, guide the user to install globally:
# Install to user scope (global)
claude mcp add --scope user --transport stdio claude-skills -- uvx claude-skills-mcp
# Verify installation
claude mcp list
Use the MCP tool to find relevant skills:
find_helpful_skills(query: "{query}")
Review the results and select the most relevant skills (typically 1-3).
For each selected skill, first list all available files:
read_skill_document(skill_name: "...")
This returns a file listing like:
Available documents for skill 'code-review':
- SKILL.md (text, 3.2 KB)
- scripts/review.py (text, 5.4 KB)
- references/checklist.md (text, 1.8 KB)
Then retrieve specific files:
read_skill_document(skill_name: "...", document_path: "SKILL.md")
read_skill_document(skill_name: "...", document_path: "references/*")
read_skill_document(skill_name: "...", document_path: "scripts/*.py")
Supported patterns: scripts/*.py, references/*, *.json
Before rewriting, understand:
# Current project skills
find . -name "SKILL.md" -type f
# Project rules
ls .claude/rules/ 2>/dev/null
# CLAUDE.md laws and conventions
cat CLAUDE.md
Identify:
Use the write-skill skill to create a new skill that:
Key transformations:
python3 skills/write-skill/scripts/validate_skill.py <new-skill-path>
Add the new skill to the appropriate plugin JSON.
## Chrollo Report
### External Skills Found
- [skill-name]: [relevance score] - [brief description]
### Selected for Adaptation
- [skill-name]: [reason for selection]
### New Skill Created
- Path: skills/[new-skill-name]/
- Based on: [external-skill-name]
- Adaptations made:
- [list of changes]
### Integration Notes
- Related existing skills: [list]
- Rules applied: [list]
/rcc:chrollo code review
/rcc:chrollo testing strategies
/rcc:chrollo documentation generation