Loading skill
Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Creates and configures agent.yaml files, writes SOUL.md personality definitions, and sets up agent directory structures with skills, tools, and knowledge. Use when the user wants to configure an agent, create agent.yaml, write SOUL.md, set up agent directory structure, or customize agent settings.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | -5% | 0% |
| case-02 | ✗→✓ | ▲ Improved | 2% | 0% |
| case-03 | ✗→✓ | ▲ Improved | -13% | 0% |
| case-11 | ✗→✓ | ▲ Improved | -17% | 0% |
| case-08 | ✗→✓ | ▲ Improved | -8% | 0% |
mkdir -p my-agent/skillsagent.yaml with required fields (see below)SOUL.md with agent identityopengap validate -d ./my-agentyamlspec_version: "0.1.0" name: my-agent # Unique identifier version: 1.0.0 # Semantic version description: What this agent does
yamlmodel: preferred: claude-sonnet-4-5-20250929 fallback: - claude-haiku-4-5-20251001 constraints: temperature: 0.2 # 0.0 - 1.0 max_tokens: 4096 top_p: 0.9
yamlskills: - code-review # Must match directory name in skills/ - security-audit tools: - lint-check # Must match filename in tools/ (without .yaml)
yamlruntime: max_turns: 20 # Max conversation turns timeout: 120 # Seconds
yamlagents: reviewer: description: Reviews code quality delegation: mode: auto triggers: - "review this"
A SOUL.md should have these sections:
Structure as:
Create skills/<name>/SKILL.md:
markdown--- name: my-skill description: What this skill does license: MIT allowed-tools: Read Edit Grep metadata: version: "1.0.0" --- # Instructions [Detailed instructions for using this skill]
Create tools/<name>.yaml:
yamlname: my-tool description: What this tool does input_schema: type: object properties: query: type: string description: Search query required: - query
Create knowledge/index.yaml:
yamldocuments: - path: reference.md always_load: true # Include in system prompt - path: appendix.md always_load: false # Available on demand
Other measured skills in the registry, with their headline benchmark lift.