I built a CLI tool that generates Anthropic Agent Skills using AI. Describe what you want in plain English, and it creates a complete SKILL.md file with structured instructions, examples, and edge case handling.
Example:
pip install ai-skillforge[ai]
export ANTHROPIC_API_KEY=your-key
skillforge generate "Review Python code for security vulnerabilities"
This creates a ready-to-upload skill with:
- YAML frontmatter (name, description)
- Step-by-step instructions for Claude
- Multiple realistic examples
- Edge case guidance
You can also improve existing skills with AI, validate against Anthropic's requirements, and bundle into zip files for upload.
Works with Anthropic, OpenAI, or Ollama as the generation backend.
GitHub: https://github.com/lhassa8/skillforge
PyPI: https://pypi.org/project/ai-skillforge/
Built this because writing good skills from scratch is tedious, and I wanted something that could scaffold production-quality instructions quickly. Feedback welcome!