Browse Skills
Ln 636 Manual Test Auditor
v1.0.0Audits manual test scripts (tests/manual/) for harness adoption, golden file completeness, fail-fast, config sourcing, template compliance, idempotency.
Ln 635 Test Isolation Auditor
v1.0.0Checks isolation (APIs/DB/FS/Time/Random/Network), determinism (flaky, order-dependent), and 7 anti-patterns.
Ln 634 Test Coverage Auditor
v1.0.0Identifies missing tests for critical paths (Money 20+, Security 20+, Data Integrity 15+, Core Flows 15+). Returns list of untested critical business logic with priority justification.
Ln 633 Test Value Auditor
v1.0.0Calculates Usefulness Score = Impact (1-5) × Probability (1-5) for each test. Returns KEEP/REVIEW/REMOVE decisions based on thresholds (≥15 KEEP, 10-14 REVIEW, <10 REMOVE).
Ln 632 Test E2e Priority Auditor
v1.0.0E2E Critical Coverage audit worker. Validates E2E coverage for critical paths (Money 20+, Security 20+, Data 15+). Pure risk-based - no pyramid percentages.
Ln 631 Test Business Logic Auditor
v1.0.0Detects tests that validate framework/library behavior (Prisma, Express, bcrypt, JWT, axios, React hooks) instead of OUR code. Returns findings with REMOVE decisions.
Ln 630 Test Auditor
v1.0.0Test suite audit coordinator: automated + manual tests. Delegates to 7 workers (Business Logic, E2E, Value, Coverage, Isolation, Manual Quality, Structure). Output: docs/project/test_audit.md.
Ln 629 Lifecycle Auditor
v1.0.0Checks bootstrap initialization order, graceful shutdown, resource cleanup, signal handling, liveness/readiness probes. Returns findings.
Ln 628 Concurrency Auditor
v1.0.0Checks async races, thread safety, TOCTOU, deadlocks, blocking I/O, resource contention, cross-process races. Two-layer detection: grep + agent reasoning.
Ln 627 Observability Auditor
v1.0.0Checks structured logging, health check endpoints, metrics collection, request tracing, log levels. Returns findings with severity, location, effort, recommendations.
Ln 626 Dead Code Auditor
v1.0.0Checks unreachable code, unused imports/variables/functions, commented-out code, backward compatibility shims, deprecated patterns. Returns findings.
Ln 625 Dependencies Auditor
v1.0.0Checks outdated packages, unused deps, reinvented wheels, vulnerability scan (CVE/CVSS). Supports mode: full | vulnerabilities_only.