# Persona List

> This skill should be used when the user asks to "list personas", "show personas", "what personas are configured", "show woterclip agents", or runs the /persona-list command. Lists all configured WoterClip personas with their runtime settings.

- Skill: `samin12/persona-list` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add samin12/persona-list`
- Raw SKILL.md: https://api.skillmd.com/api/skills/samin12/persona-list/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: Samin12 (https://skillmd.com/u/samin12)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/samin12/persona-list

---

# List Personas

Display all configured WoterClip personas for this repository.

## Procedure

### Step 1: Load Config

Read `.woterclip/config.yaml`. If missing, report that WoterClip is not initialized and suggest `/woterclip-init`.

### Step 2: Read Persona Details

For each persona in the `personas` config map:

1. Read `config.yaml` from the persona's path (`.woterclip/<persona.path>/config.yaml`)
2. Check if `SOUL.md` and `TOOLS.md` exist
3. Collect: name, role, label, model, thinking effort, max turns, escalates_to, required tools

### Step 3: Format Output

```
WoterClip Personas
──────────────────
Name              Label       Model    Turns  Escalates  Tools
Orchestrator      (default)   haiku    50     ceo        Linear
CEO               ceo         sonnet   100    board      Linear
Backend Engineer  backend     opus     300    ceo        Linear
Frontend Engineer frontend    sonnet   200    ceo        Linear

Files:
  Orchestrator: .woterclip/personas/orchestrator/ ✓ SOUL ✓ TOOLS ✓ config
  CEO:          .woterclip/personas/ceo/         ✓ SOUL ✓ TOOLS ✓ config
  Backend:      .woterclip/personas/backend/     ✓ SOUL ✓ TOOLS ✓ config
  Frontend:     .woterclip/personas/frontend/    ✓ SOUL ✓ TOOLS ✓ config
```

Flag missing files with `✗` so the user knows what needs attention.

### Step 4: Suggest Actions

- If any persona has missing files, suggest fixing them
- Mention `/persona-create` for adding new personas

