cc-solver
Installation
SKILL.md
Claude Code Problem Solver Skill
This skill triggers targeted problem-solving when Claude Code issues are detected.
When This Skill Activates
This skill should activate when the user has specific problems or questions about Claude Code, such as:
- "How do I configure..."
- "Why isn't my hook working..."
- "I'm trying to set up MCP..."
- "Error when creating a skill..."
- "My plugin isn't loading..."
Action
When this skill is triggered, use the Task tool to spawn the cc-solver agent:
Task(
subagent_type="cc-solver",
prompt="Solve this Claude Code problem: [user's problem]",
description="Solve Claude Code problem"
)
The cc-solver agent will:
- Check the changelog for recent changes or fixes
- Fetch only the 2-4 most relevant documentation pages
- Provide focused, copy-paste ready solutions
Output
Return the agent's focused solution to the user, including:
- Direct answer to their specific question
- Copy-paste ready code or configuration
- Explanation of why the solution works
- How to verify it's working
Related skills