@gajae-code/coding-agent 0.3.0 → 0.3.2

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 (213) hide show
  1. package/CHANGELOG.md +32 -0
  2. package/README.md +1 -1
  3. package/dist/types/async/job-manager.d.ts +7 -0
  4. package/dist/types/cli/args.d.ts +3 -1
  5. package/dist/types/commands/deep-interview.d.ts +3 -0
  6. package/dist/types/commands/launch.d.ts +6 -0
  7. package/dist/types/config/keybindings.d.ts +5 -0
  8. package/dist/types/config/model-profile-activation.d.ts +30 -0
  9. package/dist/types/config/model-profiles.d.ts +19 -0
  10. package/dist/types/config/model-registry.d.ts +8 -0
  11. package/dist/types/config/model-resolver.d.ts +1 -1
  12. package/dist/types/config/models-config-schema.d.ts +47 -0
  13. package/dist/types/config/settings-schema.d.ts +14 -4
  14. package/dist/types/debug/crash-diagnostics.d.ts +45 -0
  15. package/dist/types/debug/runtime-gauges.d.ts +6 -0
  16. package/dist/types/deep-interview/render-middleware.d.ts +1 -0
  17. package/dist/types/eval/py/executor.d.ts +2 -0
  18. package/dist/types/eval/py/kernel.d.ts +2 -0
  19. package/dist/types/exec/bash-executor.d.ts +10 -0
  20. package/dist/types/gjc-runtime/cli-write-receipt.d.ts +24 -0
  21. package/dist/types/gjc-runtime/deep-interview-runtime.d.ts +1 -0
  22. package/dist/types/gjc-runtime/state-migrations.d.ts +9 -0
  23. package/dist/types/gjc-runtime/state-schema.d.ts +317 -0
  24. package/dist/types/gjc-runtime/state-writer.d.ts +10 -0
  25. package/dist/types/gjc-runtime/ultragoal-runtime.d.ts +2 -1
  26. package/dist/types/gjc-runtime/workflow-command-ref.d.ts +43 -0
  27. package/dist/types/harness-control-plane/control-endpoint.d.ts +3 -2
  28. package/dist/types/hooks/skill-state.d.ts +21 -0
  29. package/dist/types/internal-urls/agent-protocol.d.ts +2 -2
  30. package/dist/types/internal-urls/artifact-protocol.d.ts +2 -2
  31. package/dist/types/internal-urls/registry-helpers.d.ts +8 -7
  32. package/dist/types/internal-urls/types.d.ts +4 -0
  33. package/dist/types/lsp/index.d.ts +10 -10
  34. package/dist/types/main.d.ts +10 -1
  35. package/dist/types/modes/bridge/auth.d.ts +12 -0
  36. package/dist/types/modes/bridge/bridge-client-bridge.d.ts +9 -0
  37. package/dist/types/modes/bridge/bridge-mode.d.ts +44 -0
  38. package/dist/types/modes/bridge/bridge-ui-context.d.ts +88 -0
  39. package/dist/types/modes/bridge/event-stream.d.ts +8 -0
  40. package/dist/types/modes/components/custom-editor.d.ts +6 -0
  41. package/dist/types/modes/components/custom-provider-wizard.d.ts +10 -0
  42. package/dist/types/modes/components/jobs-overlay-model.d.ts +31 -0
  43. package/dist/types/modes/components/jobs-overlay.d.ts +30 -0
  44. package/dist/types/modes/components/model-selector.d.ts +6 -1
  45. package/dist/types/modes/components/provider-onboarding-selector.d.ts +1 -1
  46. package/dist/types/modes/components/status-line/types.d.ts +2 -0
  47. package/dist/types/modes/components/status-line.d.ts +2 -0
  48. package/dist/types/modes/controllers/input-controller.d.ts +1 -0
  49. package/dist/types/modes/controllers/selector-controller.d.ts +9 -0
  50. package/dist/types/modes/index.d.ts +1 -0
  51. package/dist/types/modes/interactive-mode.d.ts +1 -0
  52. package/dist/types/modes/jobs-observer.d.ts +57 -0
  53. package/dist/types/modes/rpc/host-tools.d.ts +1 -16
  54. package/dist/types/modes/rpc/host-uris.d.ts +1 -38
  55. package/dist/types/modes/shared/agent-wire/command-dispatch.d.ts +20 -0
  56. package/dist/types/modes/shared/agent-wire/command-validation.d.ts +2 -0
  57. package/dist/types/modes/shared/agent-wire/event-envelope.d.ts +24 -0
  58. package/dist/types/modes/shared/agent-wire/handshake.d.ts +46 -0
  59. package/dist/types/modes/shared/agent-wire/host-tool-bridge.d.ts +16 -0
  60. package/dist/types/modes/shared/agent-wire/host-uri-bridge.d.ts +17 -0
  61. package/dist/types/modes/shared/agent-wire/protocol.d.ts +44 -0
  62. package/dist/types/modes/shared/agent-wire/responses.d.ts +4 -0
  63. package/dist/types/modes/shared/agent-wire/scopes.d.ts +18 -0
  64. package/dist/types/modes/shared/agent-wire/ui-request-broker.d.ts +42 -0
  65. package/dist/types/modes/shared/agent-wire/ui-result.d.ts +27 -0
  66. package/dist/types/modes/types.d.ts +2 -0
  67. package/dist/types/sdk.d.ts +3 -1
  68. package/dist/types/session/agent-session.d.ts +11 -1
  69. package/dist/types/skill-state/workflow-state-contract.d.ts +1 -2
  70. package/dist/types/skill-state/workflow-state-version.d.ts +3 -0
  71. package/dist/types/task/executor.d.ts +1 -0
  72. package/dist/types/task/id.d.ts +7 -0
  73. package/dist/types/task/index.d.ts +5 -0
  74. package/dist/types/task/receipt.d.ts +85 -0
  75. package/dist/types/task/spawn-gate.d.ts +38 -0
  76. package/dist/types/task/types.d.ts +143 -11
  77. package/dist/types/tools/cron.d.ts +6 -0
  78. package/dist/types/tools/hindsight-recall.d.ts +0 -2
  79. package/dist/types/tools/hindsight-reflect.d.ts +0 -2
  80. package/dist/types/tools/hindsight-retain.d.ts +0 -2
  81. package/dist/types/tools/index.d.ts +6 -4
  82. package/dist/types/tools/path-utils.d.ts +1 -0
  83. package/dist/types/tools/subagent.d.ts +15 -0
  84. package/package.json +7 -7
  85. package/scripts/build-binary.ts +7 -0
  86. package/src/async/job-manager.ts +36 -0
  87. package/src/cli/args.ts +19 -2
  88. package/src/commands/deep-interview.ts +1 -0
  89. package/src/commands/harness.ts +289 -19
  90. package/src/commands/launch.ts +10 -2
  91. package/src/commands/state.ts +2 -1
  92. package/src/commands/team.ts +22 -4
  93. package/src/config/keybindings.ts +6 -0
  94. package/src/config/model-profile-activation.ts +157 -0
  95. package/src/config/model-profiles.ts +155 -0
  96. package/src/config/model-registry.ts +19 -0
  97. package/src/config/model-resolver.ts +3 -2
  98. package/src/config/models-config-schema.ts +36 -0
  99. package/src/config/settings-schema.ts +16 -3
  100. package/src/dap/client.ts +17 -3
  101. package/src/debug/crash-diagnostics.ts +223 -0
  102. package/src/debug/runtime-gauges.ts +20 -0
  103. package/src/deep-interview/render-middleware.ts +6 -0
  104. package/src/defaults/gjc/skills/deep-interview/SKILL.md +1 -1
  105. package/src/defaults/gjc/skills/ralplan/SKILL.md +31 -2
  106. package/src/defaults/gjc/skills/ultragoal/SKILL.md +39 -3
  107. package/src/defaults/gjc/skills/ultragoal/ai-slop-cleaner.md +61 -0
  108. package/src/defaults/gjc-defaults.ts +7 -0
  109. package/src/eval/py/executor.ts +21 -1
  110. package/src/eval/py/kernel.ts +15 -0
  111. package/src/exec/bash-executor.ts +41 -0
  112. package/src/gjc-runtime/cli-write-receipt.ts +31 -0
  113. package/src/gjc-runtime/deep-interview-runtime.ts +69 -32
  114. package/src/gjc-runtime/ralplan-runtime.ts +213 -36
  115. package/src/gjc-runtime/state-migrations.ts +54 -7
  116. package/src/gjc-runtime/state-runtime.ts +461 -64
  117. package/src/gjc-runtime/state-schema.ts +192 -0
  118. package/src/gjc-runtime/state-writer.ts +32 -1
  119. package/src/gjc-runtime/team-runtime.ts +177 -105
  120. package/src/gjc-runtime/ultragoal-runtime.ts +231 -38
  121. package/src/gjc-runtime/workflow-command-ref.ts +239 -0
  122. package/src/gjc-runtime/workflow-manifest.generated.json +108 -4
  123. package/src/gjc-runtime/workflow-manifest.ts +3 -1
  124. package/src/harness-control-plane/control-endpoint.ts +19 -8
  125. package/src/harness-control-plane/owner.ts +57 -10
  126. package/src/harness-control-plane/state-machine.ts +2 -1
  127. package/src/hooks/skill-state.ts +176 -26
  128. package/src/internal-urls/agent-protocol.ts +68 -21
  129. package/src/internal-urls/artifact-protocol.ts +12 -17
  130. package/src/internal-urls/docs-index.generated.ts +8 -10
  131. package/src/internal-urls/registry-helpers.ts +19 -16
  132. package/src/internal-urls/types.ts +4 -0
  133. package/src/lsp/client.ts +18 -2
  134. package/src/main.ts +88 -6
  135. package/src/modes/bridge/auth.ts +41 -0
  136. package/src/modes/bridge/bridge-client-bridge.ts +47 -0
  137. package/src/modes/bridge/bridge-mode.ts +520 -0
  138. package/src/modes/bridge/bridge-ui-context.ts +200 -0
  139. package/src/modes/bridge/event-stream.ts +70 -0
  140. package/src/modes/components/custom-editor.ts +101 -0
  141. package/src/modes/components/custom-provider-wizard.ts +318 -0
  142. package/src/modes/components/hook-selector.ts +61 -18
  143. package/src/modes/components/jobs-overlay-model.ts +109 -0
  144. package/src/modes/components/jobs-overlay.ts +172 -0
  145. package/src/modes/components/model-selector.ts +108 -18
  146. package/src/modes/components/provider-onboarding-selector.ts +6 -1
  147. package/src/modes/components/status-line/presets.ts +7 -5
  148. package/src/modes/components/status-line/segments.ts +25 -0
  149. package/src/modes/components/status-line/types.ts +2 -0
  150. package/src/modes/components/status-line.ts +9 -1
  151. package/src/modes/controllers/extension-ui-controller.ts +39 -3
  152. package/src/modes/controllers/input-controller.ts +97 -9
  153. package/src/modes/controllers/selector-controller.ts +86 -1
  154. package/src/modes/index.ts +1 -0
  155. package/src/modes/interactive-mode.ts +27 -0
  156. package/src/modes/jobs-observer.ts +204 -0
  157. package/src/modes/rpc/host-tools.ts +1 -186
  158. package/src/modes/rpc/host-uris.ts +1 -235
  159. package/src/modes/rpc/rpc-client.ts +25 -10
  160. package/src/modes/rpc/rpc-mode.ts +12 -381
  161. package/src/modes/shared/agent-wire/command-dispatch.ts +341 -0
  162. package/src/modes/shared/agent-wire/command-validation.ts +131 -0
  163. package/src/modes/shared/agent-wire/event-envelope.ts +108 -0
  164. package/src/modes/shared/agent-wire/handshake.ts +117 -0
  165. package/src/modes/shared/agent-wire/host-tool-bridge.ts +194 -0
  166. package/src/modes/shared/agent-wire/host-uri-bridge.ts +236 -0
  167. package/src/modes/shared/agent-wire/protocol.ts +96 -0
  168. package/src/modes/shared/agent-wire/responses.ts +17 -0
  169. package/src/modes/shared/agent-wire/scopes.ts +89 -0
  170. package/src/modes/shared/agent-wire/ui-request-broker.ts +150 -0
  171. package/src/modes/shared/agent-wire/ui-result.ts +48 -0
  172. package/src/modes/types.ts +2 -0
  173. package/src/prompts/memories/consolidation.md +1 -1
  174. package/src/prompts/memories/read-path.md +6 -7
  175. package/src/prompts/memories/unavailable.md +2 -2
  176. package/src/prompts/tools/bash.md +1 -1
  177. package/src/prompts/tools/irc.md +1 -1
  178. package/src/prompts/tools/read.md +2 -2
  179. package/src/prompts/tools/recall.md +1 -0
  180. package/src/prompts/tools/reflect.md +1 -0
  181. package/src/prompts/tools/retain.md +1 -0
  182. package/src/prompts/tools/subagent.md +12 -7
  183. package/src/prompts/tools/task-summary.md +3 -9
  184. package/src/prompts/tools/task.md +5 -1
  185. package/src/sdk.ts +5 -1
  186. package/src/session/agent-session.ts +214 -38
  187. package/src/skill-state/deep-interview-mutation-guard.ts +23 -4
  188. package/src/skill-state/workflow-state-contract.ts +7 -4
  189. package/src/skill-state/workflow-state-version.ts +3 -0
  190. package/src/slash-commands/builtin-registry.ts +9 -1
  191. package/src/task/executor.ts +31 -5
  192. package/src/task/id.ts +33 -0
  193. package/src/task/index.ts +259 -67
  194. package/src/task/output-manager.ts +5 -4
  195. package/src/task/receipt.ts +297 -0
  196. package/src/task/render.ts +48 -131
  197. package/src/task/spawn-gate.ts +132 -0
  198. package/src/task/types.ts +48 -7
  199. package/src/tools/ask.ts +73 -33
  200. package/src/tools/ast-edit.ts +1 -0
  201. package/src/tools/ast-grep.ts +1 -0
  202. package/src/tools/bash.ts +1 -1
  203. package/src/tools/cron.ts +48 -0
  204. package/src/tools/find.ts +4 -1
  205. package/src/tools/hindsight-recall.ts +0 -2
  206. package/src/tools/hindsight-reflect.ts +0 -2
  207. package/src/tools/hindsight-retain.ts +0 -2
  208. package/src/tools/index.ts +6 -18
  209. package/src/tools/path-utils.ts +3 -2
  210. package/src/tools/read.ts +4 -3
  211. package/src/tools/search.ts +1 -0
  212. package/src/tools/skill.ts +6 -1
  213. package/src/tools/subagent.ts +237 -84
