2026-04-30 03:26:10 -04:00
---
description : Run a deterministic repository harness audit and return a prioritized scorecard.
---
2026-03-04 14:48:06 -08:00
# Harness Audit Command
2026-03-17 02:04:30 +05:30
Run a deterministic repository harness audit and return a prioritized scorecard.
2026-03-04 14:48:06 -08:00
## Usage
2026-03-30 02:01:56 -04:00
`/harness-audit [scope] [--format text|json] [--root path]`
2026-03-04 14:48:06 -08:00
- `scope` (optional): `repo` (default), `hooks` , `skills` , `commands` , `agents`
- `--format` : output style (`text` default, `json` for automation)
2026-03-30 02:01:56 -04:00
- `--root` : audit a specific path instead of the current working directory
2026-03-04 14:48:06 -08:00
2026-03-17 02:04:30 +05:30
## Deterministic Engine
2026-03-04 14:48:06 -08:00
2026-03-17 02:04:30 +05:30
Always run:
```bash
2026-03-30 02:01:56 -04:00
node scripts/harness-audit.js <scope> --format <text| json> [ --root <path>]
2026-03-17 02:04:30 +05:30
```
This script is the source of truth for scoring and checks. Do not invent additional dimensions or ad-hoc points.
2026-05-19 06:20:54 -04:00
Rubric version: `2026-05-19` .
2026-03-17 02:04:30 +05:30
2026-05-19 06:20:54 -04:00
The script computes up to 12 fixed categories (`0-10` normalized each). The first seven are always applicable; GitHub Integration is always applicable; deploy-target categories are applicable only when a matching marker is detected.
2026-03-04 14:48:06 -08:00
1. Tool Coverage
2. Context Efficiency
3. Quality Gates
4. Memory Persistence
5. Eval Coverage
6. Security Guardrails
7. Cost Efficiency
2026-05-19 06:20:54 -04:00
8. GitHub Integration
9. Vercel Integration *(when `vercel.json` or `.vercel/` is present)*
10. Netlify Integration *(when `netlify.toml` or `.netlify/` is present)*
11. Cloudflare Integration *(when `wrangler.toml` or `wrangler.jsonc` is present)*
12. Fly Integration *(when `fly.toml` is present)*
2026-03-04 14:48:06 -08:00
2026-03-17 02:04:30 +05:30
Scores are derived from explicit file/rule checks and are reproducible for the same commit.
2026-03-30 02:01:56 -04:00
The script audits the current working directory by default and auto-detects whether the target is the ECC repo itself or a consumer project using ECC.
2026-03-17 02:04:30 +05:30
2026-03-04 14:48:06 -08:00
## Output Contract
Return:
2026-05-19 06:20:54 -04:00
1. `overall_score` out of `max_score` . `max_score` depends on which categories are applicable to the target; never assume a fixed total.
2. `applicable_categories[]` and `category_count` describing which categories contributed.
3. Category scores and concrete findings.
4. Failed checks with exact file paths.
5. Top 3 actions from the deterministic output (`top_actions` ).
6. Suggested ECC skills to apply next.
2026-03-04 14:48:06 -08:00
## Checklist
2026-03-17 02:04:30 +05:30
- Use script output directly; do not rescore manually.
- If `--format json` is requested, return the script JSON unchanged.
- If text is requested, summarize failing checks and top actions.
- Include exact file paths from `checks[]` and `top_actions[]` .
2026-03-04 14:48:06 -08:00
## Example Result
```text
2026-05-19 06:20:54 -04:00
Harness Audit (repo, repo): 71/80
2026-03-17 02:04:30 +05:30
- Tool Coverage: 10/10 (10/10 pts)
- Context Efficiency: 9/10 (9/10 pts)
- Quality Gates: 10/10 (10/10 pts)
2026-05-19 06:20:54 -04:00
- GitHub Integration: 2/10 (2/10 pts)
2026-03-04 14:48:06 -08:00
Top 3 Actions:
2026-05-19 06:20:54 -04:00
1) [GitHub Integration] Add at least one workflow under .github/workflows/. (.github/workflows/)
2) [Security Guardrails] Add prompt/tool preflight security guards in hooks/hooks.json. (hooks/hooks.json)
2026-03-17 02:04:30 +05:30
3) [Eval Coverage] Increase automated test coverage across scripts/hooks/lib. (tests/)
2026-03-04 14:48:06 -08:00
```
## Arguments
$ARGUMENTS:
- `repo|hooks|skills|commands|agents` (optional scope)
- `--format text|json` (optional output format)