auditlisted
Install: claude install-skill ChulioZ/spielwirbel
# Full audit
A thin orchestrator over the six domain audits. It exists so the user reviews
**one** ranked list and approves **one** batch of issues, instead of six of each.
It adds no criteria of its own. Every judgement lives in the domain skills and
`audit-loop.md`; this file only decides what runs where, and how the results
merge.
## Run order — the two browser audits cannot run in parallel
The split is driven by one hard constraint: **there is one Browser pane per
session**, and two audits drive it.
- **`legal-audit`, `security-audit`, `claude-file-audit` and
`code-maturity-audit` run as four parallel subagents.** They are independent,
read-only sweeps over largely disjoint file sets — exactly the case parallel
subagents are for. Launch all four in a single message. (`security-audit` may
itself invoke the built-in `/security-review` and `npm audit`; that stays
inside its own subagent.)
- **`accessibility-audit` and `ui-audit` run in the main agent, one after the
other — never as subagents, and never at the same time as each other.** Both
drive the Browser pane and both need the seeded `dev-temp-data` instance, so a
subagent (or a concurrent sibling) would contend for the same tabs and preview
server. Run them **sequentially**, sharing the one preview session: bring up
`dev-temp-data` once, do the accessibility pass, then the UI pass (or vice
versa), then tear the preview down once at the end.
Start the four subagents first. Then, while they wor