← ClaudeAtlas

auditlisted

Run the full audit sweep — accessibility, legal, security, UI, Claude-file, and code-maturity — in one pass and merge the results into a single ranked report with one approval step. Use when asked to audit the app/project/repo generally, for a health check or compliance sweep, before a release or before opening public registration, or when more than one of the six domains is wanted. For a single domain, invoke accessibility-audit, legal-audit, security-audit, ui-audit, claude-file-audit or code-maturity-audit directly.
ChulioZ/spielwirbel · ★ 1 · Data & Documents · score 57
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