agent-harness-design-7bc97e — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited agent-harness-design-7bc97e (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Use when designing or improving how an agent invokes tools, handles errors, and decides when to stop.
read_file, run_tests, apply_patchdo_action, execute, handleKeep tool inputs narrow:
{
"name": "run_tests",
"parameters": {
"path": { "type": "string", "description": "Path to test file or directory" },
"filter": { "type": "string", "description": "Optional test name filter" }
}
}Every tool response must include:
status: "success" | "warning" | "error"summary: one-line result (human-readable)next_actions: list of follow-up steps the agent should considerartifacts: file paths or IDs produced (empty list if none)Avoid run_bash / shell_exec style catch-all tools unless:
If you must use a catch-all, add a PreToolUse validation hook for dangerous patterns.
Every tool must define what happens on failure:
| Case | Required response |
|---|---|
| Invalid input | Reject immediately with status: "error" and exact field name |
| Transient failure | Include retry_after hint and idempotency note |
| Non-recoverable | State stop: true and describe the manual resolution step |
Do not return partial success with no indication that something failed.
Define retry limits in the harness, not inside tool implementations:
max_retries: 2
stop_conditions:
- tool returns status: "error" with stop: true
- same tool called with identical inputs twice in a row
- completion signal receivedNever retry indefinitely. Declare a hard ceiling.
| Risk level | Tool granularity |
|---|---|
| High (deploy, migrate, permissions) | Micro — one action, one confirmation |
| Medium (edit, read, search) | Standard — composite is fine |
| Low (format, report, list) | Macro — batch operations acceptable |
status, summary, next_actions, and artifacts~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.