Files
XZBT/test/fixtures/gc2/valid-full-feature.xzbt
T
Labyricorn e02d49a739 feat(phase0): complete GC1 feasibility and GC2 shared format contracts
- Record user evidence for directory fallback to complete GC1 (10/10 checks passed)

- Expand Format Specification 0.1 to Revision 0.2 with normative shared contracts

- Author JSON Schema Draft-07 at schema/xzbt-0.1.schema.json

- Implement zero-dependency semantic validator at tools/validate-exhibit.mjs

- Create 12-case conformance fixture suite and automated test runner (12/12 passing)

- Update implementation status, verification gates, and gap closure decisions

- Add devlog entry covering stall recovery and Phase 0 current state
2026-09-05 11:38:48 -07:00

64 lines
1.2 KiB
Plaintext

{
"xzbt": "0.1",
"meta": {
"id": "full-study",
"name": "Full Feature Conformance Study",
"version": "1.0.0",
"author": "Antigravity",
"description": "Valid exhibit exercising parameters, state, expressions, and bindings.",
"tags": ["test", "conformance", "gc2"]
},
"runtime": {
"seed": 42
},
"parameters": {
"activity": {
"type": "number",
"default": 0.5,
"min": 0.0,
"max": 1.0,
"step": 0.01,
"label": "Activity Level"
},
"high-contrast": {
"type": "boolean",
"default": false
},
"wave-shape": {
"type": "enum",
"values": ["sine", "triangle", "square"],
"default": "sine"
},
"accent-color": {
"type": "color",
"default": "#e8ad57"
}
},
"state": {
"energy": {
"type": "number",
"initial": 0.2,
"min": 0.0,
"max": 1.0
},
"alert-active": {
"type": "boolean",
"initial": false
}
},
"bindings": [
{
"from": "parameters.activity",
"to": "state.energy",
"transform": {
"op": "multiply",
"args": [
{ "ref": "parameters.activity" },
1.5
]
},
"smoothing": "250ms"
}
]
}