Kasava’s skills follow the Agent Skills open standard — a portable format supported by 30+ AI coding tools. Write once, use everywhere.Documentation Index
Fetch the complete documentation index at: https://kasava.dev/docs/llms.txt
Use this file to discover all available pages before exploring further.
What Are Agent Skills?
Agent Skills are folders containing aSKILL.md file with instructions that AI agents load on demand. They encode how to do something — procedural knowledge that makes agents more effective at specific tasks.
Kasava provides 6 auto-trigger skills that teach AI agents how to use product intelligence when coding:
| Skill | What it teaches |
|---|---|
kasava-context | Read the local .kasava/ artifact (paths-scoped to bound repos) |
kasava-product | Load architecture, features, and tech stack before coding |
kasava-code | Navigate code via the symbol graph (definitions, usages, dependencies) |
kasava-bug | 3-way investigation: code + commits + customer signals |
kasava-plan | Pull plan specs and resolve them to current code |
kasava-signals | Ground engineering decisions in customer feedback |
/kasava:install, :sync, :plan, :ask, :ask-ai, :staleness, :decision, :status) and 4 subagents on top of these auto-trigger skills.
How Skills Work
- Discovery: At startup, the agent reads each skill’s name and description (~100 tokens each)
- Activation: When your request matches a skill’s description, the agent loads the full instructions
- Execution: The agent follows the instructions, optionally loading reference files for details
- With MCP connected: The agent executes actual tool calls (symbol search, graph queries, etc.)
- Without MCP: The agent follows the procedural guidance using local tools (grep, LSP, etc.)
Installation by Platform
Claude Code
Install the Kasava plugin which includes skills automatically:Cursor
Copy skills into your project:GitHub Copilot / VS Code
Copy skills into your workspace:OpenAI Codex
Gemini CLI
Other Tools
Check agentskills.io for platform-specific instructions. The skills directory structure is universal — copy it to wherever your tool looks for skills.Combining Skills with MCP
For the best experience, use both:- Skills teach the agent how to think about using Kasava (methodology, workflows, decision frameworks)
- MCP gives the agent access to tools that execute the methodology (actual API calls)