Recommendations
Get smart skill suggestions for your project
Recommendations
SkillKit analyzes your project and suggests relevant skills.
Get Recommendations
skillkit recommendOutput:
Project: my-app (Next.js + TypeScript + Tailwind)
Recommended Skills:
92% vercel-react-best-practices
87% tailwind-v4-patterns
85% nextjs-app-routerFilters
skillkit recommend --search "auth"
skillkit recommend --category security
skillkit recommend --min-score 80Explainable Recommendations
See WHY skills match your project:
skillkit recommend --explainOutput:
vercel-react-best-practices (Score: 92)
├── Matched: React, TypeScript, Next.js
├── Your stack: Next.js 14, React 18
└── Path: Frontend > React > Best PracticesLLM-Based Reasoning
Use reasoning-based discovery for complex queries:
skillkit recommend --reasoningThis uses an LLM to traverse the skill taxonomy and find the most relevant skills based on semantic understanding.
How It Works
The engine analyzes:
- Project structure - Frameworks, languages, tools
- Dependencies - package.json, requirements.txt
- File patterns - Code patterns in your codebase
Scoring
Scores based on:
- Stack match
- Quality score (0-100)
- Popularity
- Task relevance
Programmatic API
import {
RecommendationEngine,
ReasoningRecommendationEngine,
analyzeProject
} from '@skillkit/core'
// Basic recommendations
const engine = new RecommendationEngine()
const profile = await analyzeProject('./my-project')
const recs = engine.recommend(profile)
// With reasoning and explanations
const reasoningEngine = new ReasoningRecommendationEngine()
await reasoningEngine.initReasoning()
const explained = await reasoningEngine.recommendWithReasoning(profile, {
reasoning: true,
explain: true
})