v1.14.0 - Smart Context Generation
🚀 Smart Context Generation
SkillKit now includes AI-powered skill generation that goes beyond simple LLM prompts. The new skillkit generate command pulls context from 4 sources and creates agent-optimized skills.
✨ Key Features
Multi-Provider LLM Support
- Claude (Anthropic)
- GPT-4/GPT-4o (OpenAI)
- Gemini (Google)
- Ollama (local models)
- OpenRouter (100+ models)
4 Context Sources
- 📚 Documentation via Context7 MCP
- 💻 Your codebase patterns
- 🛒 15,000+ marketplace skills
- 🧠 Your corrections and learnings
Agent-Specific Optimization
- Generates tailored output for 32 agents
- Trust scoring (0-10) with grades
- Compatibility matrix per agent
Skill Composition
skillkit generate --compose "testing patterns for react"Natural language search finds and composes existing skills automatically.
📖 Usage
# Interactive wizard (recommended)
skillkit generate
# Use specific provider
skillkit generate --provider openai --model gpt-4o
# Target specific agents
skillkit generate --agents claude-code,cursor🔧 Installation
npx skillkit@latest📋 Full Changelog
New Files (40+)
packages/core/src/ai/providers/- 6 LLM providerspackages/core/src/ai/context/- 4 context sourcespackages/core/src/ai/composition/- Skill composition enginepackages/core/src/ai/agents/- Agent optimizationpackages/core/src/ai/wizard/- Interactive wizardpackages/core/src/ai/security/- Trust scoring + injection detectionpackages/cli/src/commands/generate.ts- Generate command
Documentation
- Updated CLI commands reference
- Added Generate Command section
- Updated website Advanced Features