@ggui-ai/protocol 0.16.0 → 0.17.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/gadgets/stdlib-gadgets.d.ts +1 -1
- package/dist/gadgets/stdlib-gadgets.js +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +7 -2
- package/dist/integrations/mcp-apps.d.ts +22 -8
- package/dist/integrations/mcp-apps.d.ts.map +1 -1
- package/dist/integrations/mcp-apps.js +18 -12
- package/dist/integrations/overlay-hash.d.ts +1 -1
- package/dist/integrations/overlay-hash.d.ts.map +1 -1
- package/dist/schemas/app-generation-profile.d.ts +139 -0
- package/dist/schemas/app-generation-profile.d.ts.map +1 -0
- package/dist/schemas/app-generation-profile.js +121 -0
- package/dist/schemas/app-theme.d.ts +190 -0
- package/dist/schemas/app-theme.d.ts.map +1 -1
- package/dist/schemas/app-theme.js +110 -0
- package/dist/schemas/mcp.d.ts +14 -5
- package/dist/schemas/mcp.d.ts.map +1 -1
- package/dist/schemas/mcp.js +15 -6
- package/dist/schemas/ops-blueprint.d.ts +7 -0
- package/dist/schemas/ops-blueprint.d.ts.map +1 -1
- package/dist/schemas/ops-blueprint.js +12 -0
- package/dist/schemas/rendering-context.d.ts +48 -0
- package/dist/schemas/rendering-context.d.ts.map +1 -0
- package/dist/schemas/rendering-context.js +39 -0
- package/dist/types/render.d.ts +3 -2
- package/dist/types/render.d.ts.map +1 -1
- package/dist/version.d.ts +89 -1
- package/dist/version.d.ts.map +1 -1
- package/dist/version.js +89 -1
- package/package.json +1 -1
package/dist/version.d.ts
CHANGED
|
@@ -6,6 +6,94 @@
|
|
|
6
6
|
* schema change; the most recent change anchors {@link PROTOCOL_VERSION}.
|
|
7
7
|
*
|
|
8
8
|
* --------------------------------------------------------------------
|
|
9
|
+
* Motion tempo override (2026-09-16, additive, ggui#1093 P1c — MINOR,
|
|
10
|
+
* same draft stamp; no WIRE change). The theming spec's §2.3 retirement
|
|
11
|
+
* of per-app motion is AMENDED (protocol + rnd): layer-1 keeps the motion
|
|
12
|
+
* SCALE, and the document may state a BOUNDED tempo override — `duration`
|
|
13
|
+
* (fast/base/slow), `easing` (standard/emphasized/exit, each validated at
|
|
14
|
+
* the door as a CSS keyword, cubic-bezier or steps) and `reduce` — the
|
|
15
|
+
* standing `palette` has always had. The retired FREE-MAP ladders stay
|
|
16
|
+
* refused and the door's guard test pins the narrower rule. Reversed, not
|
|
17
|
+
* widened: §2.3's stated ground ("zero consumers today") expired when
|
|
18
|
+
* ggui#1075 created the consumer.
|
|
19
|
+
* --------------------------------------------------------------------
|
|
20
|
+
* Theme DOCUMENT members (2026-09-16, additive, ggui#1093 P1b — MINOR,
|
|
21
|
+
* same draft stamp; no WIRE change at all). `ThemeDocumentV2` and design's
|
|
22
|
+
* `DtcgTheme` gain optional `typeScale` (five roles; `leading` is a ratio),
|
|
23
|
+
* `rhythm` (bounded `base` + named steps) and `scrim`; they reach the card
|
|
24
|
+
* through `deriveThemeVariables` → the overlay, so the wire's `AppTheme`
|
|
25
|
+
* is untouched and this entry moves no stamp. Motion is NOT here: it would
|
|
26
|
+
* reverse the theming spec's §2.3 layer-1 ruling and lands as ggui#1093
|
|
27
|
+
* P1c with that reversal, co-signed.
|
|
28
|
+
* --------------------------------------------------------------------
|
|
29
|
+
* AppTheme carrier, wire half (2026-09-15, additive, ggui#1093 P1a —
|
|
30
|
+
* MINOR, same draft stamp; #1075 Track C (a), closes #990's wire half).
|
|
31
|
+
* Two OPTIONAL members on `appThemeSchema`: `fonts` (1..16 faces on
|
|
32
|
+
* `fontFaceDeclarationSchema` — #987 §5's document grammar lifted into
|
|
33
|
+
* the protocol; `@ggui-ai/project-config` imports it back, one grammar
|
|
34
|
+
* for the document door and the wire) and `imagery` (`mark` / `hero` /
|
|
35
|
+
* `pattern`, each `{ src https, alt? ≤ 200, tone? light|dark }`). Grammar
|
|
36
|
+
* at the door, never fetched; outside the attestation (`OverlayHashInput`
|
|
37
|
+
* unchanged). Belt fixtures moved to a synthetic `futureMember` because
|
|
38
|
+
* `fonts` is now a named member.
|
|
39
|
+
* --------------------------------------------------------------------
|
|
40
|
+
* AppTheme read-door posture (2026-09-15, additive, ggui#1093 belt —
|
|
41
|
+
* MINOR, same draft stamp; VERSION-POLICY §3.6 forward twin, ruled with
|
|
42
|
+
* cloud). `appThemeReadSchema` + `parseAppThemeAtReadDoor`: READ doors
|
|
43
|
+
* strip unknown TOP-LEVEL members, keep the overlays, name the stripped
|
|
44
|
+
* keys; WRITE doors stay on the strict `appThemeSchema`. The render-meta
|
|
45
|
+
* reader adopts it (`onStrippedThemeMembers`). The kit's `n1-compat`
|
|
46
|
+
* catalog gains its first FORWARD case (`app-theme-read`). Wire bytes
|
|
47
|
+
* unchanged; the belt under the #1093 carrier (`fonts?` / `imagery?`).
|
|
48
|
+
* --------------------------------------------------------------------
|
|
49
|
+
* `ggui_ops_generate_blueprint` gains `intent` (2026-09-13, additive,
|
|
50
|
+
* ggui#1046 — MINOR, same draft stamp): the generation prompt as a
|
|
51
|
+
* NON-identity field, bounded at `OPS_GENERATE_BLUEPRINT_INTENT_MAX_CHARS`
|
|
52
|
+
* (2000); `seedPrompt` stays a variance key (cache identity). The handler's
|
|
53
|
+
* silent placeholder is observable this release and refused next
|
|
54
|
+
* (`prompt_required`). The kit's `n1-compat` catalog pins Release 2's
|
|
55
|
+
* input (contract + seedPrompt, no intent).
|
|
56
|
+
* --------------------------------------------------------------------
|
|
57
|
+
* Generator profile widened (2026-09-13, additive, ggui#1058 — MINOR, same
|
|
58
|
+
* draft stamp; founder's A2 "profile OVER engine"). Two optional members on
|
|
59
|
+
* `appGenerationProfileSchema`: `effort` (one of five names — the wire
|
|
60
|
+
* carries the name, the reader owns the dials table; an unavailable level
|
|
61
|
+
* is refused `{ profile: { effort: 'unavailable' } }`, never downgraded) and
|
|
62
|
+
* `aesthetic { id, version? }` (a grammar-checked reference into the
|
|
63
|
+
* deployment's catalogue, resolved at read, unresolvable = non-fatal +
|
|
64
|
+
* `profile_aesthetic_unresolved`). The kit's `n1-compat` catalog gains the
|
|
65
|
+
* `generation-profile` wire (Release 2's three-member payload accepted).
|
|
66
|
+
* --------------------------------------------------------------------
|
|
67
|
+
* Generator profile member `direction` (2026-09-11, additive, ggui#1027
|
|
68
|
+
* follower on the ggui#991 slot — MINOR, same draft stamp). A fourth
|
|
69
|
+
* optional member on `appGenerationProfileSchema`: one variant's
|
|
70
|
+
* COMPOSITION direction — what leads, what is left out, motion or none —
|
|
71
|
+
* free text under the same `profileText` rule, door-bounded at
|
|
72
|
+
* `APP_GENERATION_PROFILE_BOUNDS.direction = 600`, named by the refusal
|
|
73
|
+
* body. §3.6 (N−1): a door on the previous release validates with the
|
|
74
|
+
* `.strict()` schema that lacks the member and REFUSES a payload carrying
|
|
75
|
+
* it, so the WRITER emits `direction` only where the reader is on this
|
|
76
|
+
* line — the bootstrap lane composing variant profiles server-side in
|
|
77
|
+
* the same publication holds it by construction; a console or platform
|
|
78
|
+
* writer waits for the release carrying it. No `PROTOCOL_VERSION` move.
|
|
79
|
+
* --------------------------------------------------------------------
|
|
80
|
+
* Rendering-context vocabulary: `renderingContextSchema` (2026-09-11,
|
|
81
|
+
* additive, ggui#1000 — MINOR). The `{ shell, device, viewport? }`
|
|
82
|
+
* vocabulary that lived as two hand-declared unions (mcp-server-core
|
|
83
|
+
* `UiGenerateInput.rendering`, ui-gen `RenderingContext`) becomes ONE
|
|
84
|
+
* schema here; both consumers now derive their type from it, and the
|
|
85
|
+
* bootstrap door validates `items[].rendering?` with it. No existing wire
|
|
86
|
+
* changes shape; no `PROTOCOL_VERSION` move.
|
|
87
|
+
* --------------------------------------------------------------------
|
|
88
|
+
* Generator profile slot: `appGenerationProfileSchema` (2026-09-10,
|
|
89
|
+
* additive, ggui#991 — MINOR; the D7 mechanism of ggui#987). One new
|
|
90
|
+
* schema on the app's `generation` section — `profile?: { styling?,
|
|
91
|
+
* density?, layout? }`, free text, trimmed, door-bounded at
|
|
92
|
+
* `APP_GENERATION_PROFILE_BOUNDS` (2000 / 200 / 200), control characters
|
|
93
|
+
* refused — plus its refusal body. A generation-time input, never a
|
|
94
|
+
* token; absent or empty leaves the generator's prompts byte-identical.
|
|
95
|
+
* No existing type changes; readers and doors land with the #991 set.
|
|
96
|
+
* --------------------------------------------------------------------
|
|
9
97
|
* Theming revision — the overlay is the projection, the host owns runtime
|
|
10
98
|
* mode (2026-09-10, ggui#987 — **BREAKING on the draft wave**, named by the
|
|
11
99
|
* conformance kit: `protocol-conformance/src/theme-binding-conformance`
|
|
@@ -3637,7 +3725,7 @@ export declare const PROTOCOL_VERSION = "draft-2026-09-10";
|
|
|
3637
3725
|
* PATCH under §1.3); it cannot be cut from main, whose delta since
|
|
3638
3726
|
* 0.14.0 is minor-class.
|
|
3639
3727
|
*/
|
|
3640
|
-
export declare const GGUI_WAVE_VERSION = "0.
|
|
3728
|
+
export declare const GGUI_WAVE_VERSION = "0.17.0";
|
|
3641
3729
|
/**
|
|
3642
3730
|
* Schema version stamped onto wire envelopes that opt into the
|
|
3643
3731
|
* `schemaVersion` forward-compat field (see {@link ActionEnvelope},
|
package/dist/version.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"version.d.ts","sourceRoot":"","sources":["../src/version.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"version.d.ts","sourceRoot":"","sources":["../src/version.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAqmHG;AACH,eAAO,MAAM,gBAAgB,qBAAqB,CAAC;AAEnD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAuCG;AACH,eAAO,MAAM,iBAAiB,WAAW,CAAC;AAE1C;;;;;;;;;;;;;;;;;;;GAmBG;AACH,eAAO,MAAM,uBAAuB,qBAAmB,CAAC;AAExD;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,eAAO,MAAM,gBAAgB,qBAAqB,CAAC;AAEnD;;;;;;;;;;;;;;;;;;;GAmBG;AACH,eAAO,MAAM,yBAAyB,EAAE,SAAS,MAAM,EAErD,CAAC"}
|
package/dist/version.js
CHANGED
|
@@ -6,6 +6,94 @@
|
|
|
6
6
|
* schema change; the most recent change anchors {@link PROTOCOL_VERSION}.
|
|
7
7
|
*
|
|
8
8
|
* --------------------------------------------------------------------
|
|
9
|
+
* Motion tempo override (2026-09-16, additive, ggui#1093 P1c — MINOR,
|
|
10
|
+
* same draft stamp; no WIRE change). The theming spec's §2.3 retirement
|
|
11
|
+
* of per-app motion is AMENDED (protocol + rnd): layer-1 keeps the motion
|
|
12
|
+
* SCALE, and the document may state a BOUNDED tempo override — `duration`
|
|
13
|
+
* (fast/base/slow), `easing` (standard/emphasized/exit, each validated at
|
|
14
|
+
* the door as a CSS keyword, cubic-bezier or steps) and `reduce` — the
|
|
15
|
+
* standing `palette` has always had. The retired FREE-MAP ladders stay
|
|
16
|
+
* refused and the door's guard test pins the narrower rule. Reversed, not
|
|
17
|
+
* widened: §2.3's stated ground ("zero consumers today") expired when
|
|
18
|
+
* ggui#1075 created the consumer.
|
|
19
|
+
* --------------------------------------------------------------------
|
|
20
|
+
* Theme DOCUMENT members (2026-09-16, additive, ggui#1093 P1b — MINOR,
|
|
21
|
+
* same draft stamp; no WIRE change at all). `ThemeDocumentV2` and design's
|
|
22
|
+
* `DtcgTheme` gain optional `typeScale` (five roles; `leading` is a ratio),
|
|
23
|
+
* `rhythm` (bounded `base` + named steps) and `scrim`; they reach the card
|
|
24
|
+
* through `deriveThemeVariables` → the overlay, so the wire's `AppTheme`
|
|
25
|
+
* is untouched and this entry moves no stamp. Motion is NOT here: it would
|
|
26
|
+
* reverse the theming spec's §2.3 layer-1 ruling and lands as ggui#1093
|
|
27
|
+
* P1c with that reversal, co-signed.
|
|
28
|
+
* --------------------------------------------------------------------
|
|
29
|
+
* AppTheme carrier, wire half (2026-09-15, additive, ggui#1093 P1a —
|
|
30
|
+
* MINOR, same draft stamp; #1075 Track C (a), closes #990's wire half).
|
|
31
|
+
* Two OPTIONAL members on `appThemeSchema`: `fonts` (1..16 faces on
|
|
32
|
+
* `fontFaceDeclarationSchema` — #987 §5's document grammar lifted into
|
|
33
|
+
* the protocol; `@ggui-ai/project-config` imports it back, one grammar
|
|
34
|
+
* for the document door and the wire) and `imagery` (`mark` / `hero` /
|
|
35
|
+
* `pattern`, each `{ src https, alt? ≤ 200, tone? light|dark }`). Grammar
|
|
36
|
+
* at the door, never fetched; outside the attestation (`OverlayHashInput`
|
|
37
|
+
* unchanged). Belt fixtures moved to a synthetic `futureMember` because
|
|
38
|
+
* `fonts` is now a named member.
|
|
39
|
+
* --------------------------------------------------------------------
|
|
40
|
+
* AppTheme read-door posture (2026-09-15, additive, ggui#1093 belt —
|
|
41
|
+
* MINOR, same draft stamp; VERSION-POLICY §3.6 forward twin, ruled with
|
|
42
|
+
* cloud). `appThemeReadSchema` + `parseAppThemeAtReadDoor`: READ doors
|
|
43
|
+
* strip unknown TOP-LEVEL members, keep the overlays, name the stripped
|
|
44
|
+
* keys; WRITE doors stay on the strict `appThemeSchema`. The render-meta
|
|
45
|
+
* reader adopts it (`onStrippedThemeMembers`). The kit's `n1-compat`
|
|
46
|
+
* catalog gains its first FORWARD case (`app-theme-read`). Wire bytes
|
|
47
|
+
* unchanged; the belt under the #1093 carrier (`fonts?` / `imagery?`).
|
|
48
|
+
* --------------------------------------------------------------------
|
|
49
|
+
* `ggui_ops_generate_blueprint` gains `intent` (2026-09-13, additive,
|
|
50
|
+
* ggui#1046 — MINOR, same draft stamp): the generation prompt as a
|
|
51
|
+
* NON-identity field, bounded at `OPS_GENERATE_BLUEPRINT_INTENT_MAX_CHARS`
|
|
52
|
+
* (2000); `seedPrompt` stays a variance key (cache identity). The handler's
|
|
53
|
+
* silent placeholder is observable this release and refused next
|
|
54
|
+
* (`prompt_required`). The kit's `n1-compat` catalog pins Release 2's
|
|
55
|
+
* input (contract + seedPrompt, no intent).
|
|
56
|
+
* --------------------------------------------------------------------
|
|
57
|
+
* Generator profile widened (2026-09-13, additive, ggui#1058 — MINOR, same
|
|
58
|
+
* draft stamp; founder's A2 "profile OVER engine"). Two optional members on
|
|
59
|
+
* `appGenerationProfileSchema`: `effort` (one of five names — the wire
|
|
60
|
+
* carries the name, the reader owns the dials table; an unavailable level
|
|
61
|
+
* is refused `{ profile: { effort: 'unavailable' } }`, never downgraded) and
|
|
62
|
+
* `aesthetic { id, version? }` (a grammar-checked reference into the
|
|
63
|
+
* deployment's catalogue, resolved at read, unresolvable = non-fatal +
|
|
64
|
+
* `profile_aesthetic_unresolved`). The kit's `n1-compat` catalog gains the
|
|
65
|
+
* `generation-profile` wire (Release 2's three-member payload accepted).
|
|
66
|
+
* --------------------------------------------------------------------
|
|
67
|
+
* Generator profile member `direction` (2026-09-11, additive, ggui#1027
|
|
68
|
+
* follower on the ggui#991 slot — MINOR, same draft stamp). A fourth
|
|
69
|
+
* optional member on `appGenerationProfileSchema`: one variant's
|
|
70
|
+
* COMPOSITION direction — what leads, what is left out, motion or none —
|
|
71
|
+
* free text under the same `profileText` rule, door-bounded at
|
|
72
|
+
* `APP_GENERATION_PROFILE_BOUNDS.direction = 600`, named by the refusal
|
|
73
|
+
* body. §3.6 (N−1): a door on the previous release validates with the
|
|
74
|
+
* `.strict()` schema that lacks the member and REFUSES a payload carrying
|
|
75
|
+
* it, so the WRITER emits `direction` only where the reader is on this
|
|
76
|
+
* line — the bootstrap lane composing variant profiles server-side in
|
|
77
|
+
* the same publication holds it by construction; a console or platform
|
|
78
|
+
* writer waits for the release carrying it. No `PROTOCOL_VERSION` move.
|
|
79
|
+
* --------------------------------------------------------------------
|
|
80
|
+
* Rendering-context vocabulary: `renderingContextSchema` (2026-09-11,
|
|
81
|
+
* additive, ggui#1000 — MINOR). The `{ shell, device, viewport? }`
|
|
82
|
+
* vocabulary that lived as two hand-declared unions (mcp-server-core
|
|
83
|
+
* `UiGenerateInput.rendering`, ui-gen `RenderingContext`) becomes ONE
|
|
84
|
+
* schema here; both consumers now derive their type from it, and the
|
|
85
|
+
* bootstrap door validates `items[].rendering?` with it. No existing wire
|
|
86
|
+
* changes shape; no `PROTOCOL_VERSION` move.
|
|
87
|
+
* --------------------------------------------------------------------
|
|
88
|
+
* Generator profile slot: `appGenerationProfileSchema` (2026-09-10,
|
|
89
|
+
* additive, ggui#991 — MINOR; the D7 mechanism of ggui#987). One new
|
|
90
|
+
* schema on the app's `generation` section — `profile?: { styling?,
|
|
91
|
+
* density?, layout? }`, free text, trimmed, door-bounded at
|
|
92
|
+
* `APP_GENERATION_PROFILE_BOUNDS` (2000 / 200 / 200), control characters
|
|
93
|
+
* refused — plus its refusal body. A generation-time input, never a
|
|
94
|
+
* token; absent or empty leaves the generator's prompts byte-identical.
|
|
95
|
+
* No existing type changes; readers and doors land with the #991 set.
|
|
96
|
+
* --------------------------------------------------------------------
|
|
9
97
|
* Theming revision — the overlay is the projection, the host owns runtime
|
|
10
98
|
* mode (2026-09-10, ggui#987 — **BREAKING on the draft wave**, named by the
|
|
11
99
|
* conformance kit: `protocol-conformance/src/theme-binding-conformance`
|
|
@@ -3637,7 +3725,7 @@ export const PROTOCOL_VERSION = "draft-2026-09-10";
|
|
|
3637
3725
|
* PATCH under §1.3); it cannot be cut from main, whose delta since
|
|
3638
3726
|
* 0.14.0 is minor-class.
|
|
3639
3727
|
*/
|
|
3640
|
-
export const GGUI_WAVE_VERSION = "0.
|
|
3728
|
+
export const GGUI_WAVE_VERSION = "0.17.0";
|
|
3641
3729
|
/**
|
|
3642
3730
|
* Schema version stamped onto wire envelopes that opt into the
|
|
3643
3731
|
* `schemaVersion` forward-compat field (see {@link ActionEnvelope},
|