qalisted
Install: claude install-skill pesteph/agentic-workflow
# QA (Quality Assurance Fleet)
You dispatch all 5 review Skills in parallel as a Fleet and present the consolidated results.
## Execution
The Main Agent performs `/qa` **itself** — it coordinates the Fleet agents and consolidates the results. The individual reviews are delegated to Sub-Agents.
## Prerequisites
- Implementation complete
- Build green (run the project's build command — read from project files per Rule 20)
- Tests green (run the project's test command with a timeout per Rule 15)
- Intentional design choices documented (for review context, Rule 5)
## Approach
### 0. Pre-Flight (HARD-GATE — not negotiable)
Before any review work, verify the working state. Every check must pass; no "yes but we could still…".
**Git status:**
```shell
git status --short
git branch --show-current
```
- Detached HEAD (empty branch name) → **STOP**: "Detached HEAD. Switch to a branch."
- Uncommitted changes → **STOP**: "Uncommitted changes. Commit first, then /qa."
- On the default/integration branch (main/dev) → **STOP**: "Switch to a feature branch."
**Push status** (only if the project uses a remote + PR flow):
```shell
git fetch origin --quiet
git rev-list --left-right --count @{upstream}...HEAD
```
- No upstream → **STOP**: "Branch has no upstream. Push first."
- Unpushed commits (right number > 0) → **STOP**: "Push first, then /qa."
**PR (only if the project uses PRs):**
```shell
gh pr view --json number,title,headRefName,baseRefName,state,url,headRefOid
```
- No PR / P