Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Emit .harness/oia-manifest.json declaring layer alignment with the OIA v0.1 9-layer reference architecture. Self-describes the harness's MCP wiring, witness signing, audit log, identity posture (always 'none' at v0.1). --check verifies an existing manifest, --dry-run prints without writing, --json emits to stdout.
.claude/skills/ruvnet-oia-manifest/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | -12% | 0% |
| case-02 | ✗→✓ | ▲ Improved | 400% | 0% |
| case-03 | ✗→✓ | ▲ Improved | 0% | 0% |
| case-04 | ✗→✓ | ▲ Improved | 7% | 0% |
| case-09 | ✗→✓ | ▲ Improved | -43% | 0% |
> Codex skill: emit/validate the OIA cross-cutting manifest layer > (ADR-034, iter 121 → iter 122).
Emits .harness/oia-manifest.json — the harness's self-assessment against the Open Intelligence Architecture (OIA) v0.1 9-layer reference model published by the Agentics Foundation at <https://oia.agentics.org>.
The manifest declares:
each full / partial / none / not-applicable
policyEnforcement · interoperability, each full / partial / none with an implementation reference (file path or ADR number)
mcp, a2a, acp, agentProtocol withcurrent mode + wiring notes
discoveryEndpoint + registryUrl (both null at v0.1; OIA has noregistry yet)
OIA at v0.1 has no runtime and no wire protocol — it's a vendor-neutral vocabulary for assessing system alignment. The right plug-in shape is a static cross-cutting manifest (ADR-034 Decision: Option B). It plugs in ABOVE the host adapter contract and BELOW the MCP policy gate.
/oia-manifest path=./my-harness
/oia-manifest path=./my-harness check=true
/oia-manifest path=./my-harness dry-run=truebashharness oia-manifest ./my-harness # write .harness/oia-manifest.json harness oia-manifest ./my-harness --check # validate existing manifest harness oia-manifest ./my-harness --dry-run # stdout, no file write harness oia-manifest ./my-harness --json # stdout JSON
| Verdict | Exit | Meaning | |---|---|---| | PASS | 0 | manifest shape ok, oiaVersion echoed | | DRIFT | 1 | shape mismatch — per-field reasons surfaced | | FAIL no manifest | 2 | .harness/oia-manifest.json missing |
json{ "schema": 1, "oiaVersion": "0.1", "harnessId": "my-bot@0.1.0", "layerAlignment": { "L4_toolsAndIntegrations": "full", "L7_governanceAndPolicy": "full" }, "horizontalSpans": { "identity": { "status": "none", "implementation": null }, "security": { "status": "full", "implementation": "mcp-policy.json + ADR-022" } }, "adjacentStandards": { "mcp": { "mode": "local", "policyPath": ".harness/mcp-policy.json" } }, "discoveryEndpoint": null, "registryUrl": null }
If a future OIA identity primitive ever wants to widen an MCP permission, the composition is denied at the policy gate. The mcp-policy.json default-deny posture is not negotiable for external identity claims.
validate-harness (iter 22) — release-readiness umbrellathreat-model (iter 114) — MCP threat-model for PR/compliance reviewdiag-harness (iter 70) — kernel-version skew checkOther measured skills in the registry, with their headline benchmark lift.