What's missing
There's no single doc that walks through the compliance grading system as a system. The pieces individually exist, but the relationship between them is not documented anywhere I could find:
- Specialism manifests —
static/compliance/source/specialisms/<name>/index.yaml declares requires_scenarios: listing protocol/scenario IDs the adopter is graded on.
- Per-scenario YAMLs —
static/compliance/source/protocols/<protocol>/scenarios/<name>.yaml define the actual graded steps and may declare a requires_capability: block (e.g. path: media_buy.supports_proposals, equals: true).
- Capability gates —
get_adcp_capabilities flags like media_buy.supports_proposals toggle scenarios on/off across specialisms that reference them.
Today an adopter who claims sales-guaranteed cannot answer the basic question "which storyboards will run against my agent?" without grepping yaml. The narrative blurbs inside sales-proposal-mode/index.yaml and sales-guaranteed/index.yaml hint at it, but the mechanism is never named.
Concrete ask
Add a new page (suggested location: docs/building/verification/how-grading-works.mdx, linked from the existing Compliance Catalog) that walks through:
- The four-layer model: protocol baseline → specialism manifest → required scenarios → capability gates.
- A worked example: "I claim
sales-guaranteed and declare media_buy.supports_proposals: true. Here's the full set of storyboards I'll be graded on, and which capability flags would change that set."
- The grading verdicts an adopter will see, including
capability_unsupported (when a requires_capability gate evaluates false) vs an actual fail.
- A pointer to where each piece lives in source: manifest path, scenario path, the universal storyboard list already in compliance-catalog.mdx.
Why this matters
I went looking for this in the JS-side TS for over an hour before realizing the source of truth is the YAML manifests + per-scenario requires_capability blocks. A single page describing the system would have closed that loop in five minutes.
Related (filing separately)
- Specialism decision tree
- Capability-flag → scenario cross-reference index
What's missing
There's no single doc that walks through the compliance grading system as a system. The pieces individually exist, but the relationship between them is not documented anywhere I could find:
static/compliance/source/specialisms/<name>/index.yamldeclaresrequires_scenarios:listing protocol/scenario IDs the adopter is graded on.static/compliance/source/protocols/<protocol>/scenarios/<name>.yamldefine the actual graded steps and may declare arequires_capability:block (e.g.path: media_buy.supports_proposals, equals: true).get_adcp_capabilitiesflags likemedia_buy.supports_proposalstoggle scenarios on/off across specialisms that reference them.Today an adopter who claims
sales-guaranteedcannot answer the basic question "which storyboards will run against my agent?" without grepping yaml. The narrative blurbs insidesales-proposal-mode/index.yamlandsales-guaranteed/index.yamlhint at it, but the mechanism is never named.Concrete ask
Add a new page (suggested location:
docs/building/verification/how-grading-works.mdx, linked from the existing Compliance Catalog) that walks through:sales-guaranteedand declaremedia_buy.supports_proposals: true. Here's the full set of storyboards I'll be graded on, and which capability flags would change that set."capability_unsupported(when arequires_capabilitygate evaluates false) vs an actual fail.Why this matters
I went looking for this in the JS-side TS for over an hour before realizing the source of truth is the YAML manifests + per-scenario
requires_capabilityblocks. A single page describing the system would have closed that loop in five minutes.Related (filing separately)