@timurproko/a1 0.1.8-dev.157 → 0.1.8-dev.182

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.
Files changed (64) hide show
  1. package/README.md +32 -0
  2. package/bin/ui.js +17 -2
  3. package/dist/composition/owned-ui.d.ts +4 -1
  4. package/dist/composition/owned-ui.js +8 -5
  5. package/dist/contracts/agent-engine/capability-ports.d.ts +2 -2
  6. package/dist/contracts/agent-engine/domain-validation.js +22 -4
  7. package/dist/contracts/agent-engine/domain.d.ts +17 -0
  8. package/dist/contracts/owned-ui/model.d.ts +8 -0
  9. package/dist/contracts/owned-ui/validation.js +11 -0
  10. package/dist/features/owned-ui/index.d.ts +1 -0
  11. package/dist/features/owned-ui/index.js +1 -0
  12. package/dist/features/owned-ui/project-trust-prompt.d.ts +20 -0
  13. package/dist/features/owned-ui/project-trust-prompt.js +32 -0
  14. package/dist/features/owned-ui/settings-app.js +37 -9
  15. package/dist/integrations/pi/components/shell-components.d.ts +1 -0
  16. package/dist/integrations/pi/components/shell-components.js +1 -0
  17. package/dist/integrations/pi/components/shell-editor-autocomplete.js +10 -0
  18. package/dist/integrations/pi/components/shell-footer-status.js +14 -9
  19. package/dist/integrations/pi/components/shell-presenters-info.d.ts +36 -0
  20. package/dist/integrations/pi/components/shell-presenters-info.js +78 -0
  21. package/dist/integrations/pi/components/shell-presenters-transcript.d.ts +3 -36
  22. package/dist/integrations/pi/components/shell-presenters-transcript.js +88 -128
  23. package/dist/integrations/pi/components/shell-shared-facade.d.ts +11 -1
  24. package/dist/integrations/pi/engine/adapter.d.ts +15 -4
  25. package/dist/integrations/pi/engine/adapter.js +185 -37
  26. package/dist/integrations/pi/engine/http-dispatcher.d.ts +4 -0
  27. package/dist/integrations/pi/engine/http-dispatcher.js +25 -0
  28. package/dist/integrations/pi/engine/index.d.ts +3 -0
  29. package/dist/integrations/pi/engine/index.js +3 -0
  30. package/dist/integrations/pi/engine/project-trust-preflight.d.ts +22 -0
  31. package/dist/integrations/pi/engine/project-trust-preflight.js +50 -0
  32. package/dist/integrations/pi/engine/runtime-integration.d.ts +16 -1
  33. package/dist/integrations/pi/engine/runtime-integration.js +34 -4
  34. package/dist/integrations/pi/engine/settings-effects.d.ts +55 -0
  35. package/dist/integrations/pi/engine/settings-effects.js +229 -0
  36. package/dist/integrations/pi/engine/settings-integration.d.ts +14 -26
  37. package/dist/integrations/pi/engine/settings-integration.js +102 -108
  38. package/dist/integrations/pi/engine/workflow-controllers.d.ts +1 -1
  39. package/dist/integrations/pi/session-ui/clipboard-image.d.ts +11 -0
  40. package/dist/integrations/pi/session-ui/clipboard-image.js +29 -0
  41. package/dist/integrations/pi/session-ui/prompt-chips.js +5 -1
  42. package/dist/integrations/pi/session-ui/session-shell-root.d.ts +9 -2
  43. package/dist/integrations/pi/session-ui/session-shell-root.js +83 -9
  44. package/dist/integrations/pi/session-ui/session-shell.d.ts +2 -0
  45. package/dist/integrations/pi/session-ui/session-shell.js +151 -15
  46. package/dist/integrations/pi/session-ui/session-viewport-controller.js +34 -2
  47. package/dist/integrations/pi/session-ui/system-clipboard.d.ts +9 -0
  48. package/dist/integrations/pi/session-ui/system-clipboard.js +34 -5
  49. package/dist/integrations/pi/tui-runtime/adapter.d.ts +4 -0
  50. package/dist/integrations/pi/tui-runtime/adapter.js +28 -0
  51. package/dist/native/darwin-arm64/manifest.json +1 -1
  52. package/dist/native/linux-x64/manifest.json +1 -1
  53. package/dist/native/win32-x64/manifest.json +2 -2
  54. package/dist/native/win32-x64/process-guardian.exe +0 -0
  55. package/dist/ui/components/spans.d.ts +2 -0
  56. package/dist/ui/components/spans.js +25 -0
  57. package/dist/ui/settings/sections.d.ts +8 -19
  58. package/dist/ui/settings/sections.js +12 -4
  59. package/dist/ui/settings/session.d.ts +8 -18
  60. package/dist/ui/settings/session.js +59 -52
  61. package/docs/architecture/project-structure.md +14 -0
  62. package/docs/ci-release-runbook.md +69 -4
  63. package/docs/repository-governance-live-acceptance.md +77 -0
  64. package/package.json +5 -2
