Build once. Reuse everywhere. Run skills across Claude Code, Cursor, OpenClaw, and more.
๐จ Works with any AI agent that supports skill/instruction files
|
Claude Code |
Cursor |
Codex CLI |
Continue |
OpenClaw |
+ Custom Agents |
๐จ๐ณ ไธญๆ โข
๐ฏ๐ต ๆฅๆฌ่ช โข
๐ฐ๐ท ํ๊ตญ์ด โข
๐ช๐ธ Espaรฑol โข
๐ซ๐ท Franรงais โข
๐ฉ๐ช Deutsch โข
๐ง๐ท Portuguรชs
๐ท๐บ ะ ัััะบะธะน โข
๐ธ๐ฆ ุงูุนุฑุจูุฉ โข
๐ฎ๐น Italiano โข
๐ป๐ณ Tiแบฟng Viแปt โข
๐น๐ท Tรผrkรงe
Quick Start โข Features โข Documentation
A Skill is a portable instruction file for AI agents. It defines triggers, workflows, and parameters:
---
name: git-commit-helper
description: Activate when user asks to "commit changes" or "create a commit"
triggers:
- commit changes
- create commit
---
## Workflow
1. Stage changes with `git add`
2. Generate commit message based on diff
3. Create commit with `git commit`Skills are just markdown. Easy to write, easy to share, version-controlled with your code.
Every time you use an AI coding assistant, you repeat the same instructions โ "follow conventional commits", "use our code style", "check for security issues"...
Your AI forgets. Every. Single. Time.
Skillbolt fixes this by turning your instructions into reusable Skills โ and then goes further with LLM-powered discovery and intelligent execution:
|
Author skills once as portable markdown files. Works with Claude Code, Cursor, Codex, and more. |
LLM-powered capability tree + intelligent search finds the right skills for any task automatically. |
Auto-generated DAG plans orchestrate multi-skill workflows with parallel execution and cost tracking. |
Skill lifecycle
- โก CLI-first workflow โ create, validate, package, and publish Skills
- ๐งฌ Skill distillation โ extract reusable Skills from agent conversations
- ๐ฆ Modular packages โ use the full stack or only what you need
Discovery & routing
- ๐ณ Capability taxonomy โ organize hundreds of Skills into a navigable tree
- ๐ Intelligent retrieval โ fast matching with pruning + ranking across tree levels
Orchestration & visibility
- ๐ DAG planning โ compose Skills into parallelizable execution plans
- ๐ฅ๏ธ Web dashboard โ run status, logs, and DAG viewer in real time
- ๐พ OpenClaw sync โ share Skills across multi-channel agent surfaces
npm install -g @skillbolt/cliOther package managers
pnpm add -g @skillbolt/cli # pnpm
npx @skillbolt/cli --help # npx (no install)Set your LLM provider so Skillbolt can power intelligent features:
export LLM_API_KEY=sk-... # Your OpenAI or Anthropic key
export LLM_PROVIDER=openai # "openai" | "anthropic"Optional: project-level config
Create .skillboltrc.json in your project root:
{
"llm": { "provider": "openai", "model": "gpt-4o-mini" }
}See Configuration Guide for all options.
skill init my-skill --template standard --platform claude-codeskill search git # Browse marketplace
skill install github:skillbolt/git-master # Install from GitHubskill lint ./my-skill --fix๐ Browse Full Documentation โ All guides, references, and architecture docs on GitHub
- Installation Guide โ Prerequisites, setup & your first Skillbolt project
- SKILL.md Format โ Skill file specification โ triggers, workflows, parameters & metadata
- Command Reference โ Complete documentation for all 20+ CLI commands
- Configuration โ Environment variables,
.skillboltrc.json& LLM provider settings
- Runtime Intelligence โ Capability trees, intelligent search, DAG orchestration & visual dashboard
- Capability Trees โ LLM-powered classification organizes hundreds of skills into navigable hierarchies
- Intelligent Search โ Multi-level tree traversal with automatic pruning finds the best skills for any task
- DAG Orchestration โ Compose skills into parallelizable execution plans from natural language descriptions
- Skill Distillation โ Extract reusable skills from real AI conversation history
- API Reference โ Programmatic usage for building custom integrations and pipelines
- Package Architecture โ 17 modular packages โ use the full CLI or pick individual components
- OpenClaw Integration โ Sync and share skills across 13+ messaging channels via the OpenClaw gateway
- Cross-Platform Support โ Write once, run on Claude Code, Cursor, Codex CLI, Continue & more
- Contributing โ Development setup, build instructions, testing & PR workflow
- GitHub Issues โ Bug reports, feature requests & roadmap discussions
- Discord Community โ Get help, share skills & connect with other developers