| name | audit-harness |
| description | Use when auditing HARNESS.md, pre-commit hooks, pre-push hooks, architecture gates, or CI workflows for tunacode-cli. This skill treats any mismatch, skipped gate, or failing check as a critical failure and requires manual one-by-one execution rather than make targets, batch wrappers, or summary-only audits. |
| when_to_read | ["Auditing HARNESS.md","Verifying harness accuracy","Running pre-commit or pre-push hooks manually"] |
| summary | Strict procedure for auditing harness, hook, and CI enforcement in tunacode-cli. |
| last_updated | 2026-04-04 |
Audit Harness
HARNESS.md is mission-critical. Audit it with zero tolerance.
Trigger
Use this skill when the user asks to:
- audit
HARNESS.md
- verify harness accuracy
- run pre-commit or pre-push hooks manually
- confirm architecture or CI gates
- explain what actually enforces the harness
Hard Rules
- Treat any mismatch, omission, skipped gate, auto-fix, or failing check as a critical failure.
- Never describe results as "mostly passing", "just one failure", or equivalent minimization.
- State the exact failure first.
- Explain the finding before changing code or docs.
- Do not proceed with a fix until the user tells you to proceed.
- During harness audits, never use
make check, scripts/run_gates.py, or any loop/script wrapper as the primary audit path.
- Run checks manually, one by one, in the same order they appear in the source-of-truth config.
- If a hook modifies files, report the exact files immediately.
- Do not revert hook changes unless the user explicitly asks.
Source Of Truth Order
Read these first:
HARNESS.md
.pre-commit-config.yaml
Makefile
tests/test_dependency_layers.py
scripts/grimp_layers_report.py
.github/workflows/*.yml
docs/git/practices.md
AGENTS.md
Manual Audit Procedure
Pre-commit
- Enumerate the active pre-commit hooks from
.pre-commit-config.yaml.
- Start at the top.
- Run each hook manually:
uv run pre-commit run <hook-id> --all-files
- After each hook:
state
Passed, Failed, Skipped, or Modified files.
- If a hook fails, stop and explain why before proposing a fix.
Pre-push
- Enumerate the active pre-push hooks from
.pre-commit-config.yaml.
- Run each one manually, one by one:
uv run pre-commit run <hook-id> --hook-stage pre-push --all-files
- Treat any failure as critical.
Architecture
tests/test_dependency_layers.py is the source of truth for grimp enforcement.
scripts/grimp_layers_report.py is report generation only.
scripts/run_gates.py is supplemental only and not canonical.
CI/CD
For each workflow, label it clearly as one of:
- local source of truth
- local supplemental check
- CI enforcement
- CI artifact generation
- CI report / issue automation
If wording in HARNESS.md hides an important behavior, call that a critical documentation failure.
Response Style
- Be short.
- Be exact.
- One failure is a critical failure.
- Do not soften language.