Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
By iciakky
General-purpose troubleshooting and debugging skills for Claude Code with systematic methodology
npx claudepluginhub iciakky/cc-general-skills --plugin cc-general-skillsApply systematic debugging methodology using medical differential diagnosis principles. Trigger when AI modifies working code and anomalies occur, or when users report unexpected test results or execution failures. Use observation without preconception, fact isolation, differential diagnosis lists, deductive exclusion, experimental verification, precise fixes, and prevention mechanisms.
Automatically troubleshoot unexpected results OR command/script errors without user request. Triggers when: (1) unexpected behavior - command succeeded but expected effect didn't happen, missing expected errors, wrong output, silent failures; (2) explicit failures - stderr, exceptions, non-zero exit, SDK/API errors. Applies systematic diagnosis using error templates, hypothesis testing, and web research for any Stack Overflow-worthy issue.
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Systematically debug issues with step-by-step troubleshooting approaches.
Four-phase debugging framework that ensures root cause investigation before attempting fixes. Never jump to solutions. Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
Systematic debugging, root cause analysis, log analysis, profiling, binary search debugging, and postmortem analysis.
Ask Claude Code to help you debug an issue
Debugging specialist for errors, test failures, and unexpected behavior. Use proactively when encountering any issues.
Systematic debugging and root cause analysis framework - four-phase investigation process ensuring understanding before fixes
A collection of general-purpose skills for Claude Code.
Apply systematic debugging methodology using medical differential diagnosis principles.
Key Features:
Triggers on:
Workflow:
Automatically troubleshoot unexpected results and command/script errors without user request.
Key Features:
Triggers on:
Install directly using Claude Code's plugin system:
# Add this repository as a marketplace
/plugin marketplace add iciakky/cc-general-skills
# Install the plugin
/plugin install cc-general-skills@cc-general-skills
# Restart Claude Code
Install all skills (Unix/Linux/macOS):
git clone https://github.com/iciakky/cc-general-skills.git
cp -r cc-general-skills/skills/debug ~/.claude/skills/
cp -r cc-general-skills/skills/error-troubleshooter ~/.claude/skills/
Install all skills (Windows PowerShell):
git clone https://github.com/iciakky/cc-general-skills.git
Copy-Item -Recurse cc-general-skills\skills\debug $env:USERPROFILE\.claude\skills\
Copy-Item -Recurse cc-general-skills\skills\error-troubleshooter $env:USERPROFILE\.claude\skills\
Install specific skills only:
Replace debug or error-troubleshooter with the skill you want to install.
Then restart Claude Code.
debug.zip - Systematic debugging with medical diagnosis methodologyerror-troubleshooter.zip - Automatic error troubleshooting~/.claude/skills/ (or %USERPROFILE%\.claude\skills\ on Windows)cc-general-skills/
├── .claude-plugin/ # Plugin configuration
│ ├── plugin.json # Plugin metadata
│ └── marketplace.json # Marketplace catalog
├── skills/ # Skills directory
│ ├── debug/
│ │ ├── SKILL.md # Main skill definition
│ │ ├── references/ # Investigation templates and bug patterns
│ │ ├── assets/ # Report templates
│ │ └── repackage.py # Build script
│ └── error-troubleshooter/
│ ├── SKILL.md # Main skill definition
│ ├── references/ # Reference documentation
│ ├── assets/ # Templates and resources
│ └── repackage.py # Build script
├── .gitignore
├── LICENSE
└── README.md
Each skill includes a repackage.py script for creating distributable zip files:
# Repackage debug skill
cd skills/debug
python repackage.py
# Repackage error-troubleshooter skill
cd ../error-troubleshooter
python repackage.py
This creates debug.zip and error-troubleshooter.zip in the skills/ directory.
Contributions are welcome! Please feel free to submit a Pull Request.
MIT License - see LICENSE file for details.
Created with Claude Code's skill-creator tool.