npx claudepluginhub Alon2904/claude-code-skill-creatorCreate custom Claude skills with a single command. Analyze your project and create tailored skills that understand your code patterns.
Create custom Claude skills with a single command.
A Claude Code plugin that adds the /create-skill command. Use it to create skills that help Claude understand your project better.
/plugin marketplace add Alon2904/claude-code-skill-creator
That's it. You now have /create-skill available everywhere.
Navigate to your project and run the command:
cd ~/my-fastapi-project
/create-skill
Claude will:
.claude/skills/ in your projectExample:
/create-skill
> "Create a skill that helps write tests for our FastAPI endpoints"
✅ Skill created at .claude/skills/api-test-helper/
Now when you ask Claude to write tests, it knows:
Want to create a general-purpose skill to share with others?
cd ~/any-folder
/create-skill
> "JSON validator and formatter"
✅ Skill created and packaged as json-validator.zip
Share the .zip with your team or upload to Claude.ai.
When run in your project:
.claude/skills/ in your projectWhen run elsewhere:
See examples/json-validator/ for a complete skill example.
When you run /create-skill, you get:
Want to contribute or test locally?
See TESTING.md for detailed testing instructions.
# Install from local directory
/plugin add file:///path/to/claude-code-skill-creator
# Test the command
/create-skill
.claude-plugin/ # Plugin metadata
├── plugin.json # Plugin manifest
└── marketplace.json # Marketplace listing
commands/ # Plugin commands
└── create-skill.md # The /create-skill command
skills/ # Supporting files
└── skill-creator/ # Anthropic's skill creation scripts
Built on Anthropic's Skills System
Uses Anthropic's official skill creation scripts.
MIT License - see LICENSE