indusagi-coding-agent 0.1.59 → 0.1.60
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/CHANGELOG.md +55 -48
- package/CREDITS.md +19 -0
- package/NOTICE +7 -0
- package/README.md +65 -63
- package/dist/entry.js +19250 -0
- package/dist/types/addons/addons.test.d.ts +21 -0
- package/dist/types/addons/contract.d.ts +640 -0
- package/dist/types/addons/dispatch/event-dispatcher.d.ts +140 -0
- package/dist/types/addons/dispatch/index.d.ts +23 -0
- package/dist/types/addons/dispatch/tool-interceptor.d.ts +128 -0
- package/dist/types/addons/host.d.ts +246 -0
- package/dist/types/addons/index.d.ts +51 -0
- package/dist/types/addons/manifest.d.ts +56 -0
- package/dist/types/addons/sandbox.d.ts +103 -0
- package/dist/types/addons/surface.d.ts +42 -0
- package/dist/types/boot/auth-vault.d.ts +29 -0
- package/dist/types/boot/boot.d.ts +26 -0
- package/dist/types/boot/boot.test.d.ts +15 -0
- package/dist/types/boot/contract.d.ts +234 -0
- package/dist/types/boot/index.d.ts +20 -0
- package/dist/types/boot/invocation.d.ts +40 -0
- package/dist/types/boot/invocation.test.d.ts +8 -0
- package/dist/types/boot/runners/index.d.ts +11 -0
- package/dist/types/boot/runners/link-runner.d.ts +20 -0
- package/dist/types/boot/runners/oneshot-runner.d.ts +19 -0
- package/dist/types/boot/runners/registry.d.ts +30 -0
- package/dist/types/boot/runners/repl-runner.d.ts +19 -0
- package/dist/types/boot/runners/session-persist.test.d.ts +10 -0
- package/dist/types/boot/runners/session.d.ts +45 -0
- package/dist/types/boot/stages.d.ts +92 -0
- package/dist/types/boot/upgrade/apply.d.ts +45 -0
- package/dist/types/boot/upgrade/index.d.ts +13 -0
- package/dist/types/boot/upgrade/upgrades.d.ts +126 -0
- package/dist/types/briefing/briefing.test.d.ts +15 -0
- package/dist/types/briefing/compose.d.ts +37 -0
- package/dist/types/briefing/contract.d.ts +686 -0
- package/dist/types/briefing/index.d.ts +27 -0
- package/dist/types/briefing/macros.d.ts +206 -0
- package/dist/types/briefing/skills.d.ts +67 -0
- package/dist/types/capability-deck/bridge-ledger/index.d.ts +25 -0
- package/dist/types/capability-deck/bridge-ledger/key.d.ts +65 -0
- package/dist/types/capability-deck/bridge-ledger/ledger.d.ts +129 -0
- package/dist/types/capability-deck/bridge-ledger/network.d.ts +115 -0
- package/dist/types/capability-deck/builtin-bridge.d.ts +114 -0
- package/dist/types/capability-deck/capability-deck.test.d.ts +18 -0
- package/dist/types/capability-deck/cards/bg-process-card.d.ts +99 -0
- package/dist/types/capability-deck/cards/index.d.ts +30 -0
- package/dist/types/capability-deck/cards/memory-card.d.ts +69 -0
- package/dist/types/capability-deck/cards/saas-card.d.ts +78 -0
- package/dist/types/capability-deck/cards/task-card.d.ts +82 -0
- package/dist/types/capability-deck/cards/todo-card.d.ts +78 -0
- package/dist/types/capability-deck/contract.d.ts +317 -0
- package/dist/types/capability-deck/index.d.ts +46 -0
- package/dist/types/capability-deck/manifest.d.ts +60 -0
- package/dist/types/capability-deck/provision.d.ts +76 -0
- package/dist/types/channels/channels.test.d.ts +15 -0
- package/dist/types/channels/contract.d.ts +489 -0
- package/dist/types/channels/framer.d.ts +49 -0
- package/dist/types/channels/index.d.ts +24 -0
- package/dist/types/channels/link/dialog.d.ts +138 -0
- package/dist/types/channels/link/driver.d.ts +81 -0
- package/dist/types/channels/link/index.d.ts +13 -0
- package/dist/types/channels/link/server.d.ts +70 -0
- package/dist/types/channels/oneshot.d.ts +37 -0
- package/dist/types/channels/ops.d.ts +89 -0
- package/dist/types/channels/session-ops.d.ts +80 -0
- package/dist/types/conductor/catalog/catalog.d.ts +87 -0
- package/dist/types/conductor/catalog/index.d.ts +14 -0
- package/dist/types/conductor/catalog/matcher.d.ts +47 -0
- package/dist/types/conductor/conductor.d.ts +157 -0
- package/dist/types/conductor/conductor.test.d.ts +10 -0
- package/dist/types/conductor/contract.d.ts +547 -0
- package/dist/types/conductor/index.d.ts +23 -0
- package/dist/types/conductor/signal-hub/hub.d.ts +83 -0
- package/dist/types/conductor/signal-hub/index.d.ts +19 -0
- package/dist/types/conductor/signal-hub/translate.d.ts +74 -0
- package/dist/types/conductor/skill-parse/index.d.ts +10 -0
- package/dist/types/conductor/skill-parse/parse.d.ts +67 -0
- package/dist/types/conductor/submit.test.d.ts +28 -0
- package/dist/types/conductor/transcript-store/index.d.ts +16 -0
- package/dist/types/conductor/transcript-store/serialize.d.ts +106 -0
- package/dist/types/conductor/transcript-store/store.d.ts +170 -0
- package/dist/types/console/components/Banner.d.ts +54 -0
- package/dist/types/console/components/Composer.d.ts +37 -0
- package/dist/types/console/components/StatusBar.d.ts +31 -0
- package/dist/types/console/components/TerminalConsole.d.ts +32 -0
- package/dist/types/console/console.test.d.ts +19 -0
- package/dist/types/console/contract.d.ts +562 -0
- package/dist/types/console/index.d.ts +31 -0
- package/dist/types/console/input/complete.d.ts +120 -0
- package/dist/types/console/input/dir-reader.d.ts +28 -0
- package/dist/types/console/input/index.d.ts +24 -0
- package/dist/types/console/input/input.test.d.ts +14 -0
- package/dist/types/console/input/keymap.d.ts +184 -0
- package/dist/types/console/input/paste.d.ts +131 -0
- package/dist/types/console/mount.d.ts +53 -0
- package/dist/types/console/overlays/auth.d.ts +31 -0
- package/dist/types/console/overlays/host.d.ts +44 -0
- package/dist/types/console/overlays/index.d.ts +13 -0
- package/dist/types/console/overlays/pickers.d.ts +37 -0
- package/dist/types/console/overlays/sessions.d.ts +29 -0
- package/dist/types/console/reducer.d.ts +51 -0
- package/dist/types/console/slash/builtins.d.ts +33 -0
- package/dist/types/console/slash/commands/dynamic.d.ts +57 -0
- package/dist/types/console/slash/commands/dynamic.test.d.ts +9 -0
- package/dist/types/console/slash/commands/integrations.d.ts +28 -0
- package/dist/types/console/slash/commands/integrations.test.d.ts +18 -0
- package/dist/types/console/slash/commands/shared.d.ts +72 -0
- package/dist/types/console/slash/commands/transcript.d.ts +24 -0
- package/dist/types/console/slash/commands/transcript.test.d.ts +10 -0
- package/dist/types/console/slash/commands/workbench.d.ts +21 -0
- package/dist/types/console/slash/commands/workbench.test.d.ts +10 -0
- package/dist/types/console/slash/index.d.ts +34 -0
- package/dist/types/console/slash/registry.d.ts +90 -0
- package/dist/types/console/slash/resolve.d.ts +109 -0
- package/dist/types/console/slash/slash.test.d.ts +18 -0
- package/dist/types/console/startup.d.ts +119 -0
- package/dist/types/console/theme/adapter.d.ts +60 -0
- package/dist/types/console/theme/index.d.ts +18 -0
- package/dist/types/console/theme/palette.d.ts +42 -0
- package/dist/types/console/theme/resolve.d.ts +45 -0
- package/dist/types/console/theme/theme.test.d.ts +16 -0
- package/dist/types/console/theme/tokens.d.ts +40 -0
- package/dist/types/entry.d.ts +17 -0
- package/dist/types/index.d.ts +24 -0
- package/dist/types/insight/channel.d.ts +45 -0
- package/dist/types/insight/contract.d.ts +411 -0
- package/dist/types/insight/index.d.ts +26 -0
- package/dist/types/insight/insight.test.d.ts +17 -0
- package/dist/types/insight/recorder.d.ts +63 -0
- package/dist/types/insight/redaction.d.ts +44 -0
- package/dist/types/insight/replay.d.ts +77 -0
- package/dist/types/insight/sampling.d.ts +84 -0
- package/dist/types/insight/serialize.d.ts +54 -0
- package/dist/types/insight/sinks/console.d.ts +36 -0
- package/dist/types/insight/sinks/file.d.ts +37 -0
- package/dist/types/insight/sinks/index.d.ts +16 -0
- package/dist/types/insight/sinks/stream.d.ts +53 -0
- package/dist/types/kit/clipboard-image.d.ts +40 -0
- package/dist/types/kit/external-editor.d.ts +35 -0
- package/dist/types/kit/image.d.ts +102 -0
- package/dist/types/kit/index.d.ts +29 -0
- package/dist/types/kit/kit.test.d.ts +13 -0
- package/dist/types/kit/shell.d.ts +50 -0
- package/dist/types/kit/tool-fetch.d.ts +165 -0
- package/dist/types/launch/catalog.d.ts +51 -0
- package/dist/types/launch/contract.d.ts +385 -0
- package/dist/types/launch/credentials.d.ts +112 -0
- package/dist/types/launch/index.d.ts +28 -0
- package/dist/types/launch/invocation/attachments.d.ts +72 -0
- package/dist/types/launch/invocation/flags.d.ts +59 -0
- package/dist/types/launch/invocation/index.d.ts +23 -0
- package/dist/types/launch/invocation/read.d.ts +52 -0
- package/dist/types/launch/invocation/usage.d.ts +25 -0
- package/dist/types/launch/launch.test.d.ts +20 -0
- package/dist/types/launch/oauth.d.ts +88 -0
- package/dist/types/launch/packages.d.ts +75 -0
- package/dist/types/launch/packages.test.d.ts +15 -0
- package/dist/types/launch/pickers.d.ts +97 -0
- package/dist/types/runtime-bridge/bridges/_drive.d.ts +74 -0
- package/dist/types/runtime-bridge/bridges/builtins.d.ts +77 -0
- package/dist/types/runtime-bridge/bridges/claude-cli.d.ts +37 -0
- package/dist/types/runtime-bridge/bridges/codex-cli.d.ts +27 -0
- package/dist/types/runtime-bridge/bridges/index.d.ts +15 -0
- package/dist/types/runtime-bridge/bridges/indusagi-cli.d.ts +36 -0
- package/dist/types/runtime-bridge/broker.d.ts +182 -0
- package/dist/types/runtime-bridge/contract.d.ts +436 -0
- package/dist/types/runtime-bridge/index.d.ts +21 -0
- package/dist/types/runtime-bridge/runtime-bridge.test.d.ts +17 -0
- package/dist/types/runtime-bridge/sink.d.ts +59 -0
- package/dist/types/sessions/contract.d.ts +79 -0
- package/dist/types/sessions/index.d.ts +11 -0
- package/dist/types/sessions/library.d.ts +95 -0
- package/dist/types/sessions/sessions.test.d.ts +11 -0
- package/dist/types/settings/contract.d.ts +116 -0
- package/dist/types/settings/index.d.ts +13 -0
- package/dist/types/settings/manager.d.ts +109 -0
- package/dist/types/settings/settings.test.d.ts +16 -0
- package/dist/types/transcript-export/index.d.ts +20 -0
- package/dist/types/transcript-export/publish.d.ts +81 -0
- package/dist/types/transcript-export/sgr.d.ts +90 -0
- package/dist/types/transcript-export/template.d.ts +64 -0
- package/dist/types/transcript-export/theme-bridge.d.ts +99 -0
- package/dist/types/transcript-export/transcript-export.test.d.ts +16 -0
- package/dist/types/window-budget/budget/estimate.d.ts +47 -0
- package/dist/types/window-budget/budget/gate.d.ts +37 -0
- package/dist/types/window-budget/budget/index.d.ts +14 -0
- package/dist/types/window-budget/budget/slice.d.ts +38 -0
- package/dist/types/window-budget/condenser.d.ts +59 -0
- package/dist/types/window-budget/contract.d.ts +182 -0
- package/dist/types/window-budget/index.d.ts +15 -0
- package/dist/types/window-budget/summarize/condense.d.ts +70 -0
- package/dist/types/window-budget/summarize/index.d.ts +12 -0
- package/dist/types/window-budget/summarize/prompt.d.ts +56 -0
- package/dist/types/window-budget/window-budget.test.d.ts +18 -0
- package/dist/types/workspace/brand.d.ts +20 -0
- package/dist/types/workspace/index.d.ts +11 -0
- package/dist/types/workspace/locator.d.ts +50 -0
- package/dist/types/workspace/runtime-detect.d.ts +56 -0
- package/package.json +43 -62
- package/LICENSE +0 -8
- package/LICENSE-THIRD-PARTY.txt +0 -30
- package/demos/README.md +0 -12
- package/dist/cli.d.ts +0 -3
- package/dist/cli.d.ts.map +0 -1
- package/dist/cli.js +0 -30
- package/dist/cli.js.map +0 -1
- package/dist/command-line/args.d.ts +0 -59
- package/dist/command-line/args.d.ts.map +0 -1
- package/dist/command-line/args.js +0 -332
- package/dist/command-line/args.js.map +0 -1
- package/dist/command-line/config-selector.d.ts +0 -17
- package/dist/command-line/config-selector.d.ts.map +0 -1
- package/dist/command-line/config-selector.js +0 -34
- package/dist/command-line/config-selector.js.map +0 -1
- package/dist/command-line/file-processor.d.ts +0 -15
- package/dist/command-line/file-processor.d.ts.map +0 -1
- package/dist/command-line/file-processor.js +0 -73
- package/dist/command-line/file-processor.js.map +0 -1
- package/dist/command-line/list-models.d.ts +0 -9
- package/dist/command-line/list-models.d.ts.map +0 -1
- package/dist/command-line/list-models.js +0 -74
- package/dist/command-line/list-models.js.map +0 -1
- package/dist/command-line/login-handler.d.ts +0 -94
- package/dist/command-line/login-handler.d.ts.map +0 -1
- package/dist/command-line/login-handler.js +0 -794
- package/dist/command-line/login-handler.js.map +0 -1
- package/dist/command-line/session-picker.d.ts +0 -10
- package/dist/command-line/session-picker.d.ts.map +0 -1
- package/dist/command-line/session-picker.js +0 -60
- package/dist/command-line/session-picker.js.map +0 -1
- package/dist/config.d.ts +0 -31
- package/dist/config.d.ts.map +0 -1
- package/dist/config.js +0 -143
- package/dist/config.js.map +0 -1
- package/dist/dev/observe-deep.d.ts +0 -2
- package/dist/dev/observe-deep.d.ts.map +0 -1
- package/dist/dev/observe-deep.js +0 -333
- package/dist/dev/observe-deep.js.map +0 -1
- package/dist/dev/observe-smoke.d.ts +0 -2
- package/dist/dev/observe-smoke.d.ts.map +0 -1
- package/dist/dev/observe-smoke.js +0 -264
- package/dist/dev/observe-smoke.js.map +0 -1
- package/dist/helpers/array.d.ts +0 -438
- package/dist/helpers/array.d.ts.map +0 -1
- package/dist/helpers/array.js +0 -692
- package/dist/helpers/array.js.map +0 -1
- package/dist/helpers/changelog.d.ts +0 -20
- package/dist/helpers/changelog.d.ts.map +0 -1
- package/dist/helpers/changelog.js +0 -79
- package/dist/helpers/changelog.js.map +0 -1
- package/dist/helpers/clipboard-image.d.ts +0 -11
- package/dist/helpers/clipboard-image.d.ts.map +0 -1
- package/dist/helpers/clipboard-image.js +0 -111
- package/dist/helpers/clipboard-image.js.map +0 -1
- package/dist/helpers/clipboard.d.ts +0 -2
- package/dist/helpers/clipboard.d.ts.map +0 -1
- package/dist/helpers/clipboard.js +0 -72
- package/dist/helpers/clipboard.js.map +0 -1
- package/dist/helpers/color-formatter.d.ts +0 -318
- package/dist/helpers/color-formatter.d.ts.map +0 -1
- package/dist/helpers/color-formatter.js +0 -469
- package/dist/helpers/color-formatter.js.map +0 -1
- package/dist/helpers/data-transformer.d.ts +0 -391
- package/dist/helpers/data-transformer.d.ts.map +0 -1
- package/dist/helpers/data-transformer.js +0 -604
- package/dist/helpers/data-transformer.js.map +0 -1
- package/dist/helpers/date-formatter.d.ts +0 -316
- package/dist/helpers/date-formatter.d.ts.map +0 -1
- package/dist/helpers/date-formatter.js +0 -553
- package/dist/helpers/date-formatter.js.map +0 -1
- package/dist/helpers/error-handler.d.ts +0 -541
- package/dist/helpers/error-handler.d.ts.map +0 -1
- package/dist/helpers/error-handler.js +0 -726
- package/dist/helpers/error-handler.js.map +0 -1
- package/dist/helpers/file-operations.d.ts +0 -324
- package/dist/helpers/file-operations.d.ts.map +0 -1
- package/dist/helpers/file-operations.js +0 -543
- package/dist/helpers/file-operations.js.map +0 -1
- package/dist/helpers/frontmatter.d.ts +0 -273
- package/dist/helpers/frontmatter.d.ts.map +0 -1
- package/dist/helpers/frontmatter.js +0 -580
- package/dist/helpers/frontmatter.js.map +0 -1
- package/dist/helpers/git.d.ts +0 -2
- package/dist/helpers/git.d.ts.map +0 -1
- package/dist/helpers/git.js +0 -6
- package/dist/helpers/git.js.map +0 -1
- package/dist/helpers/image-convert.d.ts +0 -9
- package/dist/helpers/image-convert.d.ts.map +0 -1
- package/dist/helpers/image-convert.js +0 -41
- package/dist/helpers/image-convert.js.map +0 -1
- package/dist/helpers/image-resize.d.ts +0 -19
- package/dist/helpers/image-resize.d.ts.map +0 -1
- package/dist/helpers/image-resize.js +0 -143
- package/dist/helpers/image-resize.js.map +0 -1
- package/dist/helpers/json-formatter.d.ts +0 -267
- package/dist/helpers/json-formatter.d.ts.map +0 -1
- package/dist/helpers/json-formatter.js +0 -533
- package/dist/helpers/json-formatter.js.map +0 -1
- package/dist/helpers/logger.d.ts +0 -176
- package/dist/helpers/logger.d.ts.map +0 -1
- package/dist/helpers/logger.js +0 -346
- package/dist/helpers/logger.js.map +0 -1
- package/dist/helpers/markdown-formatter.d.ts +0 -235
- package/dist/helpers/markdown-formatter.d.ts.map +0 -1
- package/dist/helpers/markdown-formatter.js +0 -633
- package/dist/helpers/markdown-formatter.js.map +0 -1
- package/dist/helpers/mime.d.ts +0 -3
- package/dist/helpers/mime.d.ts.map +0 -1
- package/dist/helpers/mime.js +0 -46
- package/dist/helpers/mime.js.map +0 -1
- package/dist/helpers/open-auth-url.d.ts +0 -2
- package/dist/helpers/open-auth-url.d.ts.map +0 -1
- package/dist/helpers/open-auth-url.js +0 -59
- package/dist/helpers/open-auth-url.js.map +0 -1
- package/dist/helpers/path-validator.d.ts +0 -603
- package/dist/helpers/path-validator.d.ts.map +0 -1
- package/dist/helpers/path-validator.js +0 -895
- package/dist/helpers/path-validator.js.map +0 -1
- package/dist/helpers/photon.d.ts +0 -10
- package/dist/helpers/photon.d.ts.map +0 -1
- package/dist/helpers/photon.js +0 -132
- package/dist/helpers/photon.js.map +0 -1
- package/dist/helpers/shell.d.ts +0 -10
- package/dist/helpers/shell.d.ts.map +0 -1
- package/dist/helpers/shell.js +0 -142
- package/dist/helpers/shell.js.map +0 -1
- package/dist/helpers/sleep.d.ts +0 -5
- package/dist/helpers/sleep.d.ts.map +0 -1
- package/dist/helpers/sleep.js +0 -41
- package/dist/helpers/sleep.js.map +0 -1
- package/dist/helpers/string-formatter.d.ts +0 -609
- package/dist/helpers/string-formatter.d.ts.map +0 -1
- package/dist/helpers/string-formatter.js +0 -807
- package/dist/helpers/string-formatter.js.map +0 -1
- package/dist/helpers/tools-manager.d.ts +0 -5
- package/dist/helpers/tools-manager.d.ts.map +0 -1
- package/dist/helpers/tools-manager.js +0 -161
- package/dist/helpers/tools-manager.js.map +0 -1
- package/dist/helpers/type-guards.d.ts +0 -634
- package/dist/helpers/type-guards.d.ts.map +0 -1
- package/dist/helpers/type-guards.js +0 -671
- package/dist/helpers/type-guards.js.map +0 -1
- package/dist/index.d.ts +0 -41
- package/dist/index.d.ts.map +0 -1
- package/dist/index.js +0 -40
- package/dist/index.js.map +0 -1
- package/dist/interfaces/index.d.ts +0 -16
- package/dist/interfaces/index.d.ts.map +0 -1
- package/dist/interfaces/index.js +0 -14
- package/dist/interfaces/index.js.map +0 -1
- package/dist/interfaces/print-mode.d.ts +0 -561
- package/dist/interfaces/print-mode.d.ts.map +0 -1
- package/dist/interfaces/print-mode.js +0 -633
- package/dist/interfaces/print-mode.js.map +0 -1
- package/dist/interfaces/react-ink/adapters/command-router.d.ts +0 -19
- package/dist/interfaces/react-ink/adapters/command-router.d.ts.map +0 -1
- package/dist/interfaces/react-ink/adapters/command-router.js +0 -674
- package/dist/interfaces/react-ink/adapters/command-router.js.map +0 -1
- package/dist/interfaces/react-ink/adapters/session-events.d.ts +0 -5
- package/dist/interfaces/react-ink/adapters/session-events.d.ts.map +0 -1
- package/dist/interfaces/react-ink/adapters/session-events.js +0 -255
- package/dist/interfaces/react-ink/adapters/session-events.js.map +0 -1
- package/dist/interfaces/react-ink/adapters/session-history.d.ts +0 -14
- package/dist/interfaces/react-ink/adapters/session-history.d.ts.map +0 -1
- package/dist/interfaces/react-ink/adapters/session-history.js +0 -83
- package/dist/interfaces/react-ink/adapters/session-history.js.map +0 -1
- package/dist/interfaces/react-ink/adapters/tool-state.d.ts +0 -4
- package/dist/interfaces/react-ink/adapters/tool-state.d.ts.map +0 -1
- package/dist/interfaces/react-ink/adapters/tool-state.js +0 -67
- package/dist/interfaces/react-ink/adapters/tool-state.js.map +0 -1
- package/dist/interfaces/react-ink/components/AppShell.d.ts +0 -17
- package/dist/interfaces/react-ink/components/AppShell.d.ts.map +0 -1
- package/dist/interfaces/react-ink/components/AppShell.js +0 -1535
- package/dist/interfaces/react-ink/components/AppShell.js.map +0 -1
- package/dist/interfaces/react-ink/components/ChangelogBlock.d.ts +0 -9
- package/dist/interfaces/react-ink/components/ChangelogBlock.d.ts.map +0 -1
- package/dist/interfaces/react-ink/components/ChangelogBlock.js +0 -58
- package/dist/interfaces/react-ink/components/ChangelogBlock.js.map +0 -1
- package/dist/interfaces/react-ink/components/DisplayBlockView.d.ts +0 -9
- package/dist/interfaces/react-ink/components/DisplayBlockView.d.ts.map +0 -1
- package/dist/interfaces/react-ink/components/DisplayBlockView.js +0 -11
- package/dist/interfaces/react-ink/components/DisplayBlockView.js.map +0 -1
- package/dist/interfaces/react-ink/components/Footer.d.ts +0 -12
- package/dist/interfaces/react-ink/components/Footer.d.ts.map +0 -1
- package/dist/interfaces/react-ink/components/Footer.js +0 -88
- package/dist/interfaces/react-ink/components/Footer.js.map +0 -1
- package/dist/interfaces/react-ink/components/Header.d.ts +0 -14
- package/dist/interfaces/react-ink/components/Header.d.ts.map +0 -1
- package/dist/interfaces/react-ink/components/Header.js +0 -24
- package/dist/interfaces/react-ink/components/Header.js.map +0 -1
- package/dist/interfaces/react-ink/components/MessageList.d.ts +0 -14
- package/dist/interfaces/react-ink/components/MessageList.d.ts.map +0 -1
- package/dist/interfaces/react-ink/components/MessageList.js +0 -43
- package/dist/interfaces/react-ink/components/MessageList.js.map +0 -1
- package/dist/interfaces/react-ink/components/MessageRow.d.ts +0 -13
- package/dist/interfaces/react-ink/components/MessageRow.d.ts.map +0 -1
- package/dist/interfaces/react-ink/components/MessageRow.js +0 -35
- package/dist/interfaces/react-ink/components/MessageRow.js.map +0 -1
- package/dist/interfaces/react-ink/components/PromptInput.d.ts +0 -35
- package/dist/interfaces/react-ink/components/PromptInput.d.ts.map +0 -1
- package/dist/interfaces/react-ink/components/PromptInput.js +0 -458
- package/dist/interfaces/react-ink/components/PromptInput.js.map +0 -1
- package/dist/interfaces/react-ink/components/StartupDiagnosticsBlock.d.ts +0 -9
- package/dist/interfaces/react-ink/components/StartupDiagnosticsBlock.d.ts.map +0 -1
- package/dist/interfaces/react-ink/components/StartupDiagnosticsBlock.js +0 -14
- package/dist/interfaces/react-ink/components/StartupDiagnosticsBlock.js.map +0 -1
- package/dist/interfaces/react-ink/components/StatusLine.d.ts +0 -10
- package/dist/interfaces/react-ink/components/StatusLine.d.ts.map +0 -1
- package/dist/interfaces/react-ink/components/StatusLine.js +0 -39
- package/dist/interfaces/react-ink/components/StatusLine.js.map +0 -1
- package/dist/interfaces/react-ink/components/TaskPanel.d.ts +0 -10
- package/dist/interfaces/react-ink/components/TaskPanel.d.ts.map +0 -1
- package/dist/interfaces/react-ink/components/TaskPanel.js +0 -23
- package/dist/interfaces/react-ink/components/TaskPanel.js.map +0 -1
- package/dist/interfaces/react-ink/components/ToolEventBlock.d.ts +0 -18
- package/dist/interfaces/react-ink/components/ToolEventBlock.d.ts.map +0 -1
- package/dist/interfaces/react-ink/components/ToolEventBlock.js +0 -61
- package/dist/interfaces/react-ink/components/ToolEventBlock.js.map +0 -1
- package/dist/interfaces/react-ink/components/dialogs/DialogFrame.d.ts +0 -9
- package/dist/interfaces/react-ink/components/dialogs/DialogFrame.d.ts.map +0 -1
- package/dist/interfaces/react-ink/components/dialogs/DialogFrame.js +0 -6
- package/dist/interfaces/react-ink/components/dialogs/DialogFrame.js.map +0 -1
- package/dist/interfaces/react-ink/components/dialogs/LoginDialog.d.ts +0 -15
- package/dist/interfaces/react-ink/components/dialogs/LoginDialog.d.ts.map +0 -1
- package/dist/interfaces/react-ink/components/dialogs/LoginDialog.js +0 -10
- package/dist/interfaces/react-ink/components/dialogs/LoginDialog.js.map +0 -1
- package/dist/interfaces/react-ink/components/dialogs/ModelDialog.d.ts +0 -10
- package/dist/interfaces/react-ink/components/dialogs/ModelDialog.d.ts.map +0 -1
- package/dist/interfaces/react-ink/components/dialogs/ModelDialog.js +0 -64
- package/dist/interfaces/react-ink/components/dialogs/ModelDialog.js.map +0 -1
- package/dist/interfaces/react-ink/components/dialogs/OAuthDialog.d.ts +0 -10
- package/dist/interfaces/react-ink/components/dialogs/OAuthDialog.d.ts.map +0 -1
- package/dist/interfaces/react-ink/components/dialogs/OAuthDialog.js +0 -24
- package/dist/interfaces/react-ink/components/dialogs/OAuthDialog.js.map +0 -1
- package/dist/interfaces/react-ink/components/dialogs/ScopedModelsDialog.d.ts +0 -10
- package/dist/interfaces/react-ink/components/dialogs/ScopedModelsDialog.d.ts.map +0 -1
- package/dist/interfaces/react-ink/components/dialogs/ScopedModelsDialog.js +0 -95
- package/dist/interfaces/react-ink/components/dialogs/ScopedModelsDialog.js.map +0 -1
- package/dist/interfaces/react-ink/components/dialogs/SelectableDialog.d.ts +0 -17
- package/dist/interfaces/react-ink/components/dialogs/SelectableDialog.d.ts.map +0 -1
- package/dist/interfaces/react-ink/components/dialogs/SelectableDialog.js +0 -66
- package/dist/interfaces/react-ink/components/dialogs/SelectableDialog.js.map +0 -1
- package/dist/interfaces/react-ink/components/dialogs/SessionDialog.d.ts +0 -11
- package/dist/interfaces/react-ink/components/dialogs/SessionDialog.d.ts.map +0 -1
- package/dist/interfaces/react-ink/components/dialogs/SessionDialog.js +0 -10
- package/dist/interfaces/react-ink/components/dialogs/SessionDialog.js.map +0 -1
- package/dist/interfaces/react-ink/components/dialogs/SettingsDialog.d.ts +0 -15
- package/dist/interfaces/react-ink/components/dialogs/SettingsDialog.d.ts.map +0 -1
- package/dist/interfaces/react-ink/components/dialogs/SettingsDialog.js +0 -79
- package/dist/interfaces/react-ink/components/dialogs/SettingsDialog.js.map +0 -1
- package/dist/interfaces/react-ink/components/dialogs/StartupSessionPicker.d.ts +0 -10
- package/dist/interfaces/react-ink/components/dialogs/StartupSessionPicker.d.ts.map +0 -1
- package/dist/interfaces/react-ink/components/dialogs/StartupSessionPicker.js +0 -99
- package/dist/interfaces/react-ink/components/dialogs/StartupSessionPicker.js.map +0 -1
- package/dist/interfaces/react-ink/components/dialogs/ThemeDialog.d.ts +0 -8
- package/dist/interfaces/react-ink/components/dialogs/ThemeDialog.d.ts.map +0 -1
- package/dist/interfaces/react-ink/components/dialogs/ThemeDialog.js +0 -7
- package/dist/interfaces/react-ink/components/dialogs/ThemeDialog.js.map +0 -1
- package/dist/interfaces/react-ink/components/dialogs/TreeDialog.d.ts +0 -9
- package/dist/interfaces/react-ink/components/dialogs/TreeDialog.d.ts.map +0 -1
- package/dist/interfaces/react-ink/components/dialogs/TreeDialog.js +0 -7
- package/dist/interfaces/react-ink/components/dialogs/TreeDialog.js.map +0 -1
- package/dist/interfaces/react-ink/components/dialogs/UserMessageDialog.d.ts +0 -9
- package/dist/interfaces/react-ink/components/dialogs/UserMessageDialog.d.ts.map +0 -1
- package/dist/interfaces/react-ink/components/dialogs/UserMessageDialog.js +0 -7
- package/dist/interfaces/react-ink/components/dialogs/UserMessageDialog.js.map +0 -1
- package/dist/interfaces/react-ink/components/extensions/ExtensionComponentHost.d.ts +0 -30
- package/dist/interfaces/react-ink/components/extensions/ExtensionComponentHost.d.ts.map +0 -1
- package/dist/interfaces/react-ink/components/extensions/ExtensionComponentHost.js +0 -106
- package/dist/interfaces/react-ink/components/extensions/ExtensionComponentHost.js.map +0 -1
- package/dist/interfaces/react-ink/components/extensions/ExtensionDialogs.d.ts +0 -20
- package/dist/interfaces/react-ink/components/extensions/ExtensionDialogs.d.ts.map +0 -1
- package/dist/interfaces/react-ink/components/extensions/ExtensionDialogs.js +0 -145
- package/dist/interfaces/react-ink/components/extensions/ExtensionDialogs.js.map +0 -1
- package/dist/interfaces/react-ink/components/messages/AssistantMessage.d.ts +0 -12
- package/dist/interfaces/react-ink/components/messages/AssistantMessage.d.ts.map +0 -1
- package/dist/interfaces/react-ink/components/messages/AssistantMessage.js +0 -20
- package/dist/interfaces/react-ink/components/messages/AssistantMessage.js.map +0 -1
- package/dist/interfaces/react-ink/components/messages/BashMessage.d.ts +0 -9
- package/dist/interfaces/react-ink/components/messages/BashMessage.d.ts.map +0 -1
- package/dist/interfaces/react-ink/components/messages/BashMessage.js +0 -11
- package/dist/interfaces/react-ink/components/messages/BashMessage.js.map +0 -1
- package/dist/interfaces/react-ink/components/messages/BranchSummaryMessage.d.ts +0 -9
- package/dist/interfaces/react-ink/components/messages/BranchSummaryMessage.d.ts.map +0 -1
- package/dist/interfaces/react-ink/components/messages/BranchSummaryMessage.js +0 -6
- package/dist/interfaces/react-ink/components/messages/BranchSummaryMessage.js.map +0 -1
- package/dist/interfaces/react-ink/components/messages/CompactionMessage.d.ts +0 -9
- package/dist/interfaces/react-ink/components/messages/CompactionMessage.d.ts.map +0 -1
- package/dist/interfaces/react-ink/components/messages/CompactionMessage.js +0 -6
- package/dist/interfaces/react-ink/components/messages/CompactionMessage.js.map +0 -1
- package/dist/interfaces/react-ink/components/messages/CustomMessage.d.ts +0 -10
- package/dist/interfaces/react-ink/components/messages/CustomMessage.d.ts.map +0 -1
- package/dist/interfaces/react-ink/components/messages/CustomMessage.js +0 -9
- package/dist/interfaces/react-ink/components/messages/CustomMessage.js.map +0 -1
- package/dist/interfaces/react-ink/components/messages/SkillInvocationMessage.d.ts +0 -8
- package/dist/interfaces/react-ink/components/messages/SkillInvocationMessage.d.ts.map +0 -1
- package/dist/interfaces/react-ink/components/messages/SkillInvocationMessage.js +0 -10
- package/dist/interfaces/react-ink/components/messages/SkillInvocationMessage.js.map +0 -1
- package/dist/interfaces/react-ink/components/messages/ToolCallMessage.d.ts +0 -9
- package/dist/interfaces/react-ink/components/messages/ToolCallMessage.d.ts.map +0 -1
- package/dist/interfaces/react-ink/components/messages/ToolCallMessage.js +0 -8
- package/dist/interfaces/react-ink/components/messages/ToolCallMessage.js.map +0 -1
- package/dist/interfaces/react-ink/components/messages/ToolResultBlock.d.ts +0 -12
- package/dist/interfaces/react-ink/components/messages/ToolResultBlock.d.ts.map +0 -1
- package/dist/interfaces/react-ink/components/messages/ToolResultBlock.js +0 -8
- package/dist/interfaces/react-ink/components/messages/ToolResultBlock.js.map +0 -1
- package/dist/interfaces/react-ink/components/messages/UserMessage.d.ts +0 -10
- package/dist/interfaces/react-ink/components/messages/UserMessage.d.ts.map +0 -1
- package/dist/interfaces/react-ink/components/messages/UserMessage.js +0 -7
- package/dist/interfaces/react-ink/components/messages/UserMessage.js.map +0 -1
- package/dist/interfaces/react-ink/hooks/use-agent-session.d.ts +0 -8
- package/dist/interfaces/react-ink/hooks/use-agent-session.d.ts.map +0 -1
- package/dist/interfaces/react-ink/hooks/use-agent-session.js +0 -34
- package/dist/interfaces/react-ink/hooks/use-agent-session.js.map +0 -1
- package/dist/interfaces/react-ink/hooks/use-app-keybindings.d.ts +0 -12
- package/dist/interfaces/react-ink/hooks/use-app-keybindings.d.ts.map +0 -1
- package/dist/interfaces/react-ink/hooks/use-app-keybindings.js +0 -17
- package/dist/interfaces/react-ink/hooks/use-app-keybindings.js.map +0 -1
- package/dist/interfaces/react-ink/hooks/use-footer-data.d.ts +0 -7
- package/dist/interfaces/react-ink/hooks/use-footer-data.d.ts.map +0 -1
- package/dist/interfaces/react-ink/hooks/use-footer-data.js +0 -17
- package/dist/interfaces/react-ink/hooks/use-footer-data.js.map +0 -1
- package/dist/interfaces/react-ink/hooks/use-prompt-submit.d.ts +0 -17
- package/dist/interfaces/react-ink/hooks/use-prompt-submit.d.ts.map +0 -1
- package/dist/interfaces/react-ink/hooks/use-prompt-submit.js +0 -66
- package/dist/interfaces/react-ink/hooks/use-prompt-submit.js.map +0 -1
- package/dist/interfaces/react-ink/hooks/use-session-history.d.ts +0 -8
- package/dist/interfaces/react-ink/hooks/use-session-history.d.ts.map +0 -1
- package/dist/interfaces/react-ink/hooks/use-session-history.js +0 -8
- package/dist/interfaces/react-ink/hooks/use-session-history.js.map +0 -1
- package/dist/interfaces/react-ink/index.d.ts +0 -8
- package/dist/interfaces/react-ink/index.d.ts.map +0 -1
- package/dist/interfaces/react-ink/index.js +0 -8
- package/dist/interfaces/react-ink/index.js.map +0 -1
- package/dist/interfaces/react-ink/interactive-mode.d.ts +0 -24
- package/dist/interfaces/react-ink/interactive-mode.d.ts.map +0 -1
- package/dist/interfaces/react-ink/interactive-mode.js +0 -57
- package/dist/interfaces/react-ink/interactive-mode.js.map +0 -1
- package/dist/interfaces/react-ink/render-root.d.ts +0 -19
- package/dist/interfaces/react-ink/render-root.d.ts.map +0 -1
- package/dist/interfaces/react-ink/render-root.js +0 -6
- package/dist/interfaces/react-ink/render-root.js.map +0 -1
- package/dist/interfaces/react-ink/state/reducer.d.ts +0 -51
- package/dist/interfaces/react-ink/state/reducer.d.ts.map +0 -1
- package/dist/interfaces/react-ink/state/reducer.js +0 -122
- package/dist/interfaces/react-ink/state/reducer.js.map +0 -1
- package/dist/interfaces/react-ink/state/store.d.ts +0 -4
- package/dist/interfaces/react-ink/state/store.d.ts.map +0 -1
- package/dist/interfaces/react-ink/state/store.js +0 -5
- package/dist/interfaces/react-ink/state/store.js.map +0 -1
- package/dist/interfaces/react-ink/state/ui-state.d.ts +0 -5
- package/dist/interfaces/react-ink/state/ui-state.d.ts.map +0 -1
- package/dist/interfaces/react-ink/state/ui-state.js +0 -20
- package/dist/interfaces/react-ink/state/ui-state.js.map +0 -1
- package/dist/interfaces/react-ink/theme-adapter.d.ts +0 -4
- package/dist/interfaces/react-ink/theme-adapter.d.ts.map +0 -1
- package/dist/interfaces/react-ink/theme-adapter.js +0 -15
- package/dist/interfaces/react-ink/theme-adapter.js.map +0 -1
- package/dist/interfaces/react-ink/types.d.ts +0 -51
- package/dist/interfaces/react-ink/types.d.ts.map +0 -1
- package/dist/interfaces/react-ink/types.js +0 -2
- package/dist/interfaces/react-ink/types.js.map +0 -1
- package/dist/interfaces/react-ink/utils/changelog.d.ts +0 -7
- package/dist/interfaces/react-ink/utils/changelog.d.ts.map +0 -1
- package/dist/interfaces/react-ink/utils/changelog.js +0 -40
- package/dist/interfaces/react-ink/utils/changelog.js.map +0 -1
- package/dist/interfaces/react-ink/utils/key-data.d.ts +0 -22
- package/dist/interfaces/react-ink/utils/key-data.d.ts.map +0 -1
- package/dist/interfaces/react-ink/utils/key-data.js +0 -123
- package/dist/interfaces/react-ink/utils/key-data.js.map +0 -1
- package/dist/interfaces/react-ink/utils/message-groups.d.ts +0 -26
- package/dist/interfaces/react-ink/utils/message-groups.d.ts.map +0 -1
- package/dist/interfaces/react-ink/utils/message-groups.js +0 -230
- package/dist/interfaces/react-ink/utils/message-groups.js.map +0 -1
- package/dist/interfaces/react-ink/utils/prompt-autocomplete.d.ts +0 -20
- package/dist/interfaces/react-ink/utils/prompt-autocomplete.d.ts.map +0 -1
- package/dist/interfaces/react-ink/utils/prompt-autocomplete.js +0 -46
- package/dist/interfaces/react-ink/utils/prompt-autocomplete.js.map +0 -1
- package/dist/interfaces/react-ink/utils/selection-dialog.d.ts +0 -3
- package/dist/interfaces/react-ink/utils/selection-dialog.d.ts.map +0 -1
- package/dist/interfaces/react-ink/utils/selection-dialog.js +0 -18
- package/dist/interfaces/react-ink/utils/selection-dialog.js.map +0 -1
- package/dist/interfaces/react-ink/utils/session-actions.d.ts +0 -10
- package/dist/interfaces/react-ink/utils/session-actions.d.ts.map +0 -1
- package/dist/interfaces/react-ink/utils/session-actions.js +0 -66
- package/dist/interfaces/react-ink/utils/session-actions.js.map +0 -1
- package/dist/interfaces/react-ink/utils/slash-commands.d.ts +0 -10
- package/dist/interfaces/react-ink/utils/slash-commands.d.ts.map +0 -1
- package/dist/interfaces/react-ink/utils/slash-commands.js +0 -111
- package/dist/interfaces/react-ink/utils/slash-commands.js.map +0 -1
- package/dist/interfaces/react-ink/utils/startup-diagnostics.d.ts +0 -7
- package/dist/interfaces/react-ink/utils/startup-diagnostics.d.ts.map +0 -1
- package/dist/interfaces/react-ink/utils/startup-diagnostics.js +0 -111
- package/dist/interfaces/react-ink/utils/startup-diagnostics.js.map +0 -1
- package/dist/interfaces/react-ink/utils/tool-display.d.ts +0 -22
- package/dist/interfaces/react-ink/utils/tool-display.d.ts.map +0 -1
- package/dist/interfaces/react-ink/utils/tool-display.js +0 -349
- package/dist/interfaces/react-ink/utils/tool-display.js.map +0 -1
- package/dist/interfaces/service-api/rpc-client.d.ts +0 -1129
- package/dist/interfaces/service-api/rpc-client.d.ts.map +0 -1
- package/dist/interfaces/service-api/rpc-client.js +0 -1333
- package/dist/interfaces/service-api/rpc-client.js.map +0 -1
- package/dist/interfaces/service-api/rpc-mode.d.ts +0 -813
- package/dist/interfaces/service-api/rpc-mode.d.ts.map +0 -1
- package/dist/interfaces/service-api/rpc-mode.js +0 -1229
- package/dist/interfaces/service-api/rpc-mode.js.map +0 -1
- package/dist/interfaces/service-api/rpc-types.d.ts +0 -392
- package/dist/interfaces/service-api/rpc-types.d.ts.map +0 -1
- package/dist/interfaces/service-api/rpc-types.js +0 -22
- package/dist/interfaces/service-api/rpc-types.js.map +0 -1
- package/dist/interfaces/shared.d.ts +0 -386
- package/dist/interfaces/shared.d.ts.map +0 -1
- package/dist/interfaces/shared.js +0 -543
- package/dist/interfaces/shared.js.map +0 -1
- package/dist/interfaces/theme/dark.json +0 -91
- package/dist/interfaces/theme/light.json +0 -90
- package/dist/interfaces/theme/theme-schema.json +0 -339
- package/dist/interfaces/theme/theme.d.ts +0 -500
- package/dist/interfaces/theme/theme.d.ts.map +0 -1
- package/dist/interfaces/theme/theme.js +0 -1511
- package/dist/interfaces/theme/theme.js.map +0 -1
- package/dist/main.d.ts +0 -8
- package/dist/main.d.ts.map +0 -1
- package/dist/main.js +0 -750
- package/dist/main.js.map +0 -1
- package/dist/migrations.d.ts +0 -8
- package/dist/migrations.d.ts.map +0 -1
- package/dist/migrations.js +0 -206
- package/dist/migrations.js.map +0 -1
- package/dist/observe.d.ts +0 -2
- package/dist/observe.d.ts.map +0 -1
- package/dist/observe.js +0 -2
- package/dist/observe.js.map +0 -1
- package/dist/runtime/agent-session.d.ts +0 -988
- package/dist/runtime/agent-session.d.ts.map +0 -1
- package/dist/runtime/agent-session.js +0 -3114
- package/dist/runtime/agent-session.js.map +0 -1
- package/dist/runtime/auth-storage.d.ts +0 -53
- package/dist/runtime/auth-storage.d.ts.map +0 -1
- package/dist/runtime/auth-storage.js +0 -378
- package/dist/runtime/auth-storage.js.map +0 -1
- package/dist/runtime/bash-executor.d.ts +0 -16
- package/dist/runtime/bash-executor.d.ts.map +0 -1
- package/dist/runtime/bash-executor.js +0 -270
- package/dist/runtime/bash-executor.js.map +0 -1
- package/dist/runtime/context-compression/branch-summarization.d.ts +0 -86
- package/dist/runtime/context-compression/branch-summarization.d.ts.map +0 -1
- package/dist/runtime/context-compression/branch-summarization.js +0 -242
- package/dist/runtime/context-compression/branch-summarization.js.map +0 -1
- package/dist/runtime/context-compression/compaction.d.ts +0 -121
- package/dist/runtime/context-compression/compaction.d.ts.map +0 -1
- package/dist/runtime/context-compression/compaction.js +0 -607
- package/dist/runtime/context-compression/compaction.js.map +0 -1
- package/dist/runtime/context-compression/index.d.ts +0 -35
- package/dist/runtime/context-compression/index.d.ts.map +0 -1
- package/dist/runtime/context-compression/index.js +0 -33
- package/dist/runtime/context-compression/index.js.map +0 -1
- package/dist/runtime/context-compression/utils.d.ts +0 -17
- package/dist/runtime/context-compression/utils.d.ts.map +0 -1
- package/dist/runtime/context-compression/utils.js +0 -117
- package/dist/runtime/context-compression/utils.js.map +0 -1
- package/dist/runtime/diagnostics.d.ts +0 -206
- package/dist/runtime/diagnostics.d.ts.map +0 -1
- package/dist/runtime/diagnostics.js +0 -144
- package/dist/runtime/diagnostics.js.map +0 -1
- package/dist/runtime/discover-packages.d.ts +0 -2
- package/dist/runtime/discover-packages.d.ts.map +0 -1
- package/dist/runtime/discover-packages.js +0 -59
- package/dist/runtime/discover-packages.js.map +0 -1
- package/dist/runtime/event-bus.d.ts +0 -9
- package/dist/runtime/event-bus.d.ts.map +0 -1
- package/dist/runtime/event-bus.js +0 -29
- package/dist/runtime/event-bus.js.map +0 -1
- package/dist/runtime/exec.d.ts +0 -13
- package/dist/runtime/exec.d.ts.map +0 -1
- package/dist/runtime/exec.js +0 -62
- package/dist/runtime/exec.js.map +0 -1
- package/dist/runtime/footer-data-provider.d.ts +0 -19
- package/dist/runtime/footer-data-provider.d.ts.map +0 -1
- package/dist/runtime/footer-data-provider.js +0 -122
- package/dist/runtime/footer-data-provider.js.map +0 -1
- package/dist/runtime/html-export/ansi-to-html.d.ts +0 -26
- package/dist/runtime/html-export/ansi-to-html.d.ts.map +0 -1
- package/dist/runtime/html-export/ansi-to-html.js +0 -253
- package/dist/runtime/html-export/ansi-to-html.js.map +0 -1
- package/dist/runtime/html-export/ansi-to-html.ts +0 -262
- package/dist/runtime/html-export/index.d.ts +0 -162
- package/dist/runtime/html-export/index.d.ts.map +0 -1
- package/dist/runtime/html-export/index.js +0 -350
- package/dist/runtime/html-export/index.js.map +0 -1
- package/dist/runtime/html-export/index.ts +0 -432
- package/dist/runtime/html-export/template.css +0 -905
- package/dist/runtime/html-export/template.html +0 -76
- package/dist/runtime/html-export/template.js +0 -1549
- package/dist/runtime/html-export/tool-renderer.d.ts +0 -18
- package/dist/runtime/html-export/tool-renderer.d.ts.map +0 -1
- package/dist/runtime/html-export/tool-renderer.js +0 -45
- package/dist/runtime/html-export/tool-renderer.js.map +0 -1
- package/dist/runtime/html-export/tool-renderer.ts +0 -80
- package/dist/runtime/html-export/vendor/highlight.min.js +0 -1244
- package/dist/runtime/html-export/vendor/marked.min.js +0 -74
- package/dist/runtime/index.d.ts +0 -35
- package/dist/runtime/index.d.ts.map +0 -1
- package/dist/runtime/index.js +0 -35
- package/dist/runtime/index.js.map +0 -1
- package/dist/runtime/keybindings.d.ts +0 -20
- package/dist/runtime/keybindings.d.ts.map +0 -1
- package/dist/runtime/keybindings.js +0 -109
- package/dist/runtime/keybindings.js.map +0 -1
- package/dist/runtime/lifecycle/index.d.ts +0 -4
- package/dist/runtime/lifecycle/index.d.ts.map +0 -1
- package/dist/runtime/lifecycle/index.js +0 -3
- package/dist/runtime/lifecycle/index.js.map +0 -1
- package/dist/runtime/lifecycle/loader.d.ts +0 -6
- package/dist/runtime/lifecycle/loader.d.ts.map +0 -1
- package/dist/runtime/lifecycle/loader.js +0 -179
- package/dist/runtime/lifecycle/loader.js.map +0 -1
- package/dist/runtime/lifecycle/runner.d.ts +0 -14
- package/dist/runtime/lifecycle/runner.d.ts.map +0 -1
- package/dist/runtime/lifecycle/runner.js +0 -58
- package/dist/runtime/lifecycle/runner.js.map +0 -1
- package/dist/runtime/lifecycle/types.d.ts +0 -139
- package/dist/runtime/lifecycle/types.d.ts.map +0 -1
- package/dist/runtime/lifecycle/types.js +0 -2
- package/dist/runtime/lifecycle/types.js.map +0 -1
- package/dist/runtime/messages.d.ts +0 -2
- package/dist/runtime/messages.d.ts.map +0 -1
- package/dist/runtime/messages.js +0 -2
- package/dist/runtime/messages.js.map +0 -1
- package/dist/runtime/model-registry.d.ts +0 -62
- package/dist/runtime/model-registry.d.ts.map +0 -1
- package/dist/runtime/model-registry.js +0 -446
- package/dist/runtime/model-registry.js.map +0 -1
- package/dist/runtime/model-resolver.d.ts +0 -35
- package/dist/runtime/model-resolver.d.ts.map +0 -1
- package/dist/runtime/model-resolver.js +0 -232
- package/dist/runtime/model-resolver.js.map +0 -1
- package/dist/runtime/observe.d.ts +0 -50
- package/dist/runtime/observe.d.ts.map +0 -1
- package/dist/runtime/observe.js +0 -233
- package/dist/runtime/observe.js.map +0 -1
- package/dist/runtime/package-manager.d.ts +0 -103
- package/dist/runtime/package-manager.d.ts.map +0 -1
- package/dist/runtime/package-manager.js +0 -583
- package/dist/runtime/package-manager.js.map +0 -1
- package/dist/runtime/plugins/index.d.ts +0 -13
- package/dist/runtime/plugins/index.d.ts.map +0 -1
- package/dist/runtime/plugins/index.js +0 -23
- package/dist/runtime/plugins/index.js.map +0 -1
- package/dist/runtime/plugins/loader.d.ts +0 -19
- package/dist/runtime/plugins/loader.d.ts.map +0 -1
- package/dist/runtime/plugins/loader.js +0 -415
- package/dist/runtime/plugins/loader.js.map +0 -1
- package/dist/runtime/plugins/runner.d.ts +0 -107
- package/dist/runtime/plugins/runner.d.ts.map +0 -1
- package/dist/runtime/plugins/runner.js +0 -468
- package/dist/runtime/plugins/runner.js.map +0 -1
- package/dist/runtime/plugins/types.d.ts +0 -862
- package/dist/runtime/plugins/types.d.ts.map +0 -1
- package/dist/runtime/plugins/types.js +0 -32
- package/dist/runtime/plugins/types.js.map +0 -1
- package/dist/runtime/plugins/wrapper.d.ts +0 -29
- package/dist/runtime/plugins/wrapper.d.ts.map +0 -1
- package/dist/runtime/plugins/wrapper.js +0 -129
- package/dist/runtime/plugins/wrapper.js.map +0 -1
- package/dist/runtime/prompt-templates.d.ts +0 -18
- package/dist/runtime/prompt-templates.d.ts.map +0 -1
- package/dist/runtime/prompt-templates.js +0 -203
- package/dist/runtime/prompt-templates.js.map +0 -1
- package/dist/runtime/providers/adapters/claude-cli-adapter.d.ts +0 -19
- package/dist/runtime/providers/adapters/claude-cli-adapter.d.ts.map +0 -1
- package/dist/runtime/providers/adapters/claude-cli-adapter.js +0 -242
- package/dist/runtime/providers/adapters/claude-cli-adapter.js.map +0 -1
- package/dist/runtime/providers/adapters/codex-cli-adapter.d.ts +0 -18
- package/dist/runtime/providers/adapters/codex-cli-adapter.d.ts.map +0 -1
- package/dist/runtime/providers/adapters/codex-cli-adapter.js +0 -177
- package/dist/runtime/providers/adapters/codex-cli-adapter.js.map +0 -1
- package/dist/runtime/providers/adapters/indusagi-cli-adapter.d.ts +0 -21
- package/dist/runtime/providers/adapters/indusagi-cli-adapter.d.ts.map +0 -1
- package/dist/runtime/providers/adapters/indusagi-cli-adapter.js +0 -162
- package/dist/runtime/providers/adapters/indusagi-cli-adapter.js.map +0 -1
- package/dist/runtime/providers/adapters/utils.d.ts +0 -12
- package/dist/runtime/providers/adapters/utils.d.ts.map +0 -1
- package/dist/runtime/providers/adapters/utils.js +0 -122
- package/dist/runtime/providers/adapters/utils.js.map +0 -1
- package/dist/runtime/providers/builtins.d.ts +0 -3
- package/dist/runtime/providers/builtins.d.ts.map +0 -1
- package/dist/runtime/providers/builtins.js +0 -88
- package/dist/runtime/providers/builtins.js.map +0 -1
- package/dist/runtime/providers/provider-adapter-registry.d.ts +0 -11
- package/dist/runtime/providers/provider-adapter-registry.d.ts.map +0 -1
- package/dist/runtime/providers/provider-adapter-registry.js +0 -36
- package/dist/runtime/providers/provider-adapter-registry.js.map +0 -1
- package/dist/runtime/providers/provider-adapter.d.ts +0 -33
- package/dist/runtime/providers/provider-adapter.d.ts.map +0 -1
- package/dist/runtime/providers/provider-adapter.js +0 -2
- package/dist/runtime/providers/provider-adapter.js.map +0 -1
- package/dist/runtime/providers/provider-service.d.ts +0 -33
- package/dist/runtime/providers/provider-service.d.ts.map +0 -1
- package/dist/runtime/providers/provider-service.js +0 -157
- package/dist/runtime/providers/provider-service.js.map +0 -1
- package/dist/runtime/providers/types.d.ts +0 -29
- package/dist/runtime/providers/types.d.ts.map +0 -1
- package/dist/runtime/providers/types.js +0 -9
- package/dist/runtime/providers/types.js.map +0 -1
- package/dist/runtime/resource-loader.d.ts +0 -180
- package/dist/runtime/resource-loader.d.ts.map +0 -1
- package/dist/runtime/resource-loader.js +0 -530
- package/dist/runtime/resource-loader.js.map +0 -1
- package/dist/runtime/sdk.d.ts +0 -65
- package/dist/runtime/sdk.d.ts.map +0 -1
- package/dist/runtime/sdk.js +0 -402
- package/dist/runtime/sdk.js.map +0 -1
- package/dist/runtime/session-manager.d.ts +0 -448
- package/dist/runtime/session-manager.d.ts.map +0 -1
- package/dist/runtime/session-manager.js +0 -1177
- package/dist/runtime/session-manager.js.map +0 -1
- package/dist/runtime/settings-manager.d.ts +0 -234
- package/dist/runtime/settings-manager.d.ts.map +0 -1
- package/dist/runtime/settings-manager.js +0 -298
- package/dist/runtime/settings-manager.js.map +0 -1
- package/dist/runtime/skills.d.ts +0 -33
- package/dist/runtime/skills.d.ts.map +0 -1
- package/dist/runtime/skills.js +0 -277
- package/dist/runtime/skills.js.map +0 -1
- package/dist/runtime/subagents.d.ts +0 -29
- package/dist/runtime/subagents.d.ts.map +0 -1
- package/dist/runtime/subagents.js +0 -163
- package/dist/runtime/subagents.js.map +0 -1
- package/dist/runtime/system-prompt.d.ts +0 -16
- package/dist/runtime/system-prompt.d.ts.map +0 -1
- package/dist/runtime/system-prompt.js +0 -275
- package/dist/runtime/system-prompt.js.map +0 -1
- package/dist/runtime/task-session-manager.d.ts +0 -55
- package/dist/runtime/task-session-manager.d.ts.map +0 -1
- package/dist/runtime/task-session-manager.js +0 -410
- package/dist/runtime/task-session-manager.js.map +0 -1
- package/dist/runtime/timings.d.ts +0 -4
- package/dist/runtime/timings.d.ts.map +0 -1
- package/dist/runtime/timings.js +0 -41
- package/dist/runtime/timings.js.map +0 -1
- package/dist/runtime/todo-store.d.ts +0 -20
- package/dist/runtime/todo-store.d.ts.map +0 -1
- package/dist/runtime/todo-store.js +0 -60
- package/dist/runtime/todo-store.js.map +0 -1
- package/dist/runtime/tooling/bash.d.ts +0 -2
- package/dist/runtime/tooling/bash.d.ts.map +0 -1
- package/dist/runtime/tooling/bash.js +0 -2
- package/dist/runtime/tooling/bash.js.map +0 -1
- package/dist/runtime/tooling/bg-process.d.ts +0 -44
- package/dist/runtime/tooling/bg-process.d.ts.map +0 -1
- package/dist/runtime/tooling/bg-process.js +0 -55
- package/dist/runtime/tooling/bg-process.js.map +0 -1
- package/dist/runtime/tooling/composio-compat.d.ts +0 -169
- package/dist/runtime/tooling/composio-compat.d.ts.map +0 -1
- package/dist/runtime/tooling/composio-compat.js +0 -163
- package/dist/runtime/tooling/composio-compat.js.map +0 -1
- package/dist/runtime/tooling/edit-diff.d.ts +0 -9
- package/dist/runtime/tooling/edit-diff.d.ts.map +0 -1
- package/dist/runtime/tooling/edit-diff.js +0 -2
- package/dist/runtime/tooling/edit-diff.js.map +0 -1
- package/dist/runtime/tooling/edit.d.ts +0 -2
- package/dist/runtime/tooling/edit.d.ts.map +0 -1
- package/dist/runtime/tooling/edit.js +0 -2
- package/dist/runtime/tooling/edit.js.map +0 -1
- package/dist/runtime/tooling/find.d.ts +0 -2
- package/dist/runtime/tooling/find.d.ts.map +0 -1
- package/dist/runtime/tooling/find.js +0 -2
- package/dist/runtime/tooling/find.js.map +0 -1
- package/dist/runtime/tooling/grep.d.ts +0 -2
- package/dist/runtime/tooling/grep.d.ts.map +0 -1
- package/dist/runtime/tooling/grep.js +0 -2
- package/dist/runtime/tooling/grep.js.map +0 -1
- package/dist/runtime/tooling/index.d.ts +0 -248
- package/dist/runtime/tooling/index.d.ts.map +0 -1
- package/dist/runtime/tooling/index.js +0 -325
- package/dist/runtime/tooling/index.js.map +0 -1
- package/dist/runtime/tooling/ls.d.ts +0 -2
- package/dist/runtime/tooling/ls.d.ts.map +0 -1
- package/dist/runtime/tooling/ls.js +0 -2
- package/dist/runtime/tooling/ls.js.map +0 -1
- package/dist/runtime/tooling/memory.d.ts +0 -132
- package/dist/runtime/tooling/memory.d.ts.map +0 -1
- package/dist/runtime/tooling/memory.js +0 -171
- package/dist/runtime/tooling/memory.js.map +0 -1
- package/dist/runtime/tooling/path-utils.d.ts +0 -2
- package/dist/runtime/tooling/path-utils.d.ts.map +0 -1
- package/dist/runtime/tooling/path-utils.js +0 -2
- package/dist/runtime/tooling/path-utils.js.map +0 -1
- package/dist/runtime/tooling/read.d.ts +0 -2
- package/dist/runtime/tooling/read.d.ts.map +0 -1
- package/dist/runtime/tooling/read.js +0 -2
- package/dist/runtime/tooling/read.js.map +0 -1
- package/dist/runtime/tooling/registry.d.ts +0 -18
- package/dist/runtime/tooling/registry.d.ts.map +0 -1
- package/dist/runtime/tooling/registry.js +0 -166
- package/dist/runtime/tooling/registry.js.map +0 -1
- package/dist/runtime/tooling/task.d.ts +0 -37
- package/dist/runtime/tooling/task.d.ts.map +0 -1
- package/dist/runtime/tooling/task.js +0 -65
- package/dist/runtime/tooling/task.js.map +0 -1
- package/dist/runtime/tooling/todo.d.ts +0 -34
- package/dist/runtime/tooling/todo.d.ts.map +0 -1
- package/dist/runtime/tooling/todo.js +0 -96
- package/dist/runtime/tooling/todo.js.map +0 -1
- package/dist/runtime/tooling/truncate.d.ts +0 -2
- package/dist/runtime/tooling/truncate.d.ts.map +0 -1
- package/dist/runtime/tooling/truncate.js +0 -2
- package/dist/runtime/tooling/truncate.js.map +0 -1
- package/dist/runtime/tooling/webfetch.d.ts +0 -2
- package/dist/runtime/tooling/webfetch.d.ts.map +0 -1
- package/dist/runtime/tooling/webfetch.js +0 -2
- package/dist/runtime/tooling/webfetch.js.map +0 -1
- package/dist/runtime/tooling/websearch.d.ts +0 -2
- package/dist/runtime/tooling/websearch.d.ts.map +0 -1
- package/dist/runtime/tooling/websearch.js +0 -2
- package/dist/runtime/tooling/websearch.js.map +0 -1
- package/dist/runtime/tooling/write.d.ts +0 -2
- package/dist/runtime/tooling/write.d.ts.map +0 -1
- package/dist/runtime/tooling/write.js +0 -2
- package/dist/runtime/tooling/write.js.map +0 -1
- package/dist/telemetry/core/config.d.ts +0 -28
- package/dist/telemetry/core/config.d.ts.map +0 -1
- package/dist/telemetry/core/config.js +0 -150
- package/dist/telemetry/core/config.js.map +0 -1
- package/dist/telemetry/core/event-bus.d.ts +0 -15
- package/dist/telemetry/core/event-bus.d.ts.map +0 -1
- package/dist/telemetry/core/event-bus.js +0 -37
- package/dist/telemetry/core/event-bus.js.map +0 -1
- package/dist/telemetry/core/index.d.ts +0 -12
- package/dist/telemetry/core/index.d.ts.map +0 -1
- package/dist/telemetry/core/index.js +0 -14
- package/dist/telemetry/core/index.js.map +0 -1
- package/dist/telemetry/core/observability.d.ts +0 -63
- package/dist/telemetry/core/observability.d.ts.map +0 -1
- package/dist/telemetry/core/observability.js +0 -127
- package/dist/telemetry/core/observability.js.map +0 -1
- package/dist/telemetry/core/span.d.ts +0 -37
- package/dist/telemetry/core/span.d.ts.map +0 -1
- package/dist/telemetry/core/span.js +0 -90
- package/dist/telemetry/core/span.js.map +0 -1
- package/dist/telemetry/core/tracer.d.ts +0 -22
- package/dist/telemetry/core/tracer.d.ts.map +0 -1
- package/dist/telemetry/core/tracer.js +0 -79
- package/dist/telemetry/core/tracer.js.map +0 -1
- package/dist/telemetry/core/types.d.ts +0 -155
- package/dist/telemetry/core/types.d.ts.map +0 -1
- package/dist/telemetry/core/types.js +0 -38
- package/dist/telemetry/core/types.js.map +0 -1
- package/dist/telemetry/exporters/base-exporter.d.ts +0 -16
- package/dist/telemetry/exporters/base-exporter.d.ts.map +0 -1
- package/dist/telemetry/exporters/base-exporter.js +0 -26
- package/dist/telemetry/exporters/base-exporter.js.map +0 -1
- package/dist/telemetry/exporters/console-exporter.d.ts +0 -22
- package/dist/telemetry/exporters/console-exporter.d.ts.map +0 -1
- package/dist/telemetry/exporters/console-exporter.js +0 -80
- package/dist/telemetry/exporters/console-exporter.js.map +0 -1
- package/dist/telemetry/exporters/file-exporter.d.ts +0 -31
- package/dist/telemetry/exporters/file-exporter.d.ts.map +0 -1
- package/dist/telemetry/exporters/file-exporter.js +0 -120
- package/dist/telemetry/exporters/file-exporter.js.map +0 -1
- package/dist/telemetry/exporters/index.d.ts +0 -12
- package/dist/telemetry/exporters/index.d.ts.map +0 -1
- package/dist/telemetry/exporters/index.js +0 -11
- package/dist/telemetry/exporters/index.js.map +0 -1
- package/dist/telemetry/exporters/langfuse-exporter.d.ts +0 -27
- package/dist/telemetry/exporters/langfuse-exporter.d.ts.map +0 -1
- package/dist/telemetry/exporters/langfuse-exporter.js +0 -146
- package/dist/telemetry/exporters/langfuse-exporter.js.map +0 -1
- package/dist/telemetry/exporters/sentry-exporter.d.ts +0 -22
- package/dist/telemetry/exporters/sentry-exporter.d.ts.map +0 -1
- package/dist/telemetry/exporters/sentry-exporter.js +0 -121
- package/dist/telemetry/exporters/sentry-exporter.js.map +0 -1
- package/dist/telemetry/index.d.ts +0 -3
- package/dist/telemetry/index.d.ts.map +0 -1
- package/dist/telemetry/index.js +0 -3
- package/dist/telemetry/index.js.map +0 -1
- package/dist/vendor/observe/adapters/agent-event-adapter.d.ts +0 -28
- package/dist/vendor/observe/adapters/agent-event-adapter.d.ts.map +0 -1
- package/dist/vendor/observe/adapters/agent-event-adapter.js +0 -136
- package/dist/vendor/observe/adapters/agent-event-adapter.js.map +0 -1
- package/dist/vendor/observe/adapters/ai-stream-adapter.d.ts +0 -24
- package/dist/vendor/observe/adapters/ai-stream-adapter.d.ts.map +0 -1
- package/dist/vendor/observe/adapters/ai-stream-adapter.js +0 -118
- package/dist/vendor/observe/adapters/ai-stream-adapter.js.map +0 -1
- package/dist/vendor/observe/artifacts/content-store.d.ts +0 -12
- package/dist/vendor/observe/artifacts/content-store.d.ts.map +0 -1
- package/dist/vendor/observe/artifacts/content-store.js +0 -2
- package/dist/vendor/observe/artifacts/content-store.js.map +0 -1
- package/dist/vendor/observe/artifacts/file-content-store.d.ts +0 -16
- package/dist/vendor/observe/artifacts/file-content-store.d.ts.map +0 -1
- package/dist/vendor/observe/artifacts/file-content-store.js +0 -43
- package/dist/vendor/observe/artifacts/file-content-store.js.map +0 -1
- package/dist/vendor/observe/batcher.d.ts +0 -27
- package/dist/vendor/observe/batcher.d.ts.map +0 -1
- package/dist/vendor/observe/batcher.js +0 -66
- package/dist/vendor/observe/batcher.js.map +0 -1
- package/dist/vendor/observe/client/artifacts-manager.d.ts +0 -29
- package/dist/vendor/observe/client/artifacts-manager.d.ts.map +0 -1
- package/dist/vendor/observe/client/artifacts-manager.js +0 -120
- package/dist/vendor/observe/client/artifacts-manager.js.map +0 -1
- package/dist/vendor/observe/client/datasets-manager.d.ts +0 -16
- package/dist/vendor/observe/client/datasets-manager.d.ts.map +0 -1
- package/dist/vendor/observe/client/datasets-manager.js +0 -27
- package/dist/vendor/observe/client/datasets-manager.js.map +0 -1
- package/dist/vendor/observe/client/experiments-manager.d.ts +0 -61
- package/dist/vendor/observe/client/experiments-manager.d.ts.map +0 -1
- package/dist/vendor/observe/client/experiments-manager.js +0 -132
- package/dist/vendor/observe/client/experiments-manager.js.map +0 -1
- package/dist/vendor/observe/client/index.d.ts +0 -9
- package/dist/vendor/observe/client/index.d.ts.map +0 -1
- package/dist/vendor/observe/client/index.js +0 -9
- package/dist/vendor/observe/client/index.js.map +0 -1
- package/dist/vendor/observe/client/observe-client.d.ts +0 -30
- package/dist/vendor/observe/client/observe-client.d.ts.map +0 -1
- package/dist/vendor/observe/client/observe-client.js +0 -22
- package/dist/vendor/observe/client/observe-client.js.map +0 -1
- package/dist/vendor/observe/client/prompts-manager.d.ts +0 -17
- package/dist/vendor/observe/client/prompts-manager.d.ts.map +0 -1
- package/dist/vendor/observe/client/prompts-manager.js +0 -38
- package/dist/vendor/observe/client/prompts-manager.js.map +0 -1
- package/dist/vendor/observe/client/scores-manager.d.ts +0 -10
- package/dist/vendor/observe/client/scores-manager.d.ts.map +0 -1
- package/dist/vendor/observe/client/scores-manager.js +0 -15
- package/dist/vendor/observe/client/scores-manager.js.map +0 -1
- package/dist/vendor/observe/client/sessions-manager.d.ts +0 -15
- package/dist/vendor/observe/client/sessions-manager.d.ts.map +0 -1
- package/dist/vendor/observe/client/sessions-manager.js +0 -24
- package/dist/vendor/observe/client/sessions-manager.js.map +0 -1
- package/dist/vendor/observe/client/traces-manager.d.ts +0 -23
- package/dist/vendor/observe/client/traces-manager.d.ts.map +0 -1
- package/dist/vendor/observe/client/traces-manager.js +0 -39
- package/dist/vendor/observe/client/traces-manager.js.map +0 -1
- package/dist/vendor/observe/console-exporter.d.ts +0 -11
- package/dist/vendor/observe/console-exporter.d.ts.map +0 -1
- package/dist/vendor/observe/console-exporter.js +0 -18
- package/dist/vendor/observe/console-exporter.js.map +0 -1
- package/dist/vendor/observe/context.d.ts +0 -4
- package/dist/vendor/observe/context.d.ts.map +0 -1
- package/dist/vendor/observe/context.js +0 -9
- package/dist/vendor/observe/context.js.map +0 -1
- package/dist/vendor/observe/entities/artifacts.d.ts +0 -46
- package/dist/vendor/observe/entities/artifacts.d.ts.map +0 -1
- package/dist/vendor/observe/entities/artifacts.js +0 -2
- package/dist/vendor/observe/entities/artifacts.js.map +0 -1
- package/dist/vendor/observe/entities/datasets.d.ts +0 -37
- package/dist/vendor/observe/entities/datasets.d.ts.map +0 -1
- package/dist/vendor/observe/entities/datasets.js +0 -2
- package/dist/vendor/observe/entities/datasets.js.map +0 -1
- package/dist/vendor/observe/entities/experiments.d.ts +0 -66
- package/dist/vendor/observe/entities/experiments.d.ts.map +0 -1
- package/dist/vendor/observe/entities/experiments.js +0 -2
- package/dist/vendor/observe/entities/experiments.js.map +0 -1
- package/dist/vendor/observe/entities/index.d.ts +0 -9
- package/dist/vendor/observe/entities/index.d.ts.map +0 -1
- package/dist/vendor/observe/entities/index.js +0 -9
- package/dist/vendor/observe/entities/index.js.map +0 -1
- package/dist/vendor/observe/entities/prompts.d.ts +0 -25
- package/dist/vendor/observe/entities/prompts.d.ts.map +0 -1
- package/dist/vendor/observe/entities/prompts.js +0 -2
- package/dist/vendor/observe/entities/prompts.js.map +0 -1
- package/dist/vendor/observe/entities/scores.d.ts +0 -28
- package/dist/vendor/observe/entities/scores.d.ts.map +0 -1
- package/dist/vendor/observe/entities/scores.js +0 -2
- package/dist/vendor/observe/entities/scores.js.map +0 -1
- package/dist/vendor/observe/entities/sessions.d.ts +0 -36
- package/dist/vendor/observe/entities/sessions.d.ts.map +0 -1
- package/dist/vendor/observe/entities/sessions.js +0 -2
- package/dist/vendor/observe/entities/sessions.js.map +0 -1
- package/dist/vendor/observe/entities/shared.d.ts +0 -26
- package/dist/vendor/observe/entities/shared.d.ts.map +0 -1
- package/dist/vendor/observe/entities/shared.js +0 -2
- package/dist/vendor/observe/entities/shared.js.map +0 -1
- package/dist/vendor/observe/entities/traces.d.ts +0 -59
- package/dist/vendor/observe/entities/traces.d.ts.map +0 -1
- package/dist/vendor/observe/entities/traces.js +0 -2
- package/dist/vendor/observe/entities/traces.js.map +0 -1
- package/dist/vendor/observe/exporter.d.ts +0 -2
- package/dist/vendor/observe/exporter.d.ts.map +0 -1
- package/dist/vendor/observe/exporter.js +0 -2
- package/dist/vendor/observe/exporter.js.map +0 -1
- package/dist/vendor/observe/file-exporter.d.ts +0 -16
- package/dist/vendor/observe/file-exporter.d.ts.map +0 -1
- package/dist/vendor/observe/file-exporter.js +0 -39
- package/dist/vendor/observe/file-exporter.js.map +0 -1
- package/dist/vendor/observe/global.d.ts +0 -6
- package/dist/vendor/observe/global.d.ts.map +0 -1
- package/dist/vendor/observe/global.js +0 -17
- package/dist/vendor/observe/global.js.map +0 -1
- package/dist/vendor/observe/index.d.ts +0 -24
- package/dist/vendor/observe/index.d.ts.map +0 -1
- package/dist/vendor/observe/index.js +0 -24
- package/dist/vendor/observe/index.js.map +0 -1
- package/dist/vendor/observe/noop.d.ts +0 -17
- package/dist/vendor/observe/noop.d.ts.map +0 -1
- package/dist/vendor/observe/noop.js +0 -80
- package/dist/vendor/observe/noop.js.map +0 -1
- package/dist/vendor/observe/privacy.d.ts +0 -18
- package/dist/vendor/observe/privacy.d.ts.map +0 -1
- package/dist/vendor/observe/privacy.js +0 -160
- package/dist/vendor/observe/privacy.js.map +0 -1
- package/dist/vendor/observe/query/simple-query-client.d.ts +0 -11
- package/dist/vendor/observe/query/simple-query-client.d.ts.map +0 -1
- package/dist/vendor/observe/query/simple-query-client.js +0 -31
- package/dist/vendor/observe/query/simple-query-client.js.map +0 -1
- package/dist/vendor/observe/replay/session-replay.d.ts +0 -20
- package/dist/vendor/observe/replay/session-replay.d.ts.map +0 -1
- package/dist/vendor/observe/replay/session-replay.js +0 -180
- package/dist/vendor/observe/replay/session-replay.js.map +0 -1
- package/dist/vendor/observe/runtime.d.ts +0 -27
- package/dist/vendor/observe/runtime.d.ts.map +0 -1
- package/dist/vendor/observe/runtime.js +0 -177
- package/dist/vendor/observe/runtime.js.map +0 -1
- package/dist/vendor/observe/server/dashboard-html.d.ts +0 -6
- package/dist/vendor/observe/server/dashboard-html.d.ts.map +0 -1
- package/dist/vendor/observe/server/dashboard-html.js +0 -305
- package/dist/vendor/observe/server/dashboard-html.js.map +0 -1
- package/dist/vendor/observe/server/http-observe-server.d.ts +0 -62
- package/dist/vendor/observe/server/http-observe-server.d.ts.map +0 -1
- package/dist/vendor/observe/server/http-observe-server.js +0 -418
- package/dist/vendor/observe/server/http-observe-server.js.map +0 -1
- package/dist/vendor/observe/server/in-memory-observe-server.d.ts +0 -20
- package/dist/vendor/observe/server/in-memory-observe-server.d.ts.map +0 -1
- package/dist/vendor/observe/server/in-memory-observe-server.js +0 -76
- package/dist/vendor/observe/server/in-memory-observe-server.js.map +0 -1
- package/dist/vendor/observe/span.d.ts +0 -45
- package/dist/vendor/observe/span.d.ts.map +0 -1
- package/dist/vendor/observe/span.js +0 -110
- package/dist/vendor/observe/span.js.map +0 -1
- package/dist/vendor/observe/store/contracts.d.ts +0 -59
- package/dist/vendor/observe/store/contracts.d.ts.map +0 -1
- package/dist/vendor/observe/store/contracts.js +0 -2
- package/dist/vendor/observe/store/contracts.js.map +0 -1
- package/dist/vendor/observe/store/file-control-plane-store.d.ts +0 -33
- package/dist/vendor/observe/store/file-control-plane-store.d.ts.map +0 -1
- package/dist/vendor/observe/store/file-control-plane-store.js +0 -146
- package/dist/vendor/observe/store/file-control-plane-store.js.map +0 -1
- package/dist/vendor/observe/store/in-memory-control-plane-store.d.ts +0 -84
- package/dist/vendor/observe/store/in-memory-control-plane-store.d.ts.map +0 -1
- package/dist/vendor/observe/store/in-memory-control-plane-store.js +0 -447
- package/dist/vendor/observe/store/in-memory-control-plane-store.js.map +0 -1
- package/dist/vendor/observe/store/index.d.ts +0 -4
- package/dist/vendor/observe/store/index.d.ts.map +0 -1
- package/dist/vendor/observe/store/index.js +0 -4
- package/dist/vendor/observe/store/index.js.map +0 -1
- package/dist/vendor/observe/types.d.ts +0 -246
- package/dist/vendor/observe/types.d.ts.map +0 -1
- package/dist/vendor/observe/types.js +0 -152
- package/dist/vendor/observe/types.js.map +0 -1
- package/dist/vendor/observe/worker/in-memory-observe-worker.d.ts +0 -25
- package/dist/vendor/observe/worker/in-memory-observe-worker.d.ts.map +0 -1
- package/dist/vendor/observe/worker/in-memory-observe-worker.js +0 -82
- package/dist/vendor/observe/worker/in-memory-observe-worker.js.map +0 -1
- package/guides/CLAUDE_CODEX_CLI_INTEGRATION_PLAN.md +0 -321
- package/guides/INDUSAGI_MONO_MIT_REMOVAL_GUIDE.md +0 -2132
- package/guides/INDUSVX_OBSERVE_FULL_INTEGRATION_REPORT.md +0 -543
- package/guides/OBSERVE_DEEP_VALIDATION.md +0 -252
- package/guides/OBSERVE_LOCAL_TESTING.md +0 -183
- package/guides/OPTION3_PROVIDER_ADAPTER_RUNTIME_PLAN.md +0 -370
- package/guides/SAME_TO_SAME_PARITY_REPORT.md +0 -312
- package/tasks/patch-indusagi-react-host.mjs +0 -247
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Completion source — structured suggestions for the composer's prompt line.
|
|
3
|
+
*
|
|
4
|
+
* As the user types, the composer can offer two kinds of completion:
|
|
5
|
+
*
|
|
6
|
+
* 1. **Slash commands** — when the buffer begins with `/`, the leading token is
|
|
7
|
+
* matched (prefix, case-insensitive) against the {@link SlashRegistry}, and
|
|
8
|
+
* every command whose name or alias starts with the typed stem is offered.
|
|
9
|
+
* 2. **File paths** — when the active token begins with `@` (an attachment
|
|
10
|
+
* reference) or looks like a path stem, the trailing path component is
|
|
11
|
+
* completed against a directory listing.
|
|
12
|
+
*
|
|
13
|
+
* Both branches resolve to the same {@link Suggestion} shape so the surface's
|
|
14
|
+
* completion window renders and applies them uniformly. The whole module is
|
|
15
|
+
* pure: the slash branch reads the registry (plain data), and the path branch
|
|
16
|
+
* takes an injected {@link DirReader} rather than calling `fs` itself, so the
|
|
17
|
+
* suggestion logic is unit-tested with a synthetic filesystem and no I/O.
|
|
18
|
+
*
|
|
19
|
+
* The entry point is {@link completeAt}: given the buffer, the caret offset, and
|
|
20
|
+
* the registry + dir-reader sources, it returns a {@link CompletionResult} —
|
|
21
|
+
* the active token's span (so the surface knows what to replace), the suggestion
|
|
22
|
+
* list, and the completion `kind`. {@link applySuggestion} then splices a chosen
|
|
23
|
+
* suggestion back into the buffer, returning the new buffer and caret.
|
|
24
|
+
*/
|
|
25
|
+
import type { SlashRegistry } from "../contract";
|
|
26
|
+
/** Which source produced a batch of suggestions. */
|
|
27
|
+
export type CompletionKind = "slash" | "path" | "none";
|
|
28
|
+
/**
|
|
29
|
+
* One structured completion candidate.
|
|
30
|
+
*
|
|
31
|
+
* `value` is the text the surface splices in when this suggestion is accepted
|
|
32
|
+
* (already including any leading sigil — `/` for a command, `@`/trailing slash
|
|
33
|
+
* for a path). `label` is what the completion window shows; `detail` is the
|
|
34
|
+
* one-line description (a command summary, or a `dir`/`file` hint). `isDir`
|
|
35
|
+
* marks a directory so the surface can keep the window open for further descent.
|
|
36
|
+
*/
|
|
37
|
+
export interface Suggestion {
|
|
38
|
+
/** The text spliced into the buffer when accepted. */
|
|
39
|
+
readonly value: string;
|
|
40
|
+
/** The primary text shown in the completion window. */
|
|
41
|
+
readonly label: string;
|
|
42
|
+
/** A one-line description shown beside the label. */
|
|
43
|
+
readonly detail: string;
|
|
44
|
+
/** Whether this path suggestion is a directory (false for slash commands). */
|
|
45
|
+
readonly isDir: boolean;
|
|
46
|
+
}
|
|
47
|
+
/**
|
|
48
|
+
* The half-open `[start, end)` span of the buffer the active token occupies.
|
|
49
|
+
*
|
|
50
|
+
* The surface replaces exactly this span when a suggestion is applied, so the
|
|
51
|
+
* sigil and any preceding text are preserved.
|
|
52
|
+
*/
|
|
53
|
+
export interface TokenSpan {
|
|
54
|
+
/** Inclusive start offset of the active token. */
|
|
55
|
+
readonly start: number;
|
|
56
|
+
/** Exclusive end offset of the active token. */
|
|
57
|
+
readonly end: number;
|
|
58
|
+
}
|
|
59
|
+
/**
|
|
60
|
+
* The full result of asking for completion at a caret position.
|
|
61
|
+
*
|
|
62
|
+
* `kind` reports which source answered (`none` when nothing applies), `span` is
|
|
63
|
+
* the token to replace, and `suggestions` is the ranked candidate list (empty
|
|
64
|
+
* when nothing matched).
|
|
65
|
+
*/
|
|
66
|
+
export interface CompletionResult {
|
|
67
|
+
/** Which source produced the suggestions. */
|
|
68
|
+
readonly kind: CompletionKind;
|
|
69
|
+
/** The buffer span the active token occupies. */
|
|
70
|
+
readonly span: TokenSpan;
|
|
71
|
+
/** The ranked candidate list (possibly empty). */
|
|
72
|
+
readonly suggestions: readonly Suggestion[];
|
|
73
|
+
}
|
|
74
|
+
/** A pure directory listing: each name is a leaf, flagged dir-or-file. */
|
|
75
|
+
export interface DirEntry {
|
|
76
|
+
/** The leaf name (no path separators). */
|
|
77
|
+
readonly name: string;
|
|
78
|
+
/** Whether the entry is a directory. */
|
|
79
|
+
readonly isDir: boolean;
|
|
80
|
+
}
|
|
81
|
+
/**
|
|
82
|
+
* An injected directory reader so the path branch stays pure and testable.
|
|
83
|
+
*
|
|
84
|
+
* Given a directory path (relative to the working dir), it returns that
|
|
85
|
+
* directory's immediate entries, or an empty list when the path does not exist
|
|
86
|
+
* or cannot be read. The live console binds this to a real `fs.readdir`; tests
|
|
87
|
+
* bind it to a synthetic tree.
|
|
88
|
+
*/
|
|
89
|
+
export type DirReader = (dirPath: string) => readonly DirEntry[];
|
|
90
|
+
/**
|
|
91
|
+
* Compute the completion offering at a caret position.
|
|
92
|
+
*
|
|
93
|
+
* Routes on the active token's stem: a `/` at buffer-start yields slash
|
|
94
|
+
* completion; a `@`/path-like stem yields path completion; anything else yields
|
|
95
|
+
* the inert {@link CompletionKind} `none`. Pure with respect to both sources —
|
|
96
|
+
* the registry is data and the dir-reader is injected — so the entire decision
|
|
97
|
+
* is unit-testable.
|
|
98
|
+
*
|
|
99
|
+
* @param buffer the composer text
|
|
100
|
+
* @param caret the caret offset within the buffer
|
|
101
|
+
* @param registry the slash-command registry to match against
|
|
102
|
+
* @param readDir the directory reader the path branch lists through
|
|
103
|
+
*/
|
|
104
|
+
export declare function completeAt(buffer: string, caret: number, registry: SlashRegistry, readDir: DirReader): CompletionResult;
|
|
105
|
+
/**
|
|
106
|
+
* Splice an accepted suggestion back into the buffer.
|
|
107
|
+
*
|
|
108
|
+
* Pure: replaces the active token's span with the suggestion's `value` and
|
|
109
|
+
* returns the rewritten buffer plus the caret placed at the end of the inserted
|
|
110
|
+
* value. The surface re-runs {@link completeAt} afterward so descending into a
|
|
111
|
+
* directory (whose value ends in `/`) immediately offers the next level.
|
|
112
|
+
*
|
|
113
|
+
* @param buffer the composer text the completion was computed against
|
|
114
|
+
* @param span the token span returned by {@link completeAt}
|
|
115
|
+
* @param suggestion the candidate the user accepted
|
|
116
|
+
*/
|
|
117
|
+
export declare function applySuggestion(buffer: string, span: TokenSpan, suggestion: Suggestion): {
|
|
118
|
+
buffer: string;
|
|
119
|
+
caret: number;
|
|
120
|
+
};
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Directory reader — the live `fs`-backed implementation of {@link DirReader}.
|
|
3
|
+
*
|
|
4
|
+
* The completion engine ({@link completeAt}) is pure: its path branch lists a
|
|
5
|
+
* directory through an injected {@link DirReader} rather than touching the disk
|
|
6
|
+
* itself, so the suggestion logic stays unit-testable against a synthetic tree.
|
|
7
|
+
* This module is the one place that binds that seam to a real filesystem.
|
|
8
|
+
*
|
|
9
|
+
* {@link createDirReader} returns a reader that resolves a (possibly relative)
|
|
10
|
+
* directory path against a base directory — the session working directory by
|
|
11
|
+
* default — and lists its immediate entries as {@link DirEntry} records. Every
|
|
12
|
+
* failure mode (a missing directory, a permission error, a path that names a
|
|
13
|
+
* file) collapses to an empty list, so the composer never throws while the user
|
|
14
|
+
* is mid-type. A symlink is classified by whether it ultimately resolves to a
|
|
15
|
+
* directory, falling back to its own dirent flag when the target cannot be
|
|
16
|
+
* stat-ed.
|
|
17
|
+
*/
|
|
18
|
+
import type { DirReader } from "./complete";
|
|
19
|
+
/**
|
|
20
|
+
* Build a live {@link DirReader} rooted at `cwd`.
|
|
21
|
+
*
|
|
22
|
+
* The returned reader resolves each requested directory path against `cwd`
|
|
23
|
+
* (an absolute request is used as-is), lists it, and maps each child to a
|
|
24
|
+
* {@link DirEntry}. Any error returns `[]`.
|
|
25
|
+
*
|
|
26
|
+
* @param cwd the base directory relative requests resolve against
|
|
27
|
+
*/
|
|
28
|
+
export declare function createDirReader(cwd?: string): DirReader;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Console input — public barrel for the pure composer-input modules.
|
|
3
|
+
*
|
|
4
|
+
* Three decoupled, Ink-free, fully-tested modules the surface's `useInput`
|
|
5
|
+
* handler composes:
|
|
6
|
+
*
|
|
7
|
+
* - **keymap** — classify a raw `(input, key)` event into a console
|
|
8
|
+
* {@link ConsoleIntent}, and fold double-tap chords with {@link advanceChord}.
|
|
9
|
+
* - **paste** — collapse a large clipboard burst behind a {@link PasteVault}
|
|
10
|
+
* marker ({@link coalescePaste}) and re-expand at submit ({@link expandMarkers}).
|
|
11
|
+
* - **complete** — produce structured slash/path {@link Suggestion}s
|
|
12
|
+
* ({@link completeAt}) and splice an accepted one back ({@link applySuggestion}).
|
|
13
|
+
*
|
|
14
|
+
* The surface owns the live values (the chord latch, the paste vault, the
|
|
15
|
+
* highlighted-suggestion index) and the timers; every decision lives in these
|
|
16
|
+
* pure functions.
|
|
17
|
+
*/
|
|
18
|
+
export type { KeyChord, ConsoleVerb, ConsoleIntent, ChordOutcome, ChordLatch, ChordStep, } from "./keymap";
|
|
19
|
+
export { NO_INTENT, readKey, NO_CHORD, advanceChord } from "./keymap";
|
|
20
|
+
export type { PasteThresholds, PasteVault, PasteCapture, } from "./paste";
|
|
21
|
+
export { PASTE_THRESHOLDS, PASTE_BURST_GAP_MS, EMPTY_PASTE_VAULT, pasteMarker, classifyPaste, coalescePaste, expandMarkers, hasMarkers, } from "./paste";
|
|
22
|
+
export type { CompletionKind, Suggestion, TokenSpan, CompletionResult, DirEntry, DirReader, } from "./complete";
|
|
23
|
+
export { completeAt, applySuggestion } from "./complete";
|
|
24
|
+
export { createDirReader } from "./dir-reader";
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Console input — pure-module unit tests (no Ink, no fs, no timers).
|
|
3
|
+
*
|
|
4
|
+
* Three concerns, exercised against plain data:
|
|
5
|
+
* 1. keymap — {@link readKey} classifies modifier combos / named keys / text,
|
|
6
|
+
* and {@link advanceChord} latches double-tap escape/clear chords.
|
|
7
|
+
* 2. paste — {@link classifyPaste} thresholds, {@link coalescePaste} marker
|
|
8
|
+
* minting into an immutable {@link PasteVault}, and {@link expandMarkers}
|
|
9
|
+
* round-tripping the hidden body back at submit time.
|
|
10
|
+
* 3. complete — {@link completeAt} routes slash vs path vs none, ranks
|
|
11
|
+
* matches, and {@link applySuggestion} splices a choice back into the buffer
|
|
12
|
+
* — the path branch driven by a synthetic {@link DirReader}.
|
|
13
|
+
*/
|
|
14
|
+
export {};
|
|
@@ -0,0 +1,184 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Keymap — pure translation of raw terminal key events into console intents.
|
|
3
|
+
*
|
|
4
|
+
* The console's `useInput` handler is a thin shell: it forwards the `(input,
|
|
5
|
+
* key)` pair Ink hands it straight into {@link readKey}, which classifies the
|
|
6
|
+
* keystroke into one of the console's own {@link ConsoleIntent} verbs. All the
|
|
7
|
+
* branching — modifier combos, arrow navigation, the chorded escape/clear
|
|
8
|
+
* double-taps — lives here as a pure function over plain data, so it can be
|
|
9
|
+
* unit-tested without mounting Ink and so the component never grows a tangle of
|
|
10
|
+
* `if (key.ctrl && input === "u")` conditionals inline.
|
|
11
|
+
*
|
|
12
|
+
* The input shape is dictated by the framework hook: Ink's `useInput` invokes
|
|
13
|
+
* its handler with `(input: string, key: Key)` where {@link KeyChord} mirrors
|
|
14
|
+
* Ink's `Key` flag bag (arrows, return, escape, ctrl, shift, tab, backspace,
|
|
15
|
+
* delete, meta, …). We re-declare the bag *structurally* here — a plain record
|
|
16
|
+
* of booleans plus the literal text — so the keymap depends on a data shape,
|
|
17
|
+
* not on importing the hook itself. The live handler passes Ink's `key` value
|
|
18
|
+
* directly; it is assignable because the field names match.
|
|
19
|
+
*
|
|
20
|
+
* The output is the console's own intent vocabulary, NOT a mirror of any
|
|
21
|
+
* upstream action enum. An intent is a small tagged record: a `verb` plus the
|
|
22
|
+
* minimal payload the reducer/surface needs to act (the literal text for an
|
|
23
|
+
* insert, the signed delta for a caret move). The surface maps each intent to a
|
|
24
|
+
* {@link ConsoleEvent} dispatch or a host callback; the keymap itself performs
|
|
25
|
+
* no effects.
|
|
26
|
+
*
|
|
27
|
+
* Chording (double-tap escape → tree, double-tap clear → exit) is *stateful*
|
|
28
|
+
* across keystrokes, so it is kept out of the pure classifier: {@link readKey}
|
|
29
|
+
* is memoryless, and {@link advanceChord} folds a prior {@link ChordLatch} plus
|
|
30
|
+
* a fresh intent into the next latch, reporting whether a chord fired. The
|
|
31
|
+
* surface owns the latch value and the timeout that expires it.
|
|
32
|
+
*/
|
|
33
|
+
import type { ModalKind } from "../contract";
|
|
34
|
+
/**
|
|
35
|
+
* The boolean flag bag the framework input hook reports alongside the typed
|
|
36
|
+
* text — re-declared structurally so this module owns no hook import.
|
|
37
|
+
*
|
|
38
|
+
* Every field is the framework's own naming for the corresponding physical key
|
|
39
|
+
* or modifier. The live `useInput` handler passes its `key` argument straight
|
|
40
|
+
* in; it satisfies this shape by field-name compatibility.
|
|
41
|
+
*/
|
|
42
|
+
export interface KeyChord {
|
|
43
|
+
readonly upArrow: boolean;
|
|
44
|
+
readonly downArrow: boolean;
|
|
45
|
+
readonly leftArrow: boolean;
|
|
46
|
+
readonly rightArrow: boolean;
|
|
47
|
+
readonly pageUp: boolean;
|
|
48
|
+
readonly pageDown: boolean;
|
|
49
|
+
readonly return: boolean;
|
|
50
|
+
readonly escape: boolean;
|
|
51
|
+
readonly ctrl: boolean;
|
|
52
|
+
readonly shift: boolean;
|
|
53
|
+
readonly tab: boolean;
|
|
54
|
+
readonly backspace: boolean;
|
|
55
|
+
readonly delete: boolean;
|
|
56
|
+
readonly meta: boolean;
|
|
57
|
+
}
|
|
58
|
+
/**
|
|
59
|
+
* The console's own keystroke-intent verbs.
|
|
60
|
+
*
|
|
61
|
+
* Deliberately *not* a mirror of any upstream keybinding enum: each verb names
|
|
62
|
+
* what the console does, grouped by concern.
|
|
63
|
+
*
|
|
64
|
+
* Editing
|
|
65
|
+
* - `text:type` — printable text to splice at the caret.
|
|
66
|
+
* - `text:newline` — insert a hard line break (soft submit guard).
|
|
67
|
+
* - `edit:erasePrev` — delete the grapheme before the caret.
|
|
68
|
+
* - `edit:eraseNext` — delete the grapheme after the caret.
|
|
69
|
+
* - `edit:clearLine` — wipe the whole composer buffer.
|
|
70
|
+
*
|
|
71
|
+
* Caret / navigation
|
|
72
|
+
* - `nav:left` / `nav:right` — step the caret one column.
|
|
73
|
+
* - `nav:home` / `nav:end` — jump to buffer start / end.
|
|
74
|
+
* - `nav:up` / `nav:down` — recall older / newer history (or move in a list).
|
|
75
|
+
*
|
|
76
|
+
* Session control
|
|
77
|
+
* - `flow:submit` — commit the buffer as a turn.
|
|
78
|
+
* - `flow:dismiss` — escape: close an overlay / cancel completion.
|
|
79
|
+
* - `flow:accept` — tab: accept the highlighted completion.
|
|
80
|
+
* - `flow:interrupt` — abort an in-flight turn.
|
|
81
|
+
* - `flow:suspend` — background the process (job control).
|
|
82
|
+
* - `flow:cycleModel` — rotate to the next model.
|
|
83
|
+
*
|
|
84
|
+
* Model / reasoning
|
|
85
|
+
* - `model:cycleThinking` — advance the reasoning-effort ladder one step.
|
|
86
|
+
*
|
|
87
|
+
* Queue
|
|
88
|
+
* - `queue:dequeue` — pull the most recently queued input back into the
|
|
89
|
+
* composer so it can be edited or dropped.
|
|
90
|
+
*
|
|
91
|
+
* Input sources
|
|
92
|
+
* - `input:pasteImage` — stage an image off the OS clipboard and splice its
|
|
93
|
+
* temp path into the buffer.
|
|
94
|
+
* - `input:externalEditor` — hand the buffer to `$EDITOR` and read it back.
|
|
95
|
+
*
|
|
96
|
+
* Overlays
|
|
97
|
+
* - `overlay:open` — raise a global overlay (settings / sessions /
|
|
98
|
+
* model pickers) directly from a control chord, without typing a slash
|
|
99
|
+
* command. The target overlay rides in {@link ConsoleIntent.overlay}.
|
|
100
|
+
*
|
|
101
|
+
* View toggles
|
|
102
|
+
* - `view:expandTools` — flip whether collapsed tool output (bash / file /
|
|
103
|
+
* grep / edit cards) is rendered in full or summarised.
|
|
104
|
+
* - `view:toggleReasoning` — show/hide the assistant's thinking blocks live.
|
|
105
|
+
*
|
|
106
|
+
* Inert
|
|
107
|
+
* - `none` — the keystroke carries no console meaning.
|
|
108
|
+
*/
|
|
109
|
+
export type ConsoleVerb = "text:type" | "text:newline" | "edit:erasePrev" | "edit:eraseNext" | "edit:clearLine" | "nav:left" | "nav:right" | "nav:home" | "nav:end" | "nav:up" | "nav:down" | "flow:submit" | "flow:dismiss" | "flow:accept" | "flow:interrupt" | "flow:suspend" | "flow:cycleModel" | "model:cycleThinking" | "queue:dequeue" | "input:pasteImage" | "input:externalEditor" | "overlay:open" | "view:expandTools" | "view:toggleReasoning" | "none";
|
|
110
|
+
/**
|
|
111
|
+
* A classified keystroke: a {@link ConsoleVerb} plus the small payload a verb
|
|
112
|
+
* may carry — the literal text for a `text:type` insert, or the target overlay
|
|
113
|
+
* for an `overlay:open`. Every other verb is self-contained, so both payload
|
|
114
|
+
* fields are optional and present only on their owning verb.
|
|
115
|
+
*/
|
|
116
|
+
export interface ConsoleIntent {
|
|
117
|
+
/** What the keystroke means to the console. */
|
|
118
|
+
readonly verb: ConsoleVerb;
|
|
119
|
+
/** The literal text to splice, present only for `text:type`. */
|
|
120
|
+
readonly text?: string;
|
|
121
|
+
/** The overlay to raise, present only for `overlay:open`. */
|
|
122
|
+
readonly overlay?: ModalKind;
|
|
123
|
+
}
|
|
124
|
+
/** The inert intent — a keystroke the console ignores. */
|
|
125
|
+
export declare const NO_INTENT: ConsoleIntent;
|
|
126
|
+
/**
|
|
127
|
+
* Classify one raw key event into a single {@link ConsoleIntent}.
|
|
128
|
+
*
|
|
129
|
+
* Pure and memoryless: identical inputs always yield identical intents, and no
|
|
130
|
+
* cross-keystroke state (chords, timeouts) is consulted — that is the surface's
|
|
131
|
+
* job via {@link advanceChord}. Resolution order is deliberate: control combos
|
|
132
|
+
* and named keys win over raw text, so a `Ctrl+U` never also types "u".
|
|
133
|
+
*
|
|
134
|
+
* @param input the literal text the hook reports (may be empty for a bare key)
|
|
135
|
+
* @param key the framework flag bag describing the physical key + modifiers
|
|
136
|
+
*/
|
|
137
|
+
export declare function readKey(input: string, key: KeyChord): ConsoleIntent;
|
|
138
|
+
/**
|
|
139
|
+
* Which verbs participate in a double-tap chord, and what the second tap fires.
|
|
140
|
+
*
|
|
141
|
+
* A first tap of `flow:dismiss` (escape) primes a chord; a second tap within
|
|
142
|
+
* the surface's window fires `dismiss×2` (open the transcript tree). A first tap
|
|
143
|
+
* of `edit:clearLine` (Ctrl+U on an already-empty buffer) primes a chord whose
|
|
144
|
+
* second tap fires `clear×2` (request exit). Any other intent breaks the latch.
|
|
145
|
+
*/
|
|
146
|
+
export type ChordOutcome = "dismiss×2" | "clear×2";
|
|
147
|
+
/**
|
|
148
|
+
* The cross-keystroke latch the surface carries between key events.
|
|
149
|
+
*
|
|
150
|
+
* `armed` is the verb a prior keystroke primed (or `null` when no chord is in
|
|
151
|
+
* flight). The surface resets it to `null` when its timeout expires.
|
|
152
|
+
*/
|
|
153
|
+
export interface ChordLatch {
|
|
154
|
+
/** The verb a previous keystroke armed, or `null` when nothing is primed. */
|
|
155
|
+
readonly armed: string | null;
|
|
156
|
+
}
|
|
157
|
+
/** A fresh, unarmed latch. */
|
|
158
|
+
export declare const NO_CHORD: ChordLatch;
|
|
159
|
+
/**
|
|
160
|
+
* The result of folding a fresh intent into the prior chord latch.
|
|
161
|
+
*
|
|
162
|
+
* `next` is the latch to carry forward; `fired` is the chord outcome when this
|
|
163
|
+
* keystroke completed a double-tap, otherwise `null`.
|
|
164
|
+
*/
|
|
165
|
+
export interface ChordStep {
|
|
166
|
+
/** The latch to carry into the next keystroke. */
|
|
167
|
+
readonly next: ChordLatch;
|
|
168
|
+
/** The chord that fired on this keystroke, or `null` if none did. */
|
|
169
|
+
readonly fired: ChordOutcome | null;
|
|
170
|
+
}
|
|
171
|
+
/**
|
|
172
|
+
* Fold a fresh {@link ConsoleIntent} into the prior {@link ChordLatch}.
|
|
173
|
+
*
|
|
174
|
+
* Pure: given the same latch and intent it always yields the same step. If the
|
|
175
|
+
* incoming verb matches the armed verb and that verb is chord-eligible, the
|
|
176
|
+
* chord fires and the latch resets. If the incoming verb is chord-eligible but
|
|
177
|
+
* the latch was empty (or armed with a different verb), it arms. Any other
|
|
178
|
+
* intent clears the latch. The timeout that expires a stale latch is the
|
|
179
|
+
* surface's responsibility (it simply resets to {@link NO_CHORD}).
|
|
180
|
+
*
|
|
181
|
+
* @param latch the latch carried from the previous keystroke
|
|
182
|
+
* @param intent the freshly classified intent for this keystroke
|
|
183
|
+
*/
|
|
184
|
+
export declare function advanceChord(latch: ChordLatch, intent: ConsoleIntent): ChordStep;
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Paste coalescing — collapse a large clipboard burst into one compact marker.
|
|
3
|
+
*
|
|
4
|
+
* A terminal in bracketed-paste mode delivers a multi-line paste to the input
|
|
5
|
+
* hook as a single fat `input` string (or, on terminals without bracketing, as
|
|
6
|
+
* a rapid burst of per-character events). Splicing thousands of characters into
|
|
7
|
+
* the visible composer makes the editor unusable. The console instead replaces
|
|
8
|
+
* a large paste with a short placeholder token — a {@link PasteMarker} — that
|
|
9
|
+
* stands in for the hidden body, then re-expands every marker back to its
|
|
10
|
+
* original text at submit time.
|
|
11
|
+
*
|
|
12
|
+
* This module is the pure machinery behind that:
|
|
13
|
+
*
|
|
14
|
+
* 1. {@link classifyPaste} — decide whether a chunk is "large" (worth hiding)
|
|
15
|
+
* from its line/char extent, using {@link PASTE_THRESHOLDS}.
|
|
16
|
+
* 2. {@link PasteVault} — an immutable store mapping each marker token to the
|
|
17
|
+
* text it stands for, minted in submission order.
|
|
18
|
+
* 3. {@link coalescePaste} — fold a large chunk into a vault, returning the
|
|
19
|
+
* marker token to splice plus the grown vault.
|
|
20
|
+
* 4. {@link expandMarkers} — at submit time, rewrite every marker token in the
|
|
21
|
+
* buffer back to the stored body.
|
|
22
|
+
*
|
|
23
|
+
* All four are pure functions over plain data — no Ink, no refs, no timers — so
|
|
24
|
+
* the whole paste pipeline is unit-tested in isolation. The component owns only
|
|
25
|
+
* the live vault value and the burst-coalescing timer; the decisions are here.
|
|
26
|
+
*
|
|
27
|
+
* The marker format is the console's own: `‹clip N · K lines›`, where `N` is the
|
|
28
|
+
* 1-based mint order and `K` is the hidden line count. It is chosen to be
|
|
29
|
+
* visually distinct in the composer, unambiguous to match, and trivial to strip.
|
|
30
|
+
*/
|
|
31
|
+
/**
|
|
32
|
+
* The size at or above which a pasted chunk is hidden behind a marker.
|
|
33
|
+
*
|
|
34
|
+
* A chunk qualifies if it spans at least {@link lines} newlines *or* at least
|
|
35
|
+
* {@link chars} characters — whichever trips first — so both a tall short paste
|
|
36
|
+
* and a wide single-line paste are caught.
|
|
37
|
+
*/
|
|
38
|
+
export interface PasteThresholds {
|
|
39
|
+
/** Minimum newline count to treat a chunk as a large paste. */
|
|
40
|
+
readonly lines: number;
|
|
41
|
+
/** Minimum character count to treat a chunk as a large paste. */
|
|
42
|
+
readonly chars: number;
|
|
43
|
+
}
|
|
44
|
+
/** The default cut-offs above which a paste is coalesced into a marker. */
|
|
45
|
+
export declare const PASTE_THRESHOLDS: PasteThresholds;
|
|
46
|
+
/**
|
|
47
|
+
* The maximum gap, in milliseconds, between per-character events still treated
|
|
48
|
+
* as one burst.
|
|
49
|
+
*
|
|
50
|
+
* On terminals that do not bracket pastes, the hook sees many tiny events in
|
|
51
|
+
* quick succession; the surface accumulates them while consecutive events land
|
|
52
|
+
* within this window, then classifies the assembled chunk once the gap exceeds
|
|
53
|
+
* it. Exposed as data so the coalescing timer and any test share one value.
|
|
54
|
+
*/
|
|
55
|
+
export declare const PASTE_BURST_GAP_MS = 24;
|
|
56
|
+
/** The console's own placeholder format for a hidden paste body. */
|
|
57
|
+
export declare function pasteMarker(ordinal: number, lineCount: number): string;
|
|
58
|
+
/**
|
|
59
|
+
* Decide whether a pasted chunk is large enough to hide behind a marker.
|
|
60
|
+
*
|
|
61
|
+
* Pure: a chunk is "large" when its newline count reaches the line threshold or
|
|
62
|
+
* its length reaches the char threshold. Small chunks are spliced verbatim by
|
|
63
|
+
* the caller; large ones are routed through {@link coalescePaste}.
|
|
64
|
+
*
|
|
65
|
+
* @param chunk the assembled paste text
|
|
66
|
+
* @param thresholds the cut-offs to test against (defaults to {@link PASTE_THRESHOLDS})
|
|
67
|
+
*/
|
|
68
|
+
export declare function classifyPaste(chunk: string, thresholds?: PasteThresholds): "inline" | "coalesce";
|
|
69
|
+
/**
|
|
70
|
+
* The immutable marker → body store.
|
|
71
|
+
*
|
|
72
|
+
* `bodies` maps each minted marker token to the exact text it hides; `minted`
|
|
73
|
+
* is the running count that drives the next ordinal. The store is replaced (not
|
|
74
|
+
* mutated) on every coalesce, so the surface holds it as a plain value and React
|
|
75
|
+
* reconciliation stays correct.
|
|
76
|
+
*/
|
|
77
|
+
export interface PasteVault {
|
|
78
|
+
/** Marker token → the original pasted text it stands for. */
|
|
79
|
+
readonly bodies: ReadonlyMap<string, string>;
|
|
80
|
+
/** How many markers have been minted so far (the next ordinal is this + 1). */
|
|
81
|
+
readonly minted: number;
|
|
82
|
+
}
|
|
83
|
+
/** A fresh, empty vault. */
|
|
84
|
+
export declare const EMPTY_PASTE_VAULT: PasteVault;
|
|
85
|
+
/**
|
|
86
|
+
* The outcome of folding a large paste into a vault.
|
|
87
|
+
*
|
|
88
|
+
* `marker` is the placeholder token the caller splices into the composer at the
|
|
89
|
+
* caret; `vault` is the grown store to carry forward.
|
|
90
|
+
*/
|
|
91
|
+
export interface PasteCapture {
|
|
92
|
+
/** The placeholder token to insert in place of the hidden body. */
|
|
93
|
+
readonly marker: string;
|
|
94
|
+
/** The vault grown by this capture. */
|
|
95
|
+
readonly vault: PasteVault;
|
|
96
|
+
}
|
|
97
|
+
/**
|
|
98
|
+
* Mint a marker for a large paste and record its body in a fresh vault.
|
|
99
|
+
*
|
|
100
|
+
* Pure: derives the next ordinal from `vault.minted`, formats the marker with
|
|
101
|
+
* the hidden line count, and returns a new vault with the body recorded. The
|
|
102
|
+
* caller is expected to have already classified `body` as `coalesce`; passing a
|
|
103
|
+
* small body still works but is rarely useful.
|
|
104
|
+
*
|
|
105
|
+
* @param vault the store to grow (defaults to {@link EMPTY_PASTE_VAULT})
|
|
106
|
+
* @param body the full pasted text to hide
|
|
107
|
+
*/
|
|
108
|
+
export declare function coalescePaste(body: string, vault?: PasteVault): PasteCapture;
|
|
109
|
+
/**
|
|
110
|
+
* Rewrite every paste marker in a buffer back to the text it stands for.
|
|
111
|
+
*
|
|
112
|
+
* Pure: scans the buffer for marker tokens and replaces each with its vault
|
|
113
|
+
* body. A marker with no matching vault entry (e.g. the user deleted half a
|
|
114
|
+
* token, or pasted a look-alike) is left verbatim, so expansion never throws
|
|
115
|
+
* and never loses unrelated text. This is the inverse of {@link coalescePaste}
|
|
116
|
+
* and is run once at submit time.
|
|
117
|
+
*
|
|
118
|
+
* @param buffer the composer text possibly containing markers
|
|
119
|
+
* @param vault the store minted during the current edit
|
|
120
|
+
*/
|
|
121
|
+
export declare function expandMarkers(buffer: string, vault: PasteVault): string;
|
|
122
|
+
/**
|
|
123
|
+
* Report whether a buffer still contains any minted paste marker.
|
|
124
|
+
*
|
|
125
|
+
* A pure convenience the surface uses to skip the expansion pass entirely when
|
|
126
|
+
* nothing was coalesced.
|
|
127
|
+
*
|
|
128
|
+
* @param buffer the composer text to scan
|
|
129
|
+
* @param vault the store of minted markers
|
|
130
|
+
*/
|
|
131
|
+
export declare function hasMarkers(buffer: string, vault: PasteVault): boolean;
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Console mount — render the interactive surface and resolve on exit.
|
|
3
|
+
*
|
|
4
|
+
* The single entry point a run mode calls to take over the terminal: it
|
|
5
|
+
* resolves the colour scheme, assembles the {@link ConsoleProps}, renders the
|
|
6
|
+
* {@link TerminalConsole} through Ink's `render`, and returns a promise that
|
|
7
|
+
* settles when the surface tears down (the user exits, or `requestExit` fires).
|
|
8
|
+
*
|
|
9
|
+
* This is the only console module that performs the actual Ink mount; everything
|
|
10
|
+
* it composes (the reducer, theme, slash registry, input modules, surface
|
|
11
|
+
* components) is pure or presentational. Keeping the mount here lets the rest of
|
|
12
|
+
* the subsystem stay testable without an Ink runtime.
|
|
13
|
+
*/
|
|
14
|
+
import type { OverlayServices, SessionConductor, SlashRegistry } from "./contract";
|
|
15
|
+
/**
|
|
16
|
+
* Options for {@link mountConsole}.
|
|
17
|
+
*
|
|
18
|
+
* Everything is optional with a sensible default: the theme falls back to the
|
|
19
|
+
* default scheme, the slash registry to the built-in catalog, and the seeds to
|
|
20
|
+
* empty. The conductor is the only required input and is passed positionally.
|
|
21
|
+
*/
|
|
22
|
+
export interface MountConsoleOptions {
|
|
23
|
+
/** The colour scheme name to resolve (falls back to the default). */
|
|
24
|
+
readonly scheme?: string | null;
|
|
25
|
+
/** The slash registry to dispatch against (defaults to the built-in catalog). */
|
|
26
|
+
readonly slash?: SlashRegistry;
|
|
27
|
+
/** An optional first user turn to submit on mount. */
|
|
28
|
+
readonly initialInput?: string;
|
|
29
|
+
/** Optional local image paths to attach to the first turn. */
|
|
30
|
+
readonly initialImages?: readonly string[];
|
|
31
|
+
/** Whether to render verbose diagnostics in the banner. */
|
|
32
|
+
readonly verbose?: boolean;
|
|
33
|
+
/** The runtime handles the modal overlays drive; absent on headless paths. */
|
|
34
|
+
readonly services?: OverlayServices;
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* The handle a {@link mountConsole} call resolves with once the surface exits.
|
|
38
|
+
*/
|
|
39
|
+
export interface MountResult {
|
|
40
|
+
/** Whether the surface tore down cleanly. */
|
|
41
|
+
readonly clean: boolean;
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* Render the interactive console for a session and resolve when it exits.
|
|
45
|
+
*
|
|
46
|
+
* Assembles the props, mounts {@link TerminalConsole} via Ink's `render`, and
|
|
47
|
+
* wires an `onExit` callback (and Ink's `waitUntilExit`) so the returned promise
|
|
48
|
+
* settles when the surface is dismissed.
|
|
49
|
+
*
|
|
50
|
+
* @param conductor the session this console drives
|
|
51
|
+
* @param opts optional theme / registry / seed overrides
|
|
52
|
+
*/
|
|
53
|
+
export declare function mountConsole(conductor: SessionConductor, opts?: MountConsoleOptions): Promise<MountResult>;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Auth overlays — the sign-in / sign-out and plugin dialogs.
|
|
3
|
+
*
|
|
4
|
+
* This group owns the four modal kinds tied to credentials and host-supplied
|
|
5
|
+
* overlays: the provider sign-in launcher (`signIn`), the sign-out confirmation
|
|
6
|
+
* (`signOut`), the in-flight OAuth device/redirect flow (`oauth`), and a
|
|
7
|
+
* plugin-supplied select/confirm/input/custom overlay (`plugin`). It is mounted
|
|
8
|
+
* unconditionally by {@link import("./host").OverlayHost}, which routes by
|
|
9
|
+
* {@link ModalState.kind}; this component renders a dialog body only for one of
|
|
10
|
+
* its own kinds and is otherwise inert.
|
|
11
|
+
*
|
|
12
|
+
* Each kind drives an {@link OverlayServices} handle then returns to the
|
|
13
|
+
* composer: `signIn` enumerates the merged provider directory and hands a
|
|
14
|
+
* browser provider off to the `oauth` kind (api-key providers post a status and
|
|
15
|
+
* close); `signOut` lists the saved accounts across providers and removes the
|
|
16
|
+
* chosen one through the vault; `oauth` runs the framework login flow, threading
|
|
17
|
+
* its url/prompt/progress callbacks into a local overlay state the dialog reads;
|
|
18
|
+
* `plugin` presents the host-supplied surface name and closes. React/Ink are
|
|
19
|
+
* obtained the same way the surface component is (default React export from
|
|
20
|
+
* `indusagi/react-host`, `Box`/`Text` from `indusagi/react-host/ink`).
|
|
21
|
+
*/
|
|
22
|
+
import type { OverlayGroupProps } from "./pickers";
|
|
23
|
+
/**
|
|
24
|
+
* The auth overlay group: sign-in, sign-out, OAuth, and plugin overlays.
|
|
25
|
+
*
|
|
26
|
+
* Renders a dialog body only when the active modal kind is one of this group's
|
|
27
|
+
* own; every other kind (and an absent {@link OverlayServices}) yields nothing.
|
|
28
|
+
*
|
|
29
|
+
* @param props the forwarded overlay props
|
|
30
|
+
*/
|
|
31
|
+
export declare function AuthOverlays(props: OverlayGroupProps): JSX.Element | null;
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* OverlayHost — the single mount point for every modal overlay.
|
|
3
|
+
*
|
|
4
|
+
* The console surface raises overlays by writing a {@link ModalState} into the
|
|
5
|
+
* reducer; this component is the one place that turns that state into a rendered
|
|
6
|
+
* dialog. Rather than a hand-written `switch` over {@link ModalKind}, it mounts
|
|
7
|
+
* three group components unconditionally and forwards each the same props — the
|
|
8
|
+
* active {@link ModalState}, the {@link OverlayServices} runtime, the theme
|
|
9
|
+
* adapter, the {@link ConsoleDispatch}, and a `closeModal` callback. Each group
|
|
10
|
+
* owns a disjoint slice of the kind space and renders a body only for its own
|
|
11
|
+
* kinds:
|
|
12
|
+
*
|
|
13
|
+
* - {@link PickerOverlays} — `models`, `scopedModels`, `theme`, `settings`.
|
|
14
|
+
* - {@link SessionOverlays} — `sessions`, `tree`, `userTurns`.
|
|
15
|
+
* - {@link AuthOverlays} — `signIn`, `signOut`, `oauth`, `plugin`.
|
|
16
|
+
*
|
|
17
|
+
* When no overlay is raised (`kind === "none"`) the host renders nothing, so the
|
|
18
|
+
* composer keeps focus and the groups are never mounted needlessly.
|
|
19
|
+
*/
|
|
20
|
+
import type { ConsoleDispatch, InkThemeAdapter, ModalState, OverlayServices } from "../contract";
|
|
21
|
+
/**
|
|
22
|
+
* The props the console surface threads into {@link OverlayHost}.
|
|
23
|
+
*
|
|
24
|
+
* The same five fields are forwarded verbatim to each overlay group; the host
|
|
25
|
+
* adds no routing logic of its own beyond the `none` short-circuit.
|
|
26
|
+
*/
|
|
27
|
+
export interface OverlayHostProps {
|
|
28
|
+
/** The active modal overlay (kind + opaque payload). */
|
|
29
|
+
readonly modal: ModalState;
|
|
30
|
+
/** The runtime handles overlays drive; absent on headless mount paths. */
|
|
31
|
+
readonly services?: OverlayServices;
|
|
32
|
+
/** The framework adapter that turns token roles into terminal colours. */
|
|
33
|
+
readonly theme: InkThemeAdapter;
|
|
34
|
+
/** Dispatch a reducer event to mutate console state. */
|
|
35
|
+
readonly dispatch: ConsoleDispatch;
|
|
36
|
+
/** Drop the active overlay back to the composer. */
|
|
37
|
+
readonly closeModal: () => void;
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* Render the active modal overlay, or nothing when none is raised.
|
|
41
|
+
*
|
|
42
|
+
* @param props the modal state, runtime services, theme, dispatch, and closer
|
|
43
|
+
*/
|
|
44
|
+
export declare function OverlayHost(props: OverlayHostProps): JSX.Element | null;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Overlays subsystem — public barrel.
|
|
3
|
+
*
|
|
4
|
+
* Re-exports the single overlay mount point ({@link OverlayHost}) plus the three
|
|
5
|
+
* group components it forwards to ({@link PickerOverlays}, {@link SessionOverlays},
|
|
6
|
+
* {@link AuthOverlays}) and the shared prop shapes. The console surface imports
|
|
7
|
+
* the overlay host from `src/console/overlays` rather than reaching into the
|
|
8
|
+
* individual modules; the dialog bodies are filled by a later pass.
|
|
9
|
+
*/
|
|
10
|
+
export { OverlayHost, type OverlayHostProps } from "./host";
|
|
11
|
+
export { PickerOverlays, type OverlayGroupProps } from "./pickers";
|
|
12
|
+
export { SessionOverlays } from "./sessions";
|
|
13
|
+
export { AuthOverlays } from "./auth";
|