@@ -0,0 +1,88 @@
1
+ import type { ExtensionUIContext, ExtensionUIDialogOptions, ExtensionWidgetContent, ExtensionWidgetOptions, TerminalInputHandler } from "../../extensibility/extensions";
2
+ import type { UiRequestBroker } from "../shared/agent-wire/ui-request-broker";
3
+ import type { BridgeUiResult } from "../shared/agent-wire/ui-result";
4
+ import { type Theme } from "../theme/theme";
5
+ export type BridgeUiRequestPayload = {
6
+ kind: "select";
7
+ title: string;
8
+ options: string[];
9
+ timeout?: number;
10
+ } | {
11
+ kind: "confirm";
12
+ title: string;
13
+ message: string;
14
+ timeout?: number;
15
+ } | {
16
+ kind: "input";
17
+ title: string;
18
+ placeholder?: string;
19
+ timeout?: number;
20
+ } | {
21
+ kind: "editor";
22
+ title: string;
23
+ prefill?: string;
24
+ promptStyle?: boolean;
25
+ } | {
26
+ kind: "notify";
27
+ message: string;
28
+ type?: "info" | "warning" | "error";
29
+ } | {
30
+ kind: "status";
31
+ key: string;
32
+ text: string | undefined;
33
+ } | {
34
+ kind: "widget";
35
+ key: string;
36
+ lines: string[] | undefined;
37
+ placement?: "aboveEditor" | "belowEditor";
38
+ } | {
39
+ kind: "title";
40
+ title: string;
41
+ } | {
42
+ kind: "set_editor_text";
43
+ text: string;
44
+ } | {
45
+ kind: "unsupported";
46
+ capability: string;
47
+ reason: string;
48
+ };
49
+ export type BridgeUiBroker = UiRequestBroker<BridgeUiRequestPayload, BridgeUiResult<unknown>>;
50
+ export type BridgeUiEmitter = (payload: BridgeUiRequestPayload) => void;
51
+ export declare class BridgeExtensionUIContext implements ExtensionUIContext {
52
+ #private;
53
+ constructor(options: {
54
+ broker: BridgeUiBroker;
55
+ emit: BridgeUiEmitter;
56
+ });
57
+ select(title: string, options: string[], dialogOptions?: ExtensionUIDialogOptions): Promise<string | undefined>;
58
+ confirm(title: string, message: string, dialogOptions?: ExtensionUIDialogOptions): Promise<boolean>;
59
+ input(title: string, placeholder?: string, dialogOptions?: ExtensionUIDialogOptions): Promise<string | undefined>;
60
+ notify(message: string, type?: "info" | "warning" | "error"): void;
61
+ onTerminalInput(_handler: TerminalInputHandler): () => void;
62
+ setStatus(key: string, text: string | undefined): void;
63
+ setWorkingMessage(message?: string): void;
64
+ setWidget(key: string, content: ExtensionWidgetContent, options?: ExtensionWidgetOptions): void;
65
+ setFooter(_factory?: unknown): void;
66
+ setHeader(_factory?: unknown): void;
67
+ setTitle(title: string): void;
68
+ custom<T>(): Promise<T>;
69
+ setEditorText(text: string): void;
70
+ pasteToEditor(text: string): void;
71
+ getEditorText(): string;
72
+ editor(title: string, prefill?: string, dialogOptions?: ExtensionUIDialogOptions, editorOptions?: {
73
+ promptStyle?: boolean;
74
+ }): Promise<string | undefined>;
75
+ setEditorComponent(_factory?: unknown): void;
76
+ get theme(): Theme;
77
+ getAllThemes(): Promise<{
78
+ name: string;
79
+ path: string | undefined;
80
+ }[]>;
81
+ getTheme(_name: string): Promise<Theme | undefined>;
82
+ setTheme(_theme: string | Theme): Promise<{
83
+ success: boolean;
84
+ error?: string;
85
+ }>;
86
+ getToolsExpanded(): boolean;
87
+ setToolsExpanded(_expanded: boolean): void;
88
+ }
@@ -0,0 +1,8 @@
1
+ import type { BridgeFrameEnvelope } from "../shared/agent-wire/protocol";
2
+ export declare class BridgeEventStream {
3
+ #private;
4
+ constructor(replayLimit?: number);
5
+ get frameCount(): number;
6
+ publish(frame: BridgeFrameEnvelope): void;
7
+ response(lastSeq?: number): Response;
8
+ }
@@ -1,6 +1,7 @@
1
1
  import { Editor, type KeyId } from "@gajae-code/tui";
