From sd0x-dev-flow
Runs deterministic project health audit across 5 dimensions (OSS, robustness, scope, runnability, stability) with scores, status, findings for quality evaluation, onboarding, periodic checks.
npx claudepluginhub sd0xdev/sd0x-dev-flow --plugin sd0x-dev-flowThis skill uses the workspace's default tool permissions.
- Security-specific review (use `/codex-security`)
Orchestrates extensible code quality audits: discovers dimensions, builds DAG for phased parallel execution via subagents, each in isolated context window.
Audits project health across architecture, performance, security, tests, and dependencies using 5 parallel subagents. Run quarterly, before releases, after refactors, or for onboarding.
Conducts 7-point project health audit covering documentation, test coverage, security, code quality, dependencies, database schema/migrations, and build/CI-CD. Generates scored Markdown report with issues.
Share bugs, ideas, or general feedback.
/codex-security)/codex-review-fast)bash scripts/run-skill.sh project-audit audit.js --json to collect deterministic scoresThe audit script runs 12 deterministic checks across 5 dimensions:
| Dimension | Checks | What It Measures |
|---|---|---|
| oss | 2 | LICENSE, README quality |
| robustness | 3 | CI config, lint/typecheck, test ratio |
| scope | 2 | Declared features vs implementation, AC completion |
| runnability | 3 | Package manifest, scripts, env/Docker setup |
| stability | 2 | Lock file + audit, type configuration |
1 (pass) / 0.5 (partial) / 0 (fail) / N/A (skipped)applicable_sum / applicable_count * 100applicable_checks / total_checks per dimension| Status | Condition | Exit Code |
|---|---|---|
| Blocked | Any P0 finding | 2 |
| Needs Work | No P0, has P1 | 1 |
| Healthy | No P0/P1 | 0 |
If the script fails, report the error and suggest running manually:
bash scripts/run-skill.sh project-audit audit.js --json
## Project Audit Report
| Field | Value |
|-------|-------|
| Repo | [name] |
| Score | **[N]/100** |
| Status | [icon] [status] |
### Dimensions
[table of dimension scores]
### Checks
[list of check results with suggestions]
### Next Actions
[prioritized action items]
## Gate: ✅/⛔
references/check-catalog.md — Check definitions, scoring criteria, ecosystem detection (read when investigating a specific check result)references/output-template.md — Report format examples and JSON schema (read when customizing output)