Skip to content

v1.14.0 - Smart Context Generation

Choose a tag to compare

@rohitg00 rohitg00 released this 05 Feb 15:43
· 45 commits to main since this release

🚀 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 providers
  • packages/core/src/ai/context/ - 4 context sources
  • packages/core/src/ai/composition/ - Skill composition engine
  • packages/core/src/ai/agents/ - Agent optimization
  • packages/core/src/ai/wizard/ - Interactive wizard
  • packages/core/src/ai/security/ - Trust scoring + injection detection
  • packages/cli/src/commands/generate.ts - Generate command

Documentation

  • Updated CLI commands reference
  • Added Generate Command section
  • Updated website Advanced Features

Full documentation