2
2
  import type { AppKeybinding } from "../../config/keybindings";
3
3
  type ConfigurableEditorAction = Extract<AppKeybinding, "app.interrupt" | "app.clear" | "app.exit" | "app.suspend" | "app.thinking.cycle" | "app.model.cycleForward" | "app.model.cycleBackward" | "app.model.select" | "app.model.selectTemporary" | "app.tools.expand" | "app.thinking.toggle" | "app.editor.external" | "app.history.search" | "app.message.dequeue" | "app.clipboard.pasteImage" | "app.clipboard.copyPrompt">;
4
+ type PastePendingClearReason = "timeout" | "queue-limit";
4
5
  /**
5
6
  * Custom editor that handles configurable app-level shortcuts for coding-agent.
6
7
  */
@@ -25,6 +26,10 @@ export declare class CustomEditor extends Editor {
25
26
  onCopyPrompt?: () => void;
26
27
  /** Called when the configured image-paste shortcut is pressed. */
27
28
  onPasteImage?: () => Promise<boolean>;
29
+ /** Called before bracketed paste content is inserted. Return true to consume it. */
30
+ onPasteText?: (text: string) => boolean | Promise<boolean>;
31
+ /** Called when async paste handling drops queued input instead of replaying it. */
32
+ onPastePendingInputCleared?: (reason: PastePendingClearReason, droppedInputCount: number) => void;
28
33
  /** Called when the configured dequeue shortcut is pressed. */
29
34
  onDequeue?: () => void;
30
35
  /** Called when Caps Lock is pressed. */
@@ -42,6 +47,7 @@ export declare class CustomEditor extends Editor {
42
47
  * Clear all custom key handlers.
43
48
  */
44
49
  clearCustomKeyHandlers(): void;
50
+ dispose(): void;
45
51
  handleInput(data: string): void;
46
52
  }
47
53
  export {};
@@ -0,0 +1,10 @@
1
+ import { Container } from "@gajae-code/tui";
2
+ import type { ProviderSetupInput } from "../../setup/provider-onboarding";
3
+ export type CustomProviderCredentialSource = "env" | "literal";
4
+ export type CustomProviderWizardSubmit = ProviderSetupInput;
5
+ export declare class CustomProviderWizardComponent extends Container {
6
+ #private;
7
+ constructor(onSubmit: (input: CustomProviderWizardSubmit) => void, onCancel: () => void, onRender?: () => void);
8
+ setSubmitError(error: string): void;
9
+ handleInput(keyData: string): void;
10
+ }
@@ -0,0 +1,31 @@
1
+ /**
2
+ * Pure model helpers for the jobs overlay.
3
+ *
4
+ * Kept free of UI/Component dependencies so the grouping/ordering and
5
+ * detail-formatting logic is unit-testable. The selector controller wires these
6
+ * SelectItem lists into nested SelectLists (list -> detail -> confirm).
7
+ */
8
+ import type { SelectItem } from "@gajae-code/tui";
9
+ import type { JobsSnapshot } from "../jobs-observer";
10
+ export type JobRefKind = "monitor" | "cron";
11
+ export interface JobRef {
12
+ kind: JobRefKind;
13
+ id: string;
14
+ }
15
+ /** Compact relative time, e.g. "in 5m", "2m ago", "now". */
16
+ export declare function formatRelative(targetMs: number | undefined, nowMs?: number): string;
17
+ /** Parse a list item value back into a job reference. */
18
+ export declare function parseJobRef(value: string): JobRef | null;
19
+ /**
20
+ * Build the grouped jobs list: monitors first (newest-first), then crons
21
+ * (newest-first). The snapshot arrays are already sorted newest-first.
22
+ */
23
+ export declare function buildJobsListItems(snapshot: JobsSnapshot): SelectItem[];
24
+ /**
25
+ * Build the detail-level items for a job: read-only info rows (value "noop"),
26
+ * then the destructive action, then a back row. `output` is the bounded monitor
27
+ * output tail (ignored for cron jobs).
28
+ */
29
+ export declare function buildJobDetailItems(snapshot: JobsSnapshot, ref: JobRef, output?: string): SelectItem[];
30
+ /** Yes/No confirm items for a destructive action. */
31
+ export declare function buildConfirmItems(actionLabel: string): SelectItem[];
@@ -0,0 +1,30 @@
1
+ import { Container, type SelectItem, SelectList } from "@gajae-code/tui";
2
+ import type { JobsSnapshot } from "../jobs-observer";
3
+ /**
4
+ * Generic single-level selector used by the jobs overlay. The selector
5
+ * controller mounts a fresh instance per navigation level (list -> detail ->
6
+ * confirm); focus is placed on the inner SelectList, matching the existing
7
+ * selector components (e.g. ThemeSelectorComponent).
8
+ */
9
+ export declare class JobsSelectorComponent extends Container {
10
+ #private;
11
+ constructor(items: SelectItem[], onSelect: (item: SelectItem) => void, onCancel: () => void, maxVisible?: number);
12
+ getSelectList(): SelectList;
13
+ }
14
+ export interface JobsOverlayController {
15
+ acknowledgeFailures(): void;
16
+ getSnapshot(): JobsSnapshot;
17
+ getMonitorOutput(id: string): string;
18
+ cancelMonitor(id: string): boolean;
19
+ deleteCron(id: string): boolean;
20
+ }
21
+ export interface JobsOverlayCallbacks {
22
+ close(): void;
23
+ requestRender(): void;
24
+ }
25
+ export declare class JobsOverlayComponent extends Container {
26
+ #private;
27
+ constructor(controller: JobsOverlayController, callbacks: JobsOverlayCallbacks);
28
+ getFocus(): SelectList;
29
+ handleInput(data: string): void;
30
+ }
@@ -23,8 +23,12 @@ export type ModelSelectorSelection = {
23
23
  selector: string;
24
24
  preset: ModelAssignmentPreset;
25
25
  assignments: Record<GjcModelAssignmentTargetId, ThinkingLevel>;
26
+ } | {
27
+ kind: "profile";
28
+ profileName: string;
29
+ setDefault: boolean;
26
30
  };
27
- type RoleSelectCallback = (selection: ModelSelectorSelection) => void;
31
+ type RoleSelectCallback = (selection: ModelSelectorSelection) => void | Promise<void>;
28
32
  /**
29
33
  * Component that renders a canonical model selector with provider tabs.
30
34
  * - Tab/Arrow Left/Right: Switch between provider tabs
@@ -40,5 +44,6 @@ export declare class ModelSelectorComponent extends Container {
40
44
  });
41
45
  handleInput(keyData: string): void;
42
46
  getSearchInput(): Input;
47
+ __testSelectProfile(profileName: string, setDefault: boolean): Promise<void>;
43
48
  }
44
49
  export {};
@@ -1,5 +1,5 @@
1
1
  import { Container } from "@gajae-code/tui";
2
- export type ProviderOnboardingAction = "oauth-login" | "api-guide";
2
+ export type ProviderOnboardingAction = "custom-provider-wizard" | "oauth-login" | "api-guide";
3
3
  export declare class ProviderOnboardingSelectorComponent extends Container {
4
4
  #private;
5
5
  constructor(onSelect: (action: ProviderOnboardingAction) => void, onCancel: () => void);
@@ -1,5 +1,6 @@
1
1
  import type { StatusLinePreset, StatusLineSegmentId, StatusLineSeparatorStyle } from "../../../config/settings-schema";
2
2
  import type { AgentSession } from "../../../session/agent-session";
3
+ import type { JobsSnapshot } from "../../jobs-observer";
3
4
  import type { StatusLineSegmentOptions, StatusLineSettings } from "../status-line";
4
5
  export type { StatusLinePreset, StatusLineSegmentId, StatusLineSegmentOptions, StatusLineSeparatorStyle, StatusLineSettings, };
5
6
  export type RGB = readonly [number, number, number];
@@ -28,6 +29,7 @@ export interface SegmentContext {
28
29
  contextWindow: number;
29
30
  autoCompactEnabled: boolean;
30
31
  subagentCount: number;
32
+ jobs: JobsSnapshot;
31
33
  sessionStartTime: number;
32
34
  git: {
33
35
  branch: string | null;
@@ -2,6 +2,7 @@ import { type Component } from "@gajae-code/tui";
2
2
  import type { StatusLinePreset, StatusLineSegmentId, StatusLineSeparatorStyle } from "../../config/settings-schema";
3
3
  import type { AgentSession } from "../../session/agent-session";
4
4
  import { type SkillActiveEntry } from "../../skill-state/active-state";
5
+ import { type JobsSnapshot } from "../jobs-observer";
5
6
  export interface StatusLineSegmentOptions {
6
7
  model?: {
7
8
  showThinkingLevel?: boolean;
@@ -39,6 +40,7 @@ export declare class StatusLineComponent implements Component {
39
40
  updateSettings(settings: StatusLineSettings): void;
40
41
  setAutoCompactEnabled(enabled: boolean): void;
41
42
  setSubagentCount(count: number): void;
43
+ setJobs(jobs: JobsSnapshot): void;
42
44
  setSessionStartTime(time: number): void;
43
45
  setPlanModeStatus(status: {
44
46
  enabled: boolean;
@@ -17,6 +17,7 @@ export declare class InputController {
17
17
  currentText?: string;
18
18
  }): number;
19
19
  handleBackgroundCommand(): void;
20
+ handleTextPaste(text: string): boolean | Promise<boolean>;
20
21
  handleImagePaste(): Promise<boolean>;
21
22
  createAutocompleteProvider(commands: SlashCommand[], basePath: string): AutocompleteProvider;
22
23
  /** Copy the current editor line to the system clipboard. */
@@ -1,5 +1,6 @@
1
1
  import type { Component } from "@gajae-code/tui";
2
2
  import type { InteractiveModeContext } from "../../modes/types";
3
+ import type { JobsObserver } from "../jobs-observer";
3
4
  import type { SessionObserverRegistry } from "../session-observer-registry";
4
5
  export declare class SelectorController {
5
6
  #private;
@@ -14,6 +15,7 @@ export declare class SelectorController {
14
15
  focus: Component;
15
16
  }): void;
16
17
  showProviderOnboarding(): void;
18
+ showCustomProviderWizard(): void;
17
19
  showSettingsSelector(): void;
18
20
  showThemeSelector(): void;
19
21
  showHistorySearch(): void;
@@ -44,4 +46,11 @@ export declare class SelectorController {
44
46
  showOAuthSelector(mode: "login" | "logout", providerId?: string): Promise<void>;
45
47
  showDebugSelector(): void;
46
48
  showSessionObserver(registry: SessionObserverRegistry): void;
49
+ /**
50
+ * Jobs overlay: navigate ongoing monitor + cron jobs (Monitors then Crons,
51
+ * newest-first), drill into per-type detail, and cancel/delete with a y/N
52
+ * confirm. Built from nested SelectLists (list -> detail -> confirm) so focus
53
+ * stays on the active SelectList.
54
+ */
55
+ showJobsOverlay(observer: JobsObserver): void;
47
56
  }
@@ -2,6 +2,7 @@
2
2
  * Run modes for the coding agent.
3
3
  */
4
4
  export { runAcpMode } from "./acp";
5
+ export { runBridgeMode } from "./bridge/bridge-mode";
5
6
  export { InteractiveMode, type InteractiveModeOptions } from "./interactive-mode";
6
7
  export { type PrintModeOptions, runPrintMode } from "./print-mode";
7
8
  export { defineRpcClientTool, type ModelInfo, RpcClient, type RpcClientCustomTool, type RpcClientOptions, type RpcClientToolContext, type RpcClientToolResult, type RpcEventListener, } from "./rpc/rpc-client";
@@ -191,6 +191,7 @@ export declare class InteractiveMode implements InteractiveModeContext {
191
191
  handleSTTToggle(): Promise<void>;
192
192
  showDebugSelector(): void;
193
193
  showSessionObserver(): void;
194
+ showJobsOverlay(): void;
194
195
  resetObserverRegistry(): void;
195
196
  handleBashCommand(command: string, excludeFromContext?: boolean): Promise<void>;
196
197
  handlePythonCommand(code: string, excludeFromContext?: boolean): Promise<void>;
@@ -0,0 +1,57 @@
1
+ /**
2
+ * JobsObserver
3
+ *
4
+ * Single, event-driven aggregator over the two background-work sources surfaced
5
+ * by the status-line jobs widget and the jobs overlay:
6
+ * - monitor jobs (bash jobs started by the `monitor` tool, tracked in `AsyncJobManager`)
7
+ * - cron jobs (tracked in the cron module's owner-scoped schedule store)
8
+ *
9
+ * It subscribes to change hooks on both sources (no polling), debounces bursts
10
+ * to a microtask, and exposes a precomputed snapshot so the status-line render
11
+ * loop never scans the underlying stores. A failure latch keeps the widget red
12
+ * until `acknowledgeFailures()` is called (when the overlay opens), so a failed
13
+ * job that evicts before the user looks is not silently lost.
14
+ */
15
+ import type { AsyncJob, AsyncJobManager } from "../async";
16
+ export type JobsWorstState = "none" | "running" | "failed";
17
+ export interface MonitorJobView {
18
+ id: string;
19
+ label: string;
20
+ status: AsyncJob["status"];
21
+ startTime: number;
22
+ }
23
+ export interface CronJobView {
24
+ id: string;
25
+ humanSchedule: string;
26
+ cronExpression: string;
27
+ prompt: string;
28
+ recurring: boolean;
29
+ nextFireAt?: number;
30
+ createdAt: number;
31
+ }
32
+ export interface JobsSnapshot {
33
+ monitors: MonitorJobView[];
34
+ crons: CronJobView[];
35
+ activeMonitorCount: number;
36
+ activeCronCount: number;
37
+ worstState: JobsWorstState;
38
+ failedUnacknowledged: boolean;
39
+ }
40
+ export declare const EMPTY_JOBS_SNAPSHOT: JobsSnapshot;
41
+ export declare class JobsObserver {
42
+ #private;
43
+ constructor(manager: AsyncJobManager, ownerId: string | undefined);
44
+ /** Subscribe to debounced change events. Returns an unsubscribe function. */
45
+ onChange(cb: () => void): () => void;
46
+ /** Return the precomputed snapshot (recomputed on each upstream change). */
47
+ getSnapshot(): JobsSnapshot;
48
+ /** Clear the failure latch (called when the user opens the jobs overlay). */
49
+ acknowledgeFailures(): void;
50
+ /** Cancel a running monitor job. Returns true when the job was cancelled. */
51
+ cancelMonitor(id: string): boolean;
52
+ /** Delete a visible scheduled cron job. Returns true when removed. */
53
+ deleteCron(id: string): boolean;
54
+ /** Bounded tail of a monitor job's captured output (for the detail view). */
55
+ getMonitorOutput(id: string): string;
56
+ dispose(): void;
57
+ }
@@ -1,16 +1 @@
1
- import type { AgentTool, AgentToolResult, AgentToolUpdateCallback } from "@gajae-code/agent-core";
2
- import type { RpcHostToolCallRequest, RpcHostToolCancelRequest, RpcHostToolDefinition, RpcHostToolResult, RpcHostToolUpdate } from "./rpc-types";
3
- type RpcHostToolOutput = (frame: RpcHostToolCallRequest | RpcHostToolCancelRequest) => void;
4
- export declare function isRpcHostToolResult(value: unknown): value is RpcHostToolResult;
5
- export declare function isRpcHostToolUpdate(value: unknown): value is RpcHostToolUpdate;
6
- export declare class RpcHostToolBridge {
7
- #private;
8
- constructor(output: RpcHostToolOutput);
9
- getToolNames(): string[];
10
- setTools(tools: RpcHostToolDefinition[]): AgentTool[];
11
- handleResult(frame: RpcHostToolResult): boolean;
12
- handleUpdate(frame: RpcHostToolUpdate): boolean;
13
- requestExecution(definition: RpcHostToolDefinition, toolCallId: string, args: Record<string, unknown>, signal?: AbortSignal, onUpdate?: AgentToolUpdateCallback<unknown>): Promise<AgentToolResult<unknown>>;
14
- rejectAllPending(message: string): void;
15
- }
16
- export {};
1
+ export * from "../shared/agent-wire/host-tool-bridge";
@@ -1,38 +1 @@
1
- import { InternalUrlRouter } from "../../internal-urls";
2
- import type { InternalResource, InternalUrl, ResolveContext, WriteContext } from "../../internal-urls/types";
3
- import type { RpcHostUriCancelRequest, RpcHostUriRequest, RpcHostUriResult, RpcHostUriSchemeDefinition } from "./rpc-types";
4
- type RpcHostUriOutput = (frame: RpcHostUriRequest | RpcHostUriCancelRequest) => void;
5
- /** Type guard for inbound `host_uri_result` frames coming from the host. */
6
- export declare function isRpcHostUriResult(value: unknown): value is RpcHostUriResult;
7
- /**
8
- * Bidirectional bridge that lets the RPC host own a set of URI schemes.
9
- *
10
- * The host registers schemes via `set_host_uri_schemes`; the bridge installs
11
- * a `RpcHostUriProtocolHandler` per scheme into the process-global
12
- * {@link InternalUrlRouter}. Reads land on the read tool through the existing
13
- * router; writes are intercepted by the write tool and dispatched through
14
- * `requestWrite`.
15
- */
16
- export declare class RpcHostUriBridge {
17
- #private;
18
- constructor(output: RpcHostUriOutput, router?: InternalUrlRouter);
19
- getSchemes(): string[];
20
- /**
21
- * Replace the registered set of host URI schemes. Previously registered
22
- * schemes that no longer appear in the new set are unregistered from the
23
- * router; surviving and new schemes get fresh handler instances.
24
- */
25
- setSchemes(schemes: RpcHostUriSchemeDefinition[]): string[];
26
- /**
27
- * Unregister every host scheme from the router and reject any in-flight
28
- * requests. Called on RPC shutdown to keep the global router clean for
29
- * subsequent sessions in the same process (used by tests).
30
- */
31
- clear(message?: string): void;
32
- /** Resolve a pending request by id; called by `rpc-mode` on inbound results. */
33
- handleResult(frame: RpcHostUriResult): boolean;
34
- rejectAllPending(message: string): void;
35
- requestRead(scheme: string, url: InternalUrl, context?: ResolveContext): Promise<InternalResource>;
36
- requestWrite(_scheme: string, url: InternalUrl, content: string, context?: WriteContext): Promise<void>;
37
- }
38
- export {};
1
+ export * from "../shared/agent-wire/host-uri-bridge";
@@ -0,0 +1,20 @@
1
+ import type { AgentTool } from "@gajae-code/agent-core";
2
+ import type { ExtensionUIContext } from "../../../extensibility/extensions";
3
+ import type { AgentSession } from "../../../session/agent-session";
4
+ import type { RpcCommand, RpcExtensionUIRequest, RpcHostToolDefinition, RpcHostUriSchemeDefinition, RpcResponse } from "../../rpc/rpc-types";
5
+ export type RpcCommandDispatchOutput = (obj: RpcResponse | RpcExtensionUIRequest | object) => void;
6
+ export interface RpcHostToolRegistry {
7
+ setTools(tools: RpcHostToolDefinition[]): AgentTool[];
8
+ }
9
+ export interface RpcHostUriRegistry {
10
+ setSchemes(schemes: RpcHostUriSchemeDefinition[]): string[];
11
+ }
12
+ export interface RpcCommandDispatchContext {
13
+ session: AgentSession;
14
+ output: RpcCommandDispatchOutput;
15
+ hostToolRegistry: RpcHostToolRegistry;
16
+ hostUriRegistry: RpcHostUriRegistry;
17
+ createUiContext: () => Pick<ExtensionUIContext, "notify">;
18
+ }
19
+ export declare function normalizeHostToolDefinitions(tools: RpcHostToolDefinition[]): RpcHostToolDefinition[];
20
+ export declare function dispatchRpcCommand(command: RpcCommand, context: RpcCommandDispatchContext): Promise<RpcResponse>;
@@ -0,0 +1,2 @@
1
+ import type { RpcCommand } from "../../rpc/rpc-types";
2
+ export declare function isRpcCommand(value: unknown): value is RpcCommand;
@@ -0,0 +1,24 @@
1
+ import type { AgentSessionEvent } from "../../../session/agent-session";
2
+ import { type AgentSessionEventType, type BridgeEventFrame, type BridgeFrameEnvelope, type BridgeFrameType } from "./protocol";
3
+ /**
4
+ * Resolve the stable wire event-type for an `AgentSessionEvent`.
5
+ *
6
+ * Exhaustive over the union; adding a variant without a case is a type error.
7
+ */
8
+ export declare function agentSessionEventType(event: AgentSessionEvent): AgentSessionEventType;
9
+ /**
10
+ * Per-session monotonic frame builder. One instance per active session; `seq`
11
+ * starts at 1 and increments per frame so clients can order and resume.
12
+ */
13
+ export declare class BridgeFrameSequencer {
14
+ #private;
15
+ constructor(sessionId: string);
16
+ /** The session id stamped onto every frame this sequencer produces. */
17
+ get sessionId(): string;
18
+ /** The seq assigned to the most recently produced frame (0 before any). */
19
+ get lastSeq(): number;
20
+ /** Build the next envelope of the given type with a fresh seq + frame id. */
21
+ next<TType extends BridgeFrameType, TPayload>(type: TType, payload: TPayload, correlationId?: string): BridgeFrameEnvelope<TType, TPayload>;
22
+ }
23
+ /** Serialize a single `AgentSessionEvent` into an `event` wire frame. */
24
+ export declare function toBridgeEventFrame(event: AgentSessionEvent, sequencer: BridgeFrameSequencer): BridgeEventFrame;
@@ -0,0 +1,46 @@
1
+ import { BRIDGE_PROTOCOL_VERSION, type BridgeFrameType } from "./protocol";
2
+ import type { BridgeCommandScope } from "./scopes";
3
+ export type BridgeCapability = "events" | "prompt" | "permission" | "elicitation" | "ui.declarative" | "ui.editor" | "ui.terminal_input" | "host_tools" | "host_uri" | "client_bridge.read_text_file" | "client_bridge.write_text_file" | "client_bridge.create_terminal";
4
+ export interface BridgeProtocolRange {
5
+ min: number;
6
+ max: number;
7
+ }
8
+ export interface BridgeHandshakeRequest {
9
+ protocol_version_range: BridgeProtocolRange;
10
+ capabilities: BridgeCapability[];
11
+ requested_scopes: BridgeCommandScope[];
12
+ last_seq?: number;
13
+ }
14
+ export interface BridgeEndpointDescriptor {
15
+ events: string;
16
+ commands: string;
17
+ uiResponses: string;
18
+ claimControl: string;
19
+ disconnectControl: string;
20
+ hostToolResults: string;
21
+ hostUriResults: string;
22
+ }
23
+ export interface BridgeHandshakeAccepted {
24
+ status: "accepted";
25
+ protocol_version: typeof BRIDGE_PROTOCOL_VERSION;
26
+ session_id: string;
27
+ accepted_capabilities: BridgeCapability[];
28
+ accepted_scopes: BridgeCommandScope[];
29
+ unsupported: BridgeCapability[];
30
+ endpoints: BridgeEndpointDescriptor;
31
+ frame_types: BridgeFrameType[];
32
+ }
33
+ export interface BridgeHandshakeRejected {
34
+ status: "rejected";
35
+ reason: "incompatible_version" | "unauthorized" | "invalid_request";
36
+ message: string;
37
+ }
38
+ export type BridgeHandshakeResponse = BridgeHandshakeAccepted | BridgeHandshakeRejected;
39
+ export declare function isBridgeHandshakeRequest(value: unknown): value is BridgeHandshakeRequest;
40
+ export declare function negotiateBridgeHandshake(request: BridgeHandshakeRequest, server: {
41
+ sessionId: string;
42
+ capabilities: readonly BridgeCapability[];
43
+ scopes: readonly BridgeCommandScope[];
44
+ endpoints: BridgeEndpointDescriptor;
45
+ frameTypes: readonly BridgeFrameType[];
46
+ }): BridgeHandshakeResponse;
@@ -0,0 +1,16 @@
1
+ import type { AgentTool, AgentToolResult, AgentToolUpdateCallback } from "@gajae-code/agent-core";
2
+ import type { RpcHostToolCallRequest, RpcHostToolCancelRequest, RpcHostToolDefinition, RpcHostToolResult, RpcHostToolUpdate } from "../../rpc/rpc-types";
3
+ type RpcHostToolOutput = (frame: RpcHostToolCallRequest | RpcHostToolCancelRequest) => void;
4
+ export declare function isRpcHostToolResult(value: unknown): value is RpcHostToolResult;
5
+ export declare function isRpcHostToolUpdate(value: unknown): value is RpcHostToolUpdate;
6
+ export declare class RpcHostToolBridge {
7
+ #private;
8
+ constructor(output: RpcHostToolOutput);
9
+ getToolNames(): string[];
10
+ setTools(tools: RpcHostToolDefinition[]): AgentTool[];
11
+ handleResult(frame: RpcHostToolResult): boolean;
12
+ handleUpdate(frame: RpcHostToolUpdate): boolean;
13
+ requestExecution(definition: RpcHostToolDefinition, toolCallId: string, args: Record<string, unknown>, signal?: AbortSignal, onUpdate?: AgentToolUpdateCallback<unknown>): Promise<AgentToolResult<unknown>>;
14
+ rejectAllPending(message: string): void;
15
+ }
16
+ export {};
@@ -0,0 +1,17 @@
1
+ import { InternalUrlRouter } from "../../../internal-urls";
2
+ import type { InternalResource, InternalUrl, ResolveContext, WriteContext } from "../../../internal-urls/types";
3
+ import type { RpcHostUriCancelRequest, RpcHostUriRequest, RpcHostUriResult, RpcHostUriSchemeDefinition } from "../../rpc/rpc-types";
4
+ type RpcHostUriOutput = (frame: RpcHostUriRequest | RpcHostUriCancelRequest) => void;
5
+ export declare function isRpcHostUriResult(value: unknown): value is RpcHostUriResult;
6
+ export declare class RpcHostUriBridge {
7
+ #private;
8
+ constructor(output: RpcHostUriOutput, router?: InternalUrlRouter);
9
+ getSchemes(): string[];
10
+ setSchemes(schemes: RpcHostUriSchemeDefinition[]): string[];
11
+ clear(message?: string): void;
12
+ handleResult(frame: RpcHostUriResult): boolean;
13
+ rejectAllPending(message: string): void;
14
+ requestRead(scheme: string, url: InternalUrl, context?: ResolveContext): Promise<InternalResource>;
15
+ requestWrite(_scheme: string, url: InternalUrl, content: string, context?: WriteContext): Promise<void>;
16
+ }
17
+ export {};
@@ -0,0 +1,44 @@
1
+ /**
2
+ * Shared agent-wire protocol primitives for GJC bridge surfaces.
3
+ *
4
+ * This module is the transport-agnostic, versioned frame contract that the
5
+ * RPC mode and the (in-progress) `--mode bridge` wiring site both build on.
6
+ * It carries the SEMANTIC agent surface — events, responses, and UI/permission
7
+ * requests — never pixels. See `.gjc/specs/deep-interview-gjc-backend-bridge.md`
8
+ * and `.gjc/plans/ralplan/gjc-backend-bridge/pending-approval.md`.
9
+ */
10
+ import type { AgentSessionEvent } from "../../../session/agent-session";
11
+ /** Wire protocol version. Bump on breaking envelope/semantic changes. */
12
+ export declare const BRIDGE_PROTOCOL_VERSION: 1;
13
+ /** The discriminant of every `AgentSessionEvent` the agent can emit. */
14
+ export type AgentSessionEventType = AgentSessionEvent["type"];
15
+ /** Every agent-session event type, derived from the exhaustive registry. */
16
+ export declare const AGENT_SESSION_EVENT_TYPES: readonly AgentSessionEventType[];
17
+ /** Top-level frame categories carried over any bridge transport. */
18
+ export type BridgeFrameType = "ready" | "event" | "response" | "ui_request" | "permission_request" | "host_tool_call" | "host_uri_request" | "reset" | "error";
19
+ /**
20
+ * Universal frame envelope. Every frame on every transport carries these
21
+ * fields so clients can order (`seq`), resume (`seq` cursor), and correlate
22
+ * request/response pairs (`correlation_id`). `session_id` is present from v1
23
+ * even though v1 runs one session per process, so in-process multiplexing is
24
+ * an additive, non-breaking change later.
25
+ */
26
+ export interface BridgeFrameEnvelope<TType extends BridgeFrameType = BridgeFrameType, TPayload = unknown> {
27
+ protocol_version: typeof BRIDGE_PROTOCOL_VERSION;
28
+ session_id: string;
29
+ /** Monotonic per-session sequence number, starting at 1. */
30
+ seq: number;
31
+ /** Unique id for this frame. */
32
+ frame_id: string;
33
+ /** Ties a request frame to its response frame, when applicable. */
34
+ correlation_id?: string;
35
+ type: TType;
36
+ payload: TPayload;
37
+ }
38
+ /** Payload carried by an `event` frame. */
39
+ export interface BridgeEventPayload {
40
+ event_type: AgentSessionEventType;
41
+ event: AgentSessionEvent;
42
+ }
43
+ /** An `AgentSessionEvent` serialized into a versioned wire frame. */
44
+ export type BridgeEventFrame = BridgeFrameEnvelope<"event", BridgeEventPayload>;
@@ -0,0 +1,4 @@
1
+ /** Shared RPC-compatible response helpers for agent-wire consumers. */
2
+ import type { RpcCommand, RpcResponse } from "../../rpc/rpc-types";
3
+ export declare function rpcSuccess<T extends RpcCommand["type"]>(id: string | undefined, command: T, data?: object | null): RpcResponse;
4
+ export declare function rpcError(id: string | undefined, command: string, message: string): RpcResponse;
@@ -0,0 +1,18 @@
1
+ /**
2
+ * Coarse bridge authorization scopes for RPC commands.
3
+ *
4
+ * The v1 bridge exposes a network-reachable control surface, so every
5
+ * `RpcCommand` must be assigned to one coarse scope before any REST handler can
6
+ * dispatch it. The registry is intentionally typed as `Record<RpcCommandType,
7
+ * BridgeCommandScope>` so adding a new RPC command without a scope is a compile
8
+ * failure.
9
+ */
10
+ import type { RpcCommand } from "../../rpc/rpc-types";
11
+ export type RpcCommandType = RpcCommand["type"];
12
+ export type BridgeCommandScope = "prompt" | "control" | "bash" | "export" | "session" | "model" | "message:read" | "host_tools" | "host_uri" | "admin";
13
+ export declare const BRIDGE_COMMAND_SCOPES: readonly BridgeCommandScope[];
14
+ export declare const RPC_COMMAND_TYPES: readonly RpcCommandType[];
15
+ export declare function isRpcCommandType(value: unknown): value is RpcCommandType;
16
+ export declare const MANDATORY_FLOOR_COMMAND_SCOPES: readonly BridgeCommandScope[];
17
+ export declare function scopeForRpcCommand(type: RpcCommandType): BridgeCommandScope;
18
+ export declare function isRpcCommandAllowed(type: RpcCommandType, scopes: ReadonlySet<BridgeCommandScope>): boolean;