Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Verify the Ed25519 witness manifest of a scaffolded harness. Fast yes/no signature check that proves the publisher signed this exact file set — separate from the full release-readiness umbrella in validate-harness.
.claude/skills/ruvnet-verify-witness/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | -37% | 0% |
| case-05 | ✗→✓ | ▲ Improved | -48% | 0% |
| case-09 | ✗→✓ | ▲ Improved | -66% | 0% |
| case-10 | ✗→✓ | ▲ Improved | -78% | 0% |
| case-13 | ✗→✓ | ▲ Improved | -59% | 0% |
> Codex skill: Ed25519 witness manifest verification for a scaffolded harness.
Reads .harness/witness.json, validates the Ed25519 signature against the embedded public key, and reports VALID / INVALID with a one-line reason.
Distinct from validate-harness:
validate-harness is the umbrella — doctor + verify + path-guard + mcp + secretsverify-witness is only the signature check — fast yes/no for CI / federation handshakes / multi-signer workflows/verify-witness
/verify-witness path=./my-harness
/verify-witness path=./my-harness strict=falsebashharness verify ./my-harness
When two harnesses federate (iter 9), they need to confirm each other's witness signatures BEFORE doing the full release-readiness check. Splitting this surface lets federation peers run a fast signature handshake without paying for the full validate sweep.
Also: CI workflows that only care about signature integrity (e.g. mirroring a published harness to a private registry) can call this skill instead of the heavier umbrella.
| Check | Detail | |-------|--------| | File present | .harness/witness.json exists | | Manifest shape | All required fields (harness, version, entries, public_key, signature) | | Signature | Ed25519 verify against the embedded public key | | Strict mode | If strict=true and no witness, exit non-zero. If false, soft-skip with PASS |
Exit 0 = signature VALID. Exit 1 = INVALID / missing (strict mode).
Other measured skills in the registry, with their headline benchmark lift.