@@ -0,0 +1,55 @@
1
+ import type { AgentJsonValue, AgentSettingApplicationBoundary, AgentSettingChangeOutcome, AgentSettingOwner } from "../../../contracts/agent-engine/index.js";
2
+ export type PiSettingKey = "autoCompact" | "showImages" | "imageWidthCells" | "autoResizeImages" | "blockImages" | "enableSkillCommands" | "steeringMode" | "followUpMode" | "transport" | "httpIdleTimeoutMs" | "thinkingLevel" | "theme" | "hideThinkingBlock" | "mermaidRenderingMode" | "showCacheMissNotices" | "collapseChangelog" | "enableInstallTelemetry" | "quietStartup" | "defaultProjectTrust" | "doubleEscapeAction" | "treeFilterMode" | "showHardwareCursor" | "editorPaddingX" | "outputPad" | "autocompleteMaxVisible" | "clearOnShrink" | "showTerminalProgress" | "tuiMode" | "fullscreenExitOutput" | "fullscreenScrollbar" | "warnings";
3
+ export interface PiSettingEffectDefinition {
4
+ readonly application: AgentSettingApplicationBoundary;
5
+ readonly owner: AgentSettingOwner;
6
+ /** Bare A1 deliberately replaces this Pi behavior and therefore cannot apply it. */
7
+ readonly bareLimitation?: string;
8
+ }
9
+ /**
10
+ * Reviewed effect authority for every generated Pi setting. Presentation remains
11
+ * generated; this table states who must make each accepted value observable.
12
+ */
13
+ export declare const PI_SETTING_EFFECTS: Readonly<Record<PiSettingKey, PiSettingEffectDefinition>>;
14
+ export interface PiSettingEffectHandler {
15
+ /** Install one value in the active owner. Handlers must be idempotent and reversible. */
16
+ apply(value: AgentJsonValue): void | Promise<void>;
17
+ }
18
+ export type PiSettingOwnerHandlers = Partial<Record<PiSettingKey, PiSettingEffectHandler>>;
19
+ export interface PiSettingStorageOperation {
20
+ readonly key: PiSettingKey;
21
+ read(): AgentJsonValue;
22
+ validate(value: AgentJsonValue): void;
23
+ write(value: AgentJsonValue): void;
24
+ }
25
+ export interface PiSettingsCoordinatorOptions {
26
+ readonly productMode?: "bare" | "comparison";
27
+ readonly flush: () => Promise<void>;
28
+ readonly drainErrors?: () => readonly {
29
+ readonly error: Error;
30
+ }[];
31
+ }
32
+ /**
33
+ * One transactional authority for Pi setting validation, active effects,
34
+ * persistence, durability, rollback, and owner lifecycle.
35
+ */
36
+ export declare class PiSettingsCoordinator {
37
+ #private;
38
+ constructor(operations: readonly PiSettingStorageOperation[], options: PiSettingsCoordinatorOptions);
39
+ bindOwner(owner: AgentSettingOwner, handlers: PiSettingOwnerHandlers): () => void;
40
+ unbindOwner(owner: AgentSettingOwner, keys?: readonly PiSettingKey[]): void;
41
+ definition(key: PiSettingKey): PiSettingEffectDefinition;
42
+ storedValue(key: PiSettingKey): AgentJsonValue;
43
+ effectiveValue(key: PiSettingKey): AgentJsonValue;
44
+ limitationReason(key: PiSettingKey): string | null;
45
+ available(key: PiSettingKey): boolean;
46
+ validate(key: PiSettingKey, value: AgentJsonValue): void;
47
+ apply(key: PiSettingKey, value: AgentJsonValue): Promise<AgentSettingChangeOutcome>;
48
+ flush(): Promise<void>;
49
+ rollback(key: PiSettingKey, value: AgentJsonValue): Promise<void>;
50
+ }
51
+ export declare function settingsEffectInventoryDrift(presented: readonly string[], reviewed?: readonly string[]): {
52
+ readonly unmapped: readonly string[];
53
+ readonly stale: readonly string[];
54
+ readonly duplicated: readonly string[];
55
+ };
@@ -0,0 +1,229 @@
1
+ const PRODUCT_FIXED = {
2
+ theme: "Bare A1 uses its product-fixed dark owned theme",
3
+ quietStartup: "Bare A1 owns startup composition and does not expose Pi startup suppression",
4
+ tuiMode: "Bare A1 uses its product-fixed custom fullscreen viewport",
5
+ fullscreenScrollbar: "Bare A1 replaces Pi's scrollbar with declared A1 viewport settings",
6
+ enableInstallTelemetry: "Bare A1 does not run Pi's install/update telemetry lifecycle",
7
+ };
8
+ /**
9
+ * Reviewed effect authority for every generated Pi setting. Presentation remains
10
+ * generated; this table states who must make each accepted value observable.
11
+ */
12
+ export const PI_SETTING_EFFECTS = Object.freeze({
13
+ autoCompact: { application: "live", owner: "agent" },
14
+ showImages: { application: "live", owner: "shell" },
15
+ imageWidthCells: { application: "live", owner: "shell" },
16
+ autoResizeImages: { application: "live", owner: "agent" },
17
+ blockImages: { application: "live", owner: "agent" },
18
+ enableSkillCommands: { application: "live", owner: "shell" },
19
+ steeringMode: { application: "live", owner: "agent" },
20
+ followUpMode: { application: "live", owner: "agent" },
21
+ transport: { application: "live", owner: "agent" },
22
+ httpIdleTimeoutMs: { application: "live", owner: "agent" },
23
+ thinkingLevel: { application: "live", owner: "agent" },
24
+ theme: { application: "live", owner: "shell", bareLimitation: PRODUCT_FIXED.theme },
25
+ hideThinkingBlock: { application: "live", owner: "shell" },
26
+ mermaidRenderingMode: { application: "live", owner: "shell" },
27
+ showCacheMissNotices: { application: "live", owner: "shell" },
28
+ collapseChangelog: { application: "next-start", owner: "startup" },
29
+ enableInstallTelemetry: { application: "next-start", owner: "installation", bareLimitation: PRODUCT_FIXED.enableInstallTelemetry },
30
+ quietStartup: { application: "next-start", owner: "startup", bareLimitation: PRODUCT_FIXED.quietStartup },
31
+ defaultProjectTrust: { application: "next-start", owner: "startup" },
32
+ doubleEscapeAction: { application: "live", owner: "shell" },
33
+ treeFilterMode: { application: "live", owner: "shell" },
34
+ showHardwareCursor: { application: "live", owner: "terminal" },
35
+ editorPaddingX: { application: "live", owner: "shell" },
36
+ outputPad: { application: "live", owner: "shell" },
37
+ autocompleteMaxVisible: { application: "live", owner: "shell" },
38
+ clearOnShrink: { application: "live", owner: "terminal" },
39
+ showTerminalProgress: { application: "live", owner: "terminal" },
40
+ tuiMode: { application: "next-session", owner: "shell", bareLimitation: PRODUCT_FIXED.tuiMode },
41
+ fullscreenExitOutput: { application: "current-exit", owner: "shutdown" },
42
+ fullscreenScrollbar: { application: "live", owner: "shell", bareLimitation: PRODUCT_FIXED.fullscreenScrollbar },
43
+ warnings: { application: "live", owner: "agent" },
44
+ });
45
+ /**
46
+ * One transactional authority for Pi setting validation, active effects,
47
+ * persistence, durability, rollback, and owner lifecycle.
48
+ */
49
+ export class PiSettingsCoordinator {
50
+ #operations;
51
+ #handlers = new Map();
52
+ #state = new Map();
53
+ #productMode;
54
+ #flushStorage;
55
+ #drainErrors;
56
+ constructor(operations, options) {
57
+ this.#operations = new Map(operations.map(operation => [operation.key, operation]));
58
+ this.#productMode = options.productMode ?? "bare";
59
+ this.#flushStorage = options.flush;
60
+ this.#drainErrors = options.drainErrors;
61
+ for (const operation of operations) {
62
+ const stored = operation.read();
63
+ this.#state.set(operation.key, { stored, effective: stored, inconsistentReason: null });
64
+ }
65
+ }
66
+ bindOwner(owner, handlers) {
67
+ const bound = [];
68
+ for (const [candidate, handler] of Object.entries(handlers)) {
69
+ if (handler === undefined)
70
+ continue;
71
+ const key = candidate;
72
+ const definition = PI_SETTING_EFFECTS[key];
73
+ if (definition === undefined)
74
+ throw new Error(`unknown Pi setting effect: ${key}`);
75
+ if (definition.owner !== owner)
76
+ throw new Error(`${key} belongs to ${definition.owner}, not ${owner}`);
77
+ if (this.#productMode === "bare" && definition.bareLimitation !== undefined) {
78
+ throw new Error(`${key} is product-fixed in bare A1`);
79
+ }
80
+ this.#handlers.set(key, handler);
81
+ bound.push(key);
82
+ }
83
+ return () => this.unbindOwner(owner, bound);
84
+ }
85
+ unbindOwner(owner, keys) {
86
+ const candidates = keys ?? [...this.#handlers.keys()];
87
+ for (const key of candidates)
88
+ if (PI_SETTING_EFFECTS[key].owner === owner)
89
+ this.#handlers.delete(key);
90
+ }
91
+ definition(key) {
92
+ return PI_SETTING_EFFECTS[key];
93
+ }
94
+ storedValue(key) {
95
+ const operation = this.#requireOperation(key);
96
+ const stored = operation.read();
97
+ const state = this.#requireState(key);
98
+ state.stored = stored;
99
+ return stored;
100
+ }
101
+ effectiveValue(key) {
102
+ return this.#requireState(key).effective;
103
+ }
104
+ limitationReason(key) {
105
+ const definition = PI_SETTING_EFFECTS[key];
106
+ if (this.#productMode === "bare" && definition.bareLimitation !== undefined)
107
+ return definition.bareLimitation;
108
+ const inconsistent = this.#requireState(key).inconsistentReason;
109
+ if (inconsistent !== null)
110
+ return inconsistent;
111
+ if (!this.#handlers.has(key))
112
+ return `${definition.owner} effect is not bound for ${definition.application} application`;
113
+ return null;
114
+ }
115
+ available(key) {
116
+ return this.limitationReason(key) === null;
117
+ }
118
+ validate(key, value) {
119
+ this.#requireOperation(key).validate(value);
120
+ }
121
+ async apply(key, value) {
122
+ const operation = this.#requireOperation(key);
123
+ operation.validate(value);
124
+ const definition = PI_SETTING_EFFECTS[key];
125
+ const previousStored = operation.read();
126
+ const state = this.#requireState(key);
127
+ const previousEffective = state.effective;
128
+ const limitationReason = this.limitationReason(key);
129
+ if (limitationReason !== null) {
130
+ return outcome("unavailable", definition.application, previousStored, previousEffective, null, limitationReason);
131
+ }
132
+ const handler = this.#handlers.get(key);
133
+ if (definition.application !== "live") {
134
+ try {
135
+ operation.write(value);
136
+ await this.flush();
137
+ state.stored = value;
138
+ return outcome("deferred", definition.application, value, previousEffective, null, null);
139
+ }
140
+ catch (error) {
141
+ const failure = await this.#restorePersistence(operation, previousStored, error);
142
+ state.stored = operation.read();
143
+ return outcome("failed", definition.application, state.stored, previousEffective, failure, null);
144
+ }
145
+ }
146
+ try {
147
+ await handler.apply(value);
148
+ }
149
+ catch (error) {
150
+ return outcome("failed", definition.application, previousStored, previousEffective, describe(error), null);
151
+ }
152
+ state.effective = value;
153
+ try {
154
+ operation.write(value);
155
+ await this.flush();
156
+ state.stored = value;
157
+ state.inconsistentReason = null;
158
+ return outcome("applied", definition.application, value, value, null, null);
159
+ }
160
+ catch (error) {
161
+ const persistenceFailure = await this.#restorePersistence(operation, previousStored, error);
162
+ try {
163
+ await handler.apply(previousEffective);
164
+ state.effective = previousEffective;
165
+ state.stored = operation.read();
166
+ return outcome("failed", definition.application, state.stored, previousEffective, persistenceFailure, null);
167
+ }
168
+ catch (rollbackError) {
169
+ state.stored = operation.read();
170
+ state.inconsistentReason = `rollback failed after ${persistenceFailure}: ${describe(rollbackError)}`;
171
+ return outcome("failed", definition.application, state.stored, state.effective, state.inconsistentReason, state.inconsistentReason);
172
+ }
173
+ }
174
+ }
175
+ async flush() {
176
+ await this.#flushStorage();
177
+ const errors = this.#drainErrors?.() ?? [];
178
+ if (errors.length > 0)
179
+ throw new Error(errors.map(value => value.error.message).join("; "));
180
+ }
181
+ async rollback(key, value) {
182
+ const handler = this.#handlers.get(key);
183
+ if (handler === undefined)
184
+ throw new Error(`cannot roll back unbound setting: ${key}`);
185
+ await handler.apply(value);
186
+ this.#requireState(key).effective = value;
187
+ }
188
+ async #restorePersistence(operation, previous, cause) {
189
+ const original = describe(cause);
190
+ try {
191
+ operation.write(previous);
192
+ await this.flush();
193
+ return original;
194
+ }
195
+ catch (rollbackError) {
196
+ return `${original}; persistence rollback failed: ${describe(rollbackError)}`;
197
+ }
198
+ }
199
+ #requireOperation(key) {
200
+ const operation = this.#operations.get(key);
201
+ if (operation === undefined)
202
+ throw new Error(`setting is unavailable: ${key}`);
203
+ return operation;
204
+ }
205
+ #requireState(key) {
206
+ const state = this.#state.get(key);
207
+ if (state === undefined)
208
+ throw new Error(`setting state is unavailable: ${key}`);
209
+ return state;
210
+ }
211
+ }
212
+ export function settingsEffectInventoryDrift(presented, reviewed = Object.keys(PI_SETTING_EFFECTS)) {
213
+ const reviewedSet = new Set(reviewed);
214
+ const presentedSet = new Set(presented);
215
+ const counts = new Map();
216
+ for (const key of reviewed)
217
+ counts.set(key, (counts.get(key) ?? 0) + 1);
218
+ return {
219
+ unmapped: presented.filter(key => !reviewedSet.has(key)),
220
+ stale: reviewed.filter(key => !presentedSet.has(key)),
221
+ duplicated: [...counts].filter(([, count]) => count > 1).map(([key]) => key),
222
+ };
223
+ }
224
+ function outcome(status, application, storedValue, effectiveValue, failure, limitationReason) {
225
+ return { status, application, storedValue, effectiveValue, failure, limitationReason };
226
+ }
227
+ function describe(error) {
228
+ return error instanceof Error ? error.message : String(error);
229
+ }
@@ -1,43 +1,28 @@
1
1
  import type { SettingsManager } from "@earendil-works/pi-coding-agent";
