> ## Documentation Index
> Fetch the complete documentation index at: https://docs.10et.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# tenet skills

> Manage skills — list, install, publish, harvest, improve

Browse, install, and improve AI agent skills.

## Commands

```bash theme={null}
tenet skills list              # Show installed skills with descriptions
tenet skills list --available  # Browse registry
tenet skills install <name>    # Install from registry
tenet skills remove <name>     # Remove a skill
tenet skills publish <name>    # PR to community registry
tenet skills harvest <name>    # Extract learnings from journals
tenet skills improve <name>    # Run build agent with behavioral eval
tenet skills status [name]     # Show usage stats + learnings
```

## Examples

### See what you have

```bash theme={null}
$ tenet skills list

Skills (30)

  ✓ brand-architect [core]
     Generate brand identity options from brief
  ✓ content-creator [core]
     Generate social content with brand voice
  ✓ pretext
     Creative engine for typographic web experiences
  ...
```

### Check skill health

```bash theme={null}
$ tenet skills status

  Skill Status
  ──────────────────────────────────────────────────
  brand-architect        12 uses, 75% success    6 learnings
  pretext                8 uses, 88% success     3 learnings
  content-creator        no usage data           no learnings
```

### Improve a skill

```bash theme={null}
$ tenet skills improve brand-architect

  Running improve-brand-architect (behavioral eval)...
  Round 1: 5/8 → 7/8 (added color + typography guidance)
  Round 2: 7/8 → 8/8 KEPT ✓
```

## See Also

* [Skills System](/learning/skills) — how the improvement loop works
* [Build Evals](/learning/build-evals) — the pattern behind skill evals
