Help us improve
Share bugs, ideas, or general feedback.
Runs deterministic harness audit on repo or scopes (hooks/skills/commands/agents), producing prioritized scorecard with 7 category scores, findings, failed checks, top actions. Supports --format text/json, --root.
npx claudepluginhub burgebj/claude_everythingHow this command is triggered — by the user, by Claude, or both
Slash command
/everything-claude-code:harness-auditThe summary Claude sees in its command listing — used to decide when to auto-load this command
# Harness Audit Command Run a deterministic repository harness audit and return a prioritized scorecard. ## Usage `/harness-audit [scope] [--format text|json] [--root path]` - `scope` (optional): `repo` (default), `hooks`, `skills`, `commands`, `agents` - `--format`: output style (`text` default, `json` for automation) - `--root`: audit a specific path instead of the current working directory ## Deterministic Engine Always run: This script is the source of truth for scoring and checks. Do not invent additional dimensions or ad-hoc points. Rubric version: `2026-03-30`. The script ...
/harness-auditRuns deterministic harness audit on repo (or hooks/skills/commands/agents scopes), producing scorecard with 7 category scores, failed checks, top actions, and suggested skills. Supports text/json formats.
/harness-auditRuns a deterministic repository audit across configurable scopes (repo, hooks, skills, commands, agents) and returns a prioritized scorecard with category scores, failed checks, and top actions.
/harness-auditAudits the repository against the session-orchestrator harness rubric and reports the overall score, band (healthy/warn/critical), and any categories scoring below 7.
/just-ship-auditDiscovers audit skills in .claude/skills, dispatches them as parallel agents for security and quality audits, and consolidates findings into a report. Supports --diff, --skills, and --no-filter flags.
/auditRuns eval harness on tests/eval/EVAL-*.md: extracts and executes bash assertions, reports PASS/FAIL/WARN summary with failure details.
/pm-audit-repoRuns a repo-wide governance audit via the pm-skill-auditor sub-agent, aggregating validator output and cross-cutting checks into a layered findings report. Supports --scope and --severity-floor flags.
Share bugs, ideas, or general feedback.
Run a deterministic repository harness audit and return a prioritized scorecard.
/harness-audit [scope] [--format text|json] [--root path]
scope (optional): repo (default), hooks, skills, commands, agents--format: output style (text default, json for automation)--root: audit a specific path instead of the current working directoryAlways run:
node scripts/harness-audit.js <scope> --format <text|json> [--root <path>]
This script is the source of truth for scoring and checks. Do not invent additional dimensions or ad-hoc points.
Rubric version: 2026-03-30.
The script computes 7 fixed categories (0-10 normalized each):
Scores are derived from explicit file/rule checks and are reproducible for the same commit. 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.
Return:
overall_score out of max_score (70 for repo; smaller for scoped audits)top_actions)--format json is requested, return the script JSON unchanged.checks[] and top_actions[].Harness Audit (repo): 66/70
- Tool Coverage: 10/10 (10/10 pts)
- Context Efficiency: 9/10 (9/10 pts)
- Quality Gates: 10/10 (10/10 pts)
Top 3 Actions:
1) [Security Guardrails] Add prompt/tool preflight security guards in hooks/hooks.json. (hooks/hooks.json)
2) [Tool Coverage] Sync commands/harness-audit.md and .opencode/commands/harness-audit.md. (.opencode/commands/harness-audit.md)
3) [Eval Coverage] Increase automated test coverage across scripts/hooks/lib. (tests/)
$ARGUMENTS:
repo|hooks|skills|commands|agents (optional scope)--format text|json (optional output format)