← ClaudeAtlas

red-teamlisted

Persona-based adversarial validation. Probes whether docs and skills actually work when someone with constraints tries to use them. Spawns context-restricted agents that attempt real tasks, then consolidates findings via council. Triggers: "red-team", "red team", "adversarial test", "persona test", "can someone use this", "usability test", "zero-context test".
boshu2/agentops · ★ 369 · AI & Automation · score 80
Install: claude install-skill boshu2/agentops
# $red-team — Persona-Based Adversarial Validation > **Quick Ref:** Adopt constrained personas. Attempt real tasks. Report what breaks. Unlike `$council` (expert judgment) or `$vibe` (code quality), red-team tests whether things actually WORK when someone TRIES to use them. **YOU MUST EXECUTE THIS WORKFLOW. Do not just describe it.** ## Quick Start ```bash $red-team docs/ # probe docs with default personas $red-team skills/council/ # probe a skill's SKILL.md $red-team --surface=docs README.md # explicit surface type $red-team --personas-file=.agents/red-team/p.yaml # custom personas $red-team --deep skills/rpi/ # council consolidation with --deep ``` --- ## How It Works ``` Council: expert judges → review artifact → debate → verdict Red-team: constrained agents → attempt task → collect findings → council consolidates ``` Council judges SEE everything and JUDGE quality. Red-team agents have RESTRICTED context and ATTEMPT tasks. Council is reused only for the consolidation/verdict phase. --- ## Flags | Flag | Default | Description | |------|---------|-------------| | `--surface=<type>` | auto-detect | Force surface type: `docs` or `skills` | | `--personas-file=<path>` | built-in | Custom persona definitions (YAML) | | `--scenarios-file=<path>` | auto-generate | Custom scenario definitions (YAML) | | `--deep` | off | Use full council (not --quick) for co