goal-contract-verifier — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited goal-contract-verifier (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.
goal-contract-verifier is the paired verification skill for Goal Contracts.
Use it when a runtime or operator dispatches a fresh verifier subagent to check current execution state against a previously authored Goal Contract. This skill does not rewrite the contract, does not continue into planning or execution, and does not return free-form review prose. It returns only a structured Verifier Verdict.
The Verifier Verdict is execution-state verification output, not advice. Once a runtime or operator dispatches this verifier, it must respect the verdict and status when interpreting whether current work still aligns with the Goal Contract.
Use this skill only when all of these are true:
Do not use this skill to draft a contract from scratch, revise the contract in place, add adapter metadata, or continue into downstream execution.
Read the verification package in full before returning a verdict.
Verification Package:
goal_contract:
Goal Contract:
goal: "<one-sentence end state>"
scope:
in_scope:
- "<required work>"
out_of_scope:
- "<excluded work>"
success_criteria:
- "<observable completion condition>"
evidence:
- criterion: "<criterion or group>"
proof:
- "<planned command, artifact, diff, or review gate>"
guardrails:
- "<constraint, escalation rule, or approval boundary>"
current_progress:
- "<what has been done, observed, or claimed so far>"
current_evidence:
- criterion: "<criterion or group>"
proof:
- "<actual command result, artifact, diff, review note, or observation>"
current_blockers:
- "<open blocker, unresolved approval, contradiction, or `none`>"If any of these inputs are missing, contradictory, or too weak to support a runtime judgment, return escalate.
Use references/contract-validation.md for the full runtime validation protocol.
This verifier checks execution state when a runtime or operator invokes it. It does not decide when execution should start, and it does not take over planning, execution, recovery, or completion. Every invocation must run in a fresh subagent rather than the main execution context.
pass means the Goal Contract still frames the current state; it does not mean the goal is complete unless status is also complete.revise contract means the current Goal Contract is not reliable enough to constrain the goal; the runtime must return to the authoring layer before treating the current state as aligned.escalate means the runtime lacks enough trustworthy input, evidence, approval, or consistency to judge alignment; the runtime must stop optimistic interpretation and escalate outside the verifier.blocked means execution is blocked; the runtime must not summarize the goal as complete.Check the runtime package against these rules:
goal, scope, success_criteria, evidence, and guardrails.current_progress describes concrete runtime state rather than intention or vague optimism.current_evidence maps to the contract's success_criteria without inventing new completion rules.current_blockers makes unresolved approvals, contradictions, or missing prerequisites explicit.pass means complete.revise contract rather than papering over the contract gap.Return exactly one structured Verifier Verdict block and nothing else.
reasons concrete and tied to the contract or runtime package.pass, revise contract, escalate.on_track, complete, blocked.Use this format:
Verifier Verdict:
verdict: "pass"
status: "on_track"
reasons:
- "<concrete runtime validation finding>"
criteria_gaps: []
evidence_gaps: []When gaps are present, each item must use this shape:
criteria_gaps:
- criterion: "<affected or missing criterion>"
gap: "<missing, overlapping, subjective, non-binary, or incomplete coverage>"
reason: "<why this prevents reliable runtime judgment>"
evidence_gaps:
- criterion: "<affected criterion>"
gap: "<missing, weak, contradictory, or hidden-rule evidence>"
reason: "<why current evidence cannot prove or disprove the criterion>"status describes the runtime state of the goal, not the health of the contract.
complete: current evidence satisfies every success_criteria item.on_track: the goal is not complete yet, but current progress and evidence remain consistent with the contract and no blocker currently prevents continued progress.blocked: the goal is not complete yet, and current blockers prevent continued progress or completion.verdict describes whether the Goal Contract still works as the right frame for the runtime state.
pass: the contract still frames the current runtime state correctly. This does not mean the goal is complete.revise contract: the runtime package shows that the Goal Contract needs tighter criteria, stronger evidence mapping, or clearer scope boundaries.escalate: the runtime package exposes missing input, contradiction, unresolved approval boundary, or another condition that must be escalated outside the verifier.A runtime may therefore legitimately return combinations such as:
pass + on_trackpass + completepass + blockedrevise contract + blockedescalate + blockedpass + blocked is a valid verifier result. It means the Goal Contract still frames the runtime state correctly, but execution remains blocked; consumers must preserve the blocked status and must not summarize the goal as complete or progress as unblocked.
Return pass when the current runtime state does not expose a contract gap or escalation trigger.
Return revise contract when the runtime package shows that the Goal Contract itself needs to change.
Return escalate when:
Never collapse on_track into complete, and never use pass as a shortcut for "done".
If runtime dispatch fails before this skill can return, that failure is a fail-closed verification event outside this skill.
This skill returns runtime validation only.
Goal Contract remains the canonical artifact.Verifier Verdict remains a companion runtime artifact outside the canonical contract.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.