Skip to content

Commit 096f693

Browse files
bokelleyclaude
andcommitted
feat: add RC2 governance support and full spec coverage
Add governance protocol (sync_plans, check_governance, report_plan_outcome, get_plan_audit_logs, get_creative_features) with GovernanceHandler, wire RC2 tasks through client/server/adapters/CLI/MCP, add spec coverage tests, and integrate PR #160's oneOf flattening. Remove stale SubAsset types (schema removed in RC2), fix list field shadowing in GetPropertyListResponse, add path-traversal validation to registry. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 3171a95 commit 096f693

File tree

743 files changed

+40731
-25521
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

743 files changed

+40731
-25521
lines changed

schemas/cache/.hashes.json

Lines changed: 405 additions & 330 deletions
Large diffs are not rendered by default.
Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
{
2+
"$schema": "http://json-schema.org/draft-07/schema#",
3+
"$id": "/schemas/3.0.0-rc.2/a2ui/bound-value.json",
4+
"title": "A2UI Bound Value",
5+
"description": "A value that can be a literal or bound to a path in the data model",
6+
"oneOf": [
7+
{
8+
"type": "object",
9+
"description": "Literal string value",
10+
"properties": {
11+
"literalString": {
12+
"type": "string",
13+
"description": "Static string value"
14+
}
15+
},
16+
"required": ["literalString"],
17+
"additionalProperties": false
18+
},
19+
{
20+
"type": "object",
21+
"description": "Literal number value",
22+
"properties": {
23+
"literalNumber": {
24+
"type": "number",
25+
"description": "Static number value"
26+
}
27+
},
28+
"required": ["literalNumber"],
29+
"additionalProperties": false
30+
},
31+
{
32+
"type": "object",
33+
"description": "Literal boolean value",
34+
"properties": {
35+
"literalBoolean": {
36+
"type": "boolean",
37+
"description": "Static boolean value"
38+
}
39+
},
40+
"required": ["literalBoolean"],
41+
"additionalProperties": false
42+
},
43+
{
44+
"type": "object",
45+
"description": "Path to data model value",
46+
"properties": {
47+
"path": {
48+
"type": "string",
49+
"description": "JSON pointer path to value in data model (e.g., '/products/0/title')"
50+
}
51+
},
52+
"required": ["path"],
53+
"additionalProperties": false
54+
},
55+
{
56+
"type": "object",
57+
"description": "Literal with path binding (sets default and binds)",
58+
"properties": {
59+
"literalString": {
60+
"type": "string"
61+
},
62+
"path": {
63+
"type": "string"
64+
}
65+
},
66+
"required": ["literalString", "path"],
67+
"additionalProperties": false
68+
}
69+
]
70+
}

schemas/cache/a2ui/component.json

Lines changed: 20 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,29 @@
11
{
22
"$schema": "http://json-schema.org/draft-07/schema#",
3-
"additionalProperties": true,
3+
"$id": "/schemas/3.0.0-rc.2/a2ui/component.json",
4+
"title": "A2UI Component",
45
"description": "A component in an A2UI surface",
6+
"type": "object",
57
"properties": {
6-
"component": {
7-
"additionalProperties": {
8-
"description": "Component properties",
9-
"type": "object"
10-
},
11-
"description": "Component definition (keyed by component type)",
12-
"maxProperties": 1,
13-
"minProperties": 1,
14-
"type": "object"
15-
},
168
"id": {
17-
"description": "Unique identifier for this component within the surface",
18-
"type": "string"
9+
"type": "string",
10+
"description": "Unique identifier for this component within the surface"
1911
},
2012
"parentId": {
21-
"description": "ID of the parent component (null for root)",
22-
"type": "string"
13+
"type": "string",
14+
"description": "ID of the parent component (null for root)"
15+
},
16+
"component": {
17+
"type": "object",
18+
"description": "Component definition (keyed by component type)",
19+
"minProperties": 1,
20+
"maxProperties": 1,
21+
"additionalProperties": {
22+
"type": "object",
23+
"description": "Component properties"
24+
}
2325
}
2426
},
25-
"required": [
26-
"id",
27-
"component"
28-
],
29-
"title": "A2UI Component",
30-
"type": "object"
31-
}
27+
"required": ["id", "component"],
28+
"additionalProperties": true
29+
}

0 commit comments

Comments
 (0)