> For the complete documentation index, see [llms.txt](https://evo-5.gitbook.io/evo/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://evo-5.gitbook.io/evo/concepts/skill-promotion.md).

# Skill Promotion

Skills in evo progress through a maturity lifecycle. When a skill has been used enough times, it becomes **promoted** — marked as mature and established.

## Promotion Threshold

Skills are promoted after reaching **3 uses** (`SKILL_PROMOTION_THRESHOLD`).

| Uses | Status            |
| ---- | ----------------- |
| 0-2  | New/untested      |
| 3+   | Promoted (mature) |

## What Promotion Means

Promoted skills receive preferential treatment:

1. **Catalog ordering**: Promoted skills appear first in listings
2. **Context rendering**: Marked with ★ in skill context
3. **Dormancy immunity**: Promoted skills are treated as established for dormancy decisions
4. **No capacity eviction**: Skills are never evicted for capacity (unlike memories)

## Automatic Promotion

Promotion happens automatically when `incrementUsage` is called:

```typescript
await skillStore.incrementUsage(scope, 'git-commit-workflow')
// After 3rd call: skill.promoted = true
```

This is typically triggered by `useSkill`:

```typescript
await evo.useSkill(scope, 'git-commit-workflow', 'Added signed commits')
```

## Querying Promoted Skills

The skill listing API sorts promoted skills first:

```bash
GET /evo/skills?scopeType=project&scopeId=/repo
```

Response:

```json
{
  "skills": [
    { "name": "git-commit", "promoted": true, "usageCount": 5 },
    { "name": "deploy-workflow", "promoted": false, "usageCount": 1 }
  ]
}
```

## Context Display

In recalled context, promoted skills show with a marker:

```
# Available skills (Read SKILL.md on use)
- **git-commit** ★: When committing code → `.paper/agents/skills/git-commit`
- **deploy-workflow**: When deploying → `.paper/agents/skills/deploy-workflow`
```

## Trust Model

Skills are **trusted on first distill**. Unlike memories which may be consolidated or evicted, skills represent procedural knowledge that has been explicitly identified as reusable.

Promotion adds an additional signal: this skill has proven useful in practice, not just in theory.

## No Capacity Eviction

Unlike memories, skills are **never evicted for capacity**. They may become dormant (hidden from active recall) but are never deleted automatically. This ensures procedural knowledge is preserved even if not recently used.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://evo-5.gitbook.io/evo/concepts/skill-promotion.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
