Перейти до вмісту
← На сайт
Soleri | Docs

Skills Catalog

Цей контент ще не доступний вашою мовою.

Skills are workflow scripts that teach your agent how to handle specific situations. When you say “debug this” or “create a plan”, the agent matches your intent to a skill and follows its structured workflow.

Your agent ships with 7 essential skills by default. Another 26 optional skills are available to install on demand.

These ship with every scaffolded agent:

SkillWhat it does
agent-guideResponds to “what can you do” — lists capabilities, tools, and how to use them
agent-personaActivates the agent’s persona on greeting. Maintains character through the session and compaction
vault-navigatorSearches the knowledge base for patterns, prior art, and best practices
vault-capturePersists a single known pattern, decision, or principle to the vault
systematic-debuggingFirst response to any bug — diagnoses root cause before proposing fixes
writing-plansCreates structured implementation plans from clear requirements
context-resumeRebuilds working context on session start — “where did I leave off?”

Install any of these to extend your agent’s capabilities:

SkillWhat it does
agent-devExtends the agent itself — adding facades, tools, vault ops, or new skills
agent-issuesCreates GitHub issues, bugs, tasks, and milestones structured for AI agent execution
brain-debriefExplores brain-learned patterns — strength scores, intelligence reports
brainstormingOpen-ended creative exploration when requirements are not yet clear
code-patrolReviews code against the project’s own vault patterns and conventions
deep-reviewIn-depth code review — architecture fitness, code smells, optimization opportunities
deliver-and-shipPre-delivery quality gates — stability, knowledge capture, code quality checks
discovery-phaseStructured exploration before committing to a plan — options, tradeoffs, recommendations
env-setupSets up, fixes, or restores local dev environments across languages and tools
executing-plansExecutes an approved plan step by step with review checkpoints
finishing-a-development-branchFinalizes a branch for merge — PR preparation, cleanup, final checks
fix-and-learnApplies a fix after root cause is found, then captures the learning in the vault
health-checkRead-only health assessment of the knowledge base — scoring, diagnostics, issues
knowledge-harvestExtracts multiple patterns from a source — code, docs, PRs, articles
mcp-doctorDiagnoses and repairs MCP server connectivity issues
onboard-meInstant project orientation for newcomers — patterns, conventions, architecture overview
parallel-executeExecutes independent plan tasks concurrently using subagents
retrospectiveTime-bound reflection — sprint retros, weekly summaries, actionable improvements
second-opinionDecision support from all sources — vault, brain, cross-project experience, web research
subagent-driven-developmentDecomposes tasks into independent units for parallel isolated execution
test-driven-developmentWrite failing tests before implementation — RED/GREEN/REFACTOR cycle
using-git-worktreesSafe parallel branch work using git worktrees — create, work, merge, clean up
vault-curateKnowledge maintenance — deduplicate, merge, resolve contradictions, groom
vault-smellsDeep knowledge quality analysis — contradictions, stale patterns, orphans, decay
verification-before-completionInternal quality gate before claiming a task is done — run tests, check output
yolo-modeAutonomous execution — skip approval gates while preserving safety invariants

Install a single skill:

Terminal window
npx @soleri/cli skills install deep-review

Install a skill pack (group of related skills):

Terminal window
npx @soleri/cli pack install my-skills-pack

List installed skills:

Terminal window
npx @soleri/cli skills list

When scaffolding an agent, you can control which skills are included:

FilterWhat it includes
essential7 core skills (default)
allAll 33 skills
Custom arrayOnly the skills you list

Set this in your agent.yaml:

engine:
skillsFilter: essential # or 'all', or ['vault-navigator', 'deep-review', ...]

Skills are markdown files stored in your agent’s skills/ directory (see Your Agent for the full file-tree layout). Each skill has:

  • Trigger conditions — phrases and intents that activate it
  • Steps — a structured workflow the agent follows
  • Tool references — which agent tools to use at each step

When the agent detects a matching intent, it loads the skill and follows its workflow. Skills compose with other agent capabilities — a skill can search the vault, create plans, capture knowledge, and use any tool available to the agent.


Next: Domain Packs — specialized intelligence modules for design, components, and code review. See also Creating Packs to build your own, Your Agent for the agent anatomy overview, Extending Your Agent for custom ops, and the CLI Reference for soleri skills and soleri pack commands.