Marketplace for general-purpose Claude Code skills: troubleshooting, debugging, and systematic methodology
npx claudepluginhub iciakky/cc-general-skillsGeneral-purpose troubleshooting and debugging skills for Claude Code with systematic methodology
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.