2
- import type { AgentJsonValue, AgentSettingDescriptor, AgentSettingsPort } from "../../../contracts/agent-engine/index.js";
3
- /**
4
- * Values only the running engine knows: the themes installed on this machine and
5
- * the thinking levels this session supports. The boundary asks for them as it is
6
- * read, so no layer above has to know they are not fixed.
7
- */
2
+ import type { AgentJsonValue, AgentSettingChangeOutcome, AgentSettingDescriptor, AgentSettingOwner, AgentSettingsPort } from "../../../contracts/agent-engine/index.js";
3
+ import { type PiSettingOwnerHandlers } from "./settings-effects.js";
4
+ /** Values only the running engine knows. */
8
5
  export interface PiSettingsProviders {
9
6
  readonly themes?: () => readonly string[];
10
7
  readonly thinkingLevels?: () => readonly string[];
8
+ readonly productMode?: "bare" | "comparison";
11
9
  }
12
- /**
13
- * The engine stores a theme as one string with two forms: a theme's name, or a
14
- * `light/dark` pair meaning "follow the terminal". That grammar is the engine's,
15
- * so it is parsed and composed here and reaches the surfaces above as ordinary
16
- * settings — a theme entry that offers `automatic`, and, while automatic, one
17
- * entry per terminal appearance.
18
- */
19
10
  export declare const AUTOMATIC_THEME = "automatic";
20
11
  interface AutomaticTheme {
21
12
  readonly light: string;
22
13
  readonly dark: string;
23
14
  }
24
- /** A stored theme is automatic when it names one theme per terminal appearance. */
25
15
  export declare function parseAutomaticTheme(stored: string): AutomaticTheme | null;
26
- /**
27
- * The settings A1 exposes: the ones the engine presents. Kept as the engine's
28
- * own inventory rather than a list beside it, so a setting it adds or renames
29
- * shows up as a named test failure instead of quietly going missing.
30
- */
31
16
  export declare const EXPOSED_SETTING_KEYS: readonly string[];
32
- /**
33
- * What has drifted between the settings the engine presents and the settings A1
34
- * maps to its API: the ones A1 has not caught up with, and the ones it kept
35
- * after the engine dropped them. Either is a build failure with a name in it.
36
- */
37
17
  export declare function settingsInventoryDrift(presented: readonly string[], mapped: readonly string[]): {
38
18
  readonly unmapped: readonly string[];
39
19
  readonly stale: readonly string[];
40
20
  };
21
+ /**
22
+ * Pi settings boundary backed by the transactional settings coordinator. The
23
+ * generated metadata owns presentation while the reviewed effect registry owns
24
+ * timing, availability, and active behavior.
25
+ */
41
26
  export declare class PiSettingsIntegration implements AgentSettingsPort {
42
27
  #private;
43
28
  private readonly settings;
@@ -46,10 +31,13 @@ export declare class PiSettingsIntegration implements AgentSettingsPort {
46
31
  flush: boolean;
47
32
  };
48
33
  constructor(settings: SettingsManager, providers?: PiSettingsProviders);
34
+ bindOwner(owner: AgentSettingOwner, handlers: PiSettingOwnerHandlers): () => void;
35
+ unbindOwner(owner: AgentSettingOwner): void;
49
36
  listSettings(): Promise<readonly AgentSettingDescriptor[]>;
50
37
  readSetting(key: string): Promise<AgentJsonValue | undefined>;
51
- writeSetting(key: string, value: AgentJsonValue): Promise<void>;
52
- writeSettingNow(key: string, value: AgentJsonValue): void;
38
+ writeSetting(key: string, value: AgentJsonValue): Promise<AgentSettingChangeOutcome>;
39
+ /** Shared route used by the pinned selector and owned settings surface. */
40
+ writeSettingNow(key: string, value: AgentJsonValue): Promise<AgentSettingChangeOutcome>;
53
41
  flush(): Promise<void>;
54
42
  }
55
43
  export {};
@@ -1,18 +1,10 @@
1
1
  import piSettingsMetadata from "./pi-settings-metadata.json" with { type: "json" };
2
- /**
3
- * The engine stores a theme as one string with two forms: a theme's name, or a
4
- * `light/dark` pair meaning "follow the terminal". That grammar is the engine's,
5
- * so it is parsed and composed here and reaches the surfaces above as ordinary
6
- * settings — a theme entry that offers `automatic`, and, while automatic, one
7
- * entry per terminal appearance.
8
- */
2
+ import { PI_SETTING_EFFECTS, PiSettingsCoordinator, settingsEffectInventoryDrift, } from "./settings-effects.js";
9
3
  export const AUTOMATIC_THEME = "automatic";
10
- /** The themes an automatic setting names for each terminal appearance. */
11
4
  const LIGHT_APPEARANCE_THEME = "light";
12
5
  const DARK_APPEARANCE_THEME = "dark";
13
6
  const THEME_KEY = "theme";
14
7
  const THINKING_KEY = "thinkingLevel";
15
- /** A stored theme is automatic when it names one theme per terminal appearance. */
16
8
  export function parseAutomaticTheme(stored) {
17
9
  const at = stored.indexOf("/");
18
10
  if (at < 0 || stored.indexOf("/", at + 1) >= 0)
@@ -21,24 +13,8 @@ export function parseAutomaticTheme(stored) {
21
13
  const dark = stored.slice(at + 1).trim();
22
14
  return light.length > 0 && dark.length > 0 ? { light, dark } : null;
23
15
  }
24
- /**
25
- * How the engine presents these settings — wording, order, and the flags a
26
- * dialog-backed setting offers — generated from its own source by
27
- * `npm run update:pi-settings-metadata` and verified by a governance test, so a
28
- * Pi upgrade cannot silently reword or reorder what A1 shows.
29
- */
30
16
  const PRESENTATION = piSettingsMetadata;
31
- /**
32
- * The settings A1 exposes: the ones the engine presents. Kept as the engine's
33
- * own inventory rather than a list beside it, so a setting it adds or renames
34
- * shows up as a named test failure instead of quietly going missing.
35
- */
36
17
  export const EXPOSED_SETTING_KEYS = PRESENTATION.presented;
37
- /**
38
- * What has drifted between the settings the engine presents and the settings A1
39
- * maps to its API: the ones A1 has not caught up with, and the ones it kept
40
- * after the engine dropped them. Either is a build failure with a name in it.
41
- */
42
18
  export function settingsInventoryDrift(presented, mapped) {
43
19
  const has = new Set(mapped);
44
20
  const engine = new Set(presented);
@@ -47,62 +23,87 @@ export function settingsInventoryDrift(presented, mapped) {
47
23
  stale: mapped.filter(key => !engine.has(key)),
48
24
  };
49
25
  }
50
- /** What the engine offers for a setting, as the strings it words them with. */
51
26
  function offered(key) {
52
27
  return PRESENTATION.settings[key]?.values ?? [];
53
28
  }
54
- /**
55
- * The same, read as the numbers a numeric setting stores. Only for a setting
56
- * whose list is its whole domain: where the engine offers a few numbers but
57
- * accepts any within a range, the range governs and the list is only shortcuts.
58
- */
59
29
  function offeredNumbers(key) {
60
30
  return offered(key).map(value => Number.parseInt(value, 10)).filter(value => Number.isSafeInteger(value));
61
31
  }
32
+ /**
33
+ * Pi settings boundary backed by the transactional settings coordinator. The
34
+ * generated metadata owns presentation while the reviewed effect registry owns
35
+ * timing, availability, and active behavior.
36
+ */
62
37
  export class PiSettingsIntegration {
63
38
  settings;
64
39
  capabilities = { write: true, flush: true };
65
40
  #operations;
66
41
  #providers;
42
+ #coordinator;
67
43
  constructor(settings, providers = {}) {
68
44
  this.settings = settings;
69
45
  this.#providers = providers;
70
- this.#operations = new Map(operations(settings).map(operation => [operation.descriptor.key, operation]));
71
- if (this.#operations.size !== EXPOSED_SETTING_KEYS.length || EXPOSED_SETTING_KEYS.some(key => !this.#operations.has(key))) {
72
- throw new Error("Pi settings integration does not cover every A1-exposed setting");
46
+ const mapped = operations(settings, providers);
47
+ this.#operations = new Map(mapped.map(operation => [operation.key, operation]));
48
+ const presentationDrift = settingsInventoryDrift(EXPOSED_SETTING_KEYS, mapped.map(operation => operation.key));
49
+ const effectDrift = settingsEffectInventoryDrift(EXPOSED_SETTING_KEYS);
50
+ if (presentationDrift.unmapped.length > 0 || presentationDrift.stale.length > 0
51
+ || effectDrift.unmapped.length > 0 || effectDrift.stale.length > 0 || effectDrift.duplicated.length > 0) {
52
+ throw new Error([
53
+ `unmapped operations: ${presentationDrift.unmapped.join(", ")}`,
54
+ `stale operations: ${presentationDrift.stale.join(", ")}`,
55
+ `unmapped effects: ${effectDrift.unmapped.join(", ")}`,
56
+ `stale effects: ${effectDrift.stale.join(", ")}`,
57
+ `duplicated effects: ${effectDrift.duplicated.join(", ")}`,
58
+ ].join("; "));
73
59
  }
60
+ this.#coordinator = new PiSettingsCoordinator(mapped, {
61
+ productMode: providers.productMode ?? "bare",
62
+ flush: () => settings.flush(),
63
+ drainErrors: () => settings.drainErrors(),
64
+ });
65
+ }
66
+ bindOwner(owner, handlers) {
67
+ return this.#coordinator.bindOwner(owner, handlers);
68
+ }
69
+ unbindOwner(owner) {
70
+ this.#coordinator.unbindOwner(owner);
74
71
  }
75
72
  async listSettings() {
76
73
  const rank = (key) => {
77
74
  const at = PRESENTATION.order.indexOf(key);
78
75
  return at < 0 ? PRESENTATION.order.length : at;
79
76
  };
80
- const listed = [...this.#operations.values()]
77
+ return [...this.#operations.values()]
81
78
  .map(operation => {
82
- const key = operation.descriptor.key;
79
+ const key = operation.key;
83
80
  const wording = PRESENTATION.settings[key];
84
81
  const flags = PRESENTATION.dialogs[key];
85
82
  const bounds = PRESENTATION.bounds[key];
86
- return {
83
+ const limitationReason = this.#coordinator.limitationReason(key);
84
+ const descriptor = {
87
85
  ...operation.descriptor,
86
+ application: PI_SETTING_EFFECTS[key].application,
87
+ owner: PI_SETTING_EFFECTS[key].owner,
88
+ available: limitationReason === null,
89
+ limitationReason,
90
+ writable: limitationReason === null,
91
+ storedValue: this.#coordinator.storedValue(key),
92
+ effectiveValue: this.#coordinator.effectiveValue(key),
88
93
  ...(bounds === undefined ? {} : bounds),
89
94
  ...(wording === undefined ? {} : { label: wording.label, description: wording.description }),
90
95
  ...(flags === undefined ? {} : { flags }),
91
96
  };
97
+ return this.#resolved(descriptor);
92
98
  })
93
- .map(descriptor => this.#resolved(descriptor))
94
99
  .sort((left, right) => rank(left.key) - rank(right.key));
95
- // Following the terminal is one choice on the theme itself, not two further
96
- // settings: the pair behind it is the engine's grammar, not a reader's task.
97
- return listed;
98
100
  }
99
- /** Overlays the values a setting can only offer once something is running. */
100
101
  #resolved(descriptor) {
101
102
  if (descriptor.key === THEME_KEY) {
102
103
  const themes = this.#themes();
103
104
  if (themes.length === 0)
104
105
  return descriptor;
105
- return { ...descriptor, valueType: "enum", writable: true, resolvedWhenRead: true, choices: [AUTOMATIC_THEME, ...themes] };
106
+ return { ...descriptor, valueType: "enum", resolvedWhenRead: true, choices: [AUTOMATIC_THEME, ...themes] };
106
107
  }
107
108
  if (descriptor.key === THINKING_KEY) {
108
109
  const levels = this.#providers.thinkingLevels?.() ?? [];
@@ -115,53 +116,24 @@ export class PiSettingsIntegration {
115
116
  #themes() {
116
117
  return this.#providers.themes?.() ?? [];
117
118
  }
118
- #storedTheme() {
119
- const stored = this.#operations.get(THEME_KEY)?.read();
120
- return typeof stored === "string" ? stored : "";
121
- }
122
119
  async readSetting(key) {
123
- if (key === THEME_KEY) {
124
- const pair = parseAutomaticTheme(this.#storedTheme());
125
- return pair === null ? this.#operations.get(key)?.read() : AUTOMATIC_THEME;
126
- }
127
- return this.#operations.get(key)?.read();
120
+ return isPiSettingKey(key) && this.#operations.has(key) ? this.#coordinator.storedValue(key) : undefined;
128
121
  }
129
- async writeSetting(key, value) { this.writeSettingNow(key, value); }
130
- writeSettingNow(key, value) {
131
- if (typeof value === "string" && key === THEME_KEY) {
132
- this.#writeTheme(value);
133
- return;
134
- }
135
- const operation = this.#operations.get(key);
136
- if (!operation)
122
+ async writeSetting(key, value) {
123
+ if (!isPiSettingKey(key) || !this.#operations.has(key))
137
124
  throw new Error(`setting is unavailable: ${key}`);
138
- operation.write(value);
125
+ return await this.#coordinator.apply(key, value);
139
126
  }
140
- /**
141
- * Writes the theme in the engine's own grammar. Following the terminal is
142
- * stored as the pair the engine reads for it, made of the themes named for
143
- * each appearance when they are installed; where they are not, the theme
144
- * already in use stands for both, so the setting still round-trips.
145
- */
146
- #writeTheme(value) {
147
- const theme = this.#operations.get(THEME_KEY);
148
- if (!theme)
149
- throw new Error(`setting is unavailable: ${THEME_KEY}`);
150
- if (value !== AUTOMATIC_THEME) {
151
- theme.write(value);
152
- return;
153
- }
154
- if (parseAutomaticTheme(this.#storedTheme()) !== null)
155
- return;
156
- const installed = this.#themes();
157
- const current = this.#storedTheme();
158
- const light = installed.includes(LIGHT_APPEARANCE_THEME) ? LIGHT_APPEARANCE_THEME : current;
159
- const dark = installed.includes(DARK_APPEARANCE_THEME) ? DARK_APPEARANCE_THEME : current;
160
- theme.write(`${light}/${dark}`);
127
+ /** Shared route used by the pinned selector and owned settings surface. */
128
+ async writeSettingNow(key, value) {
129
+ return await this.writeSetting(key, value);
130
+ }
131
+ async flush() {
132
+ await this.#coordinator.flush();
161
133
  }
162
- async flush() { await this.settings.flush(); }
163
134
  }
164
- function operations(settings) {
135
+ function operations(settings, providers) {
136
+ const themes = () => providers.themes?.() ?? [];
165
137
  return [
166
138
  bool("autoCompact", () => settings.getCompactionEnabled(), value => settings.setCompactionEnabled(value)),
167
139
  bool("showImages", () => settings.getShowImages(), value => settings.setShowImages(value)),
@@ -173,12 +145,8 @@ function operations(settings) {
173
145
  choice("followUpMode", offered("followUpMode"), () => settings.getFollowUpMode(), value => settings.setFollowUpMode(value)),
174
146
  choice("transport", offered("transport"), () => settings.getTransport(), value => settings.setTransport(value)),
175
147
  numberSetting("httpIdleTimeoutMs", () => settings.getHttpIdleTimeoutMs(), value => settings.setHttpIdleTimeoutMs(value), 0),
176
- // The engine reads these from the running session rather than declaring them,
177
- // so they arrive through the runtime provider rather than from its source.
178
148
  choice("thinkingLevel", ["off", "minimal", "low", "medium", "high", "xhigh"], () => settings.getDefaultThinkingLevel() ?? "medium", value => settings.setDefaultThinkingLevel(value)),
179
- // The raw setting, not the resolved theme: the engine hides the automatic
180
- // pair behind getTheme, and the pair is the thing A1 presents parts of.
181
- stringSetting("theme", () => settings.getThemeSetting() ?? "default", value => settings.setTheme(value)),
149
+ themeSetting(settings, themes),
182
150
  bool("hideThinkingBlock", () => settings.getHideThinkingBlock(), value => settings.setHideThinkingBlock(value)),
183
151
  choice("mermaidRenderingMode", offered("mermaidRenderingMode"), () => settings.getMermaidRenderingMode(), value => settings.setMermaidRenderingMode(value)),
184
152
  bool("showCacheMissNotices", () => settings.getShowCacheMissNotices(), value => settings.setShowCacheMissNotices(value)),
@@ -201,33 +169,59 @@ function operations(settings) {
201
169
  ];
202
170
  }
203
171
  function bool(key, read, write) {
204
- return { descriptor: { key, valueType: "boolean", writable: true }, read, write(value) { if (typeof value !== "boolean")
205
- invalid(key); write(value); } };
172
+ return operation(key, "boolean", read, value => { if (typeof value !== "boolean")
173
+ invalid(key); }, value => write(value));
206
174
  }
207
175
  function numberSetting(key, read, write, minimum) {
208
176
  const declared = PRESENTATION.bounds[key];
209
177
  const low = declared?.minimum ?? minimum;
210
178
  const high = declared?.maximum;
179
+ return operation(key, "number", read, value => {
180
+ if (typeof value !== "number" || !Number.isSafeInteger(value) || value < low || (high !== undefined && value > high))
181
+ invalid(key);
182
+ }, value => write(value));
183
+ }
184
+ function jsonObject(key, read, write) {
185
+ const boundedRead = () => Object.fromEntries(Object.entries(read()).filter((entry) => typeof entry[1] === "boolean"));
186
+ return operation(key, "json", boundedRead, value => {
187
+ if (!value || typeof value !== "object" || Array.isArray(value))
188
+ invalid(key);
189
+ }, write);
190
+ }
191
+ function choice(key, choices, read, write) {
211
192
  return {
212
- descriptor: { key, valueType: "number", writable: true },
213
- read,
214
- write(value) {
215
- if (typeof value !== "number" || !Number.isSafeInteger(value) || value < low || (high !== undefined && value > high))
216
- invalid(key);
217
- write(value);
218
- },
193
+ ...operation(key, "enum", read, value => { if (!choices.includes(value))
194
+ invalid(key); }, write),
195
+ descriptor: { key, valueType: "enum", choices },
219
196
  };
220
197
  }
221
- function stringSetting(key, read, write) {
222
- return { descriptor: { key, valueType: "string", writable: true }, read, write(value) { if (typeof value !== "string" || value.length === 0)
223
- invalid(key); write(value); } };
198
+ function themeSetting(settings, themes) {
199
+ const raw = () => settings.getThemeSetting() ?? "default";
200
+ const read = () => parseAutomaticTheme(raw()) === null ? raw() : AUTOMATIC_THEME;
201
+ return operation(THEME_KEY, "string", read, value => {
202
+ if (typeof value !== "string" || value.length === 0)
203
+ invalid(THEME_KEY);
204
+ }, value => {
205
+ const selected = value;
206
+ if (selected !== AUTOMATIC_THEME) {
207
+ settings.setTheme(selected);
208
+ return;
209
+ }
210
+ if (parseAutomaticTheme(raw()) !== null)
211
+ return;
212
+ const installed = themes();
213
+ const current = raw();
214
+ const light = installed.includes(LIGHT_APPEARANCE_THEME) ? LIGHT_APPEARANCE_THEME : current;
215
+ const dark = installed.includes(DARK_APPEARANCE_THEME) ? DARK_APPEARANCE_THEME : current;
216
+ settings.setTheme(`${light}/${dark}`);
217
+ });
224
218
  }
225
- function jsonObject(key, read, write) {
226
- return { descriptor: { key, valueType: "json", writable: true }, read: () => Object.fromEntries(Object.entries(read()).filter((entry) => typeof entry[1] === "boolean")), write(value) { if (!value || typeof value !== "object" || Array.isArray(value))
227
- invalid(key); write(value); } };
219
+ function operation(key, valueType, read, validate, write) {
220
+ return { key, descriptor: { key, valueType }, read, validate, write };
228
221
  }
229
- function choice(key, choices, read, write) {
230
- return { descriptor: { key, valueType: "enum", writable: true, choices }, read, write(value) { if (!choices.includes(value))
231
- invalid(key); write(value); } };
222
+ function isPiSettingKey(key) {
223
+ return Object.hasOwn(PI_SETTING_EFFECTS, key);
224
+ }
225
+ function invalid(key) {
226
+ throw new TypeError(`setting value is invalid: ${key}`);
232
227
  }
233
- function invalid(key) { throw new TypeError(`setting value is invalid: ${key}`); }