@bastani/atomic 0.9.12 → 0.9.13-alpha.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +150 -0
- package/README.md +35 -17
- package/dist/builtin/i-have-adhd/CHANGELOG.md +17 -0
- package/dist/builtin/i-have-adhd/LICENSE +21 -0
- package/dist/builtin/i-have-adhd/README.md +18 -0
- package/dist/builtin/i-have-adhd/index.ts +238 -0
- package/dist/builtin/i-have-adhd/package.json +56 -0
- package/dist/builtin/i-have-adhd/skills/i-have-adhd/SKILL.md +140 -0
- package/dist/builtin/intercom/CHANGELOG.md +25 -0
- package/dist/builtin/intercom/README.md +30 -16
- package/dist/builtin/intercom/broker/bounded-stderr-install.ts +18 -0
- package/dist/builtin/intercom/broker/bounded-stderr.ts +132 -0
- package/dist/builtin/intercom/broker/broker.ts +12 -23
- package/dist/builtin/intercom/broker/client.ts +81 -5
- package/dist/builtin/intercom/broker/paths.ts +9 -0
- package/dist/builtin/intercom/broker/presence-handler.ts +103 -0
- package/dist/builtin/intercom/broker/spawn.ts +128 -29
- package/dist/builtin/intercom/contact-supervisor-tool.ts +13 -3
- package/dist/builtin/intercom/foreground-detach-handoff.ts +30 -14
- package/dist/builtin/intercom/group.ts +64 -25
- package/dist/builtin/intercom/index-heavy.ts +51 -8
- package/dist/builtin/intercom/index.ts +50 -22
- package/dist/builtin/intercom/intercom-tool.ts +82 -5
- package/dist/builtin/intercom/intercom-utils.ts +15 -29
- package/dist/builtin/intercom/lazy-subagent-ack.ts +11 -6
- package/dist/builtin/intercom/package.json +2 -3
- package/dist/builtin/intercom/runtime-group.ts +13 -0
- package/dist/builtin/intercom/skills/intercom/SKILL.md +30 -2
- package/dist/builtin/intercom/source-ownership.ts +9 -12
- package/dist/builtin/intercom/subagent-relay.ts +32 -16
- package/dist/builtin/intercom/terminal-ordering-barrier.ts +21 -4
- package/dist/builtin/intercom/types.ts +3 -1
- package/dist/builtin/intercom/ui/compose.ts +8 -6
- package/dist/builtin/intercom/ui/session-list.ts +7 -5
- package/dist/builtin/mcp/CHANGELOG.md +19 -0
- package/dist/builtin/mcp/README.md +3 -1
- package/dist/builtin/mcp/glimpse-ui.ts +2 -1
- package/dist/builtin/mcp/index.ts +10 -26
- package/dist/builtin/mcp/mcp-panel.ts +35 -34
- package/dist/builtin/mcp/mcp-setup-panel.ts +35 -33
- package/dist/builtin/mcp/npx-resolver.ts +3 -2
- package/dist/builtin/mcp/package.json +3 -3
- package/dist/builtin/mcp/sampling-handler.ts +5 -1
- package/dist/builtin/mcp/server-manager.ts +4 -7
- package/dist/builtin/mcp/startup-warmup.ts +20 -8
- package/dist/builtin/subagents/CHANGELOG.md +63 -0
- package/dist/builtin/subagents/README.md +144 -351
- package/dist/builtin/subagents/agents/worker.md +1 -1
- package/dist/builtin/subagents/package.json +5 -5
- package/dist/builtin/subagents/prompts/parallel-context-build.md +2 -2
- package/dist/builtin/subagents/prompts/parallel-handoff-plan.md +4 -4
- package/dist/builtin/subagents/prompts/review-loop.md +1 -1
- package/dist/builtin/subagents/skills/subagent/SKILL.md +39 -102
- package/dist/builtin/subagents/src/agents/agent-discovery.ts +1 -29
- package/dist/builtin/subagents/src/agents/agent-loaders.ts +1 -40
- package/dist/builtin/subagents/src/agents/agent-management-helpers.ts +6 -135
- package/dist/builtin/subagents/src/agents/agent-management.ts +52 -282
- package/dist/builtin/subagents/src/agents/agent-paths.ts +0 -22
- package/dist/builtin/subagents/src/agents/agent-types.ts +0 -40
- package/dist/builtin/subagents/src/agents/agents.ts +0 -3
- package/dist/builtin/subagents/src/agents/identity.ts +2 -4
- package/dist/builtin/subagents/src/agents/skills-paths.ts +8 -1
- package/dist/builtin/subagents/src/extension/doctor.ts +4 -24
- package/dist/builtin/subagents/src/extension/fanout-child.ts +76 -56
- package/dist/builtin/subagents/src/extension/index.ts +32 -39
- package/dist/builtin/subagents/src/extension/prompt-guidance.ts +2 -2
- package/dist/builtin/subagents/src/extension/schemas.ts +1 -157
- package/dist/builtin/subagents/src/extension/startup-maintenance.ts +25 -46
- package/dist/builtin/subagents/src/extension/tool-description.ts +4 -13
- package/dist/builtin/subagents/src/intercom/intercom-bridge.ts +6 -2
- package/dist/builtin/subagents/src/intercom/result-intercom.ts +27 -29
- package/dist/builtin/subagents/src/intercom/supervisor-authorization.ts +9 -2
- package/dist/builtin/subagents/src/runs/background/async-job-tracker.ts +248 -435
- package/dist/builtin/subagents/src/runs/background/completion-notification.ts +8 -3
- package/dist/builtin/subagents/src/runs/background/notify.ts +83 -26
- package/dist/builtin/subagents/src/runs/foreground/execution-run-sync.ts +1 -281
- package/dist/builtin/subagents/src/runs/foreground/execution-updates.ts +0 -5
- package/dist/builtin/subagents/src/runs/foreground/execution.ts +1 -4
- package/dist/builtin/subagents/src/runs/foreground/inprocess-run-sync.ts +559 -0
- package/dist/builtin/subagents/src/runs/foreground/subagent-executor-async.ts +103 -259
- package/dist/builtin/subagents/src/runs/foreground/subagent-executor-context.ts +29 -31
- package/dist/builtin/subagents/src/runs/foreground/subagent-executor-input.ts +10 -173
- package/dist/builtin/subagents/src/runs/foreground/subagent-executor-parallel-task.ts +7 -5
- package/dist/builtin/subagents/src/runs/foreground/subagent-executor-parallel.ts +13 -6
- package/dist/builtin/subagents/src/runs/foreground/subagent-executor-resume.ts +1 -646
- package/dist/builtin/subagents/src/runs/foreground/subagent-executor-runtime.ts +2 -7
- package/dist/builtin/subagents/src/runs/foreground/subagent-executor-single.ts +14 -7
- package/dist/builtin/subagents/src/runs/foreground/subagent-executor-status.ts +39 -20
- package/dist/builtin/subagents/src/runs/foreground/subagent-executor-types.ts +16 -11
- package/dist/builtin/subagents/src/runs/foreground/subagent-executor-worktree.ts +1 -14
- package/dist/builtin/subagents/src/runs/foreground/subagent-executor.ts +194 -104
- package/dist/builtin/subagents/src/runs/inprocess/background-single.ts +195 -0
- package/dist/builtin/subagents/src/runs/inprocess/background.ts +90 -0
- package/dist/builtin/subagents/src/runs/inprocess/child-policy.ts +27 -0
- package/dist/builtin/subagents/src/runs/inprocess/control-registry.ts +55 -0
- package/dist/builtin/subagents/src/runs/inprocess/control-status.ts +106 -0
- package/dist/builtin/subagents/src/runs/inprocess/index.ts +50 -0
- package/dist/builtin/subagents/src/runs/inprocess/nested-routing.ts +218 -0
- package/dist/builtin/subagents/src/runs/{shared/subagent-prompt-runtime.ts → inprocess/prompt-behavior.ts} +37 -75
- package/dist/builtin/subagents/src/runs/inprocess/runner.ts +1392 -0
- package/dist/builtin/subagents/src/runs/{shared/nested-events.ts → inprocess/runtime-support/nested-api.ts} +13 -7
- package/dist/builtin/subagents/src/runs/{shared/nested-events-control.ts → inprocess/runtime-support/nested-control.ts} +18 -17
- package/dist/builtin/subagents/src/runs/{shared/nested-events-core.ts → inprocess/runtime-support/nested-core.ts} +14 -61
- package/dist/builtin/subagents/src/runs/{shared/nested-events-projection.ts → inprocess/runtime-support/nested-projection.ts} +4 -12
- package/dist/builtin/subagents/src/runs/{shared/nested-events-registry.ts → inprocess/runtime-support/nested-registry.ts} +19 -4
- package/dist/builtin/subagents/src/runs/{shared/nested-render.ts → inprocess/runtime-support/nested-rendering.ts} +3 -3
- package/dist/builtin/subagents/src/runs/{shared/nested-events-sanitize.ts → inprocess/runtime-support/nested-sanitize.ts} +4 -6
- package/dist/builtin/subagents/src/runs/inprocess.ts +1 -0
- package/dist/builtin/subagents/src/runs/shared/intercom-group.ts +23 -7
- package/dist/builtin/subagents/src/runs/shared/model-candidate-filter.ts +0 -1
- package/dist/builtin/subagents/src/runs/shared/model-fallback.ts +15 -492
- package/dist/builtin/subagents/src/runs/shared/parallel-utils.ts +13 -97
- package/dist/builtin/subagents/src/runs/shared/run-history.ts +3 -5
- package/dist/builtin/subagents/src/runs/shared/single-output.ts +4 -4
- package/dist/builtin/subagents/src/runs/shared/worktree.ts +7 -2
- package/dist/builtin/subagents/src/shared/formatters.ts +2 -56
- package/dist/builtin/subagents/src/shared/settings.ts +14 -350
- package/dist/builtin/subagents/src/shared/types-async.ts +8 -32
- package/dist/builtin/subagents/src/shared/types-config.ts +29 -13
- package/dist/builtin/subagents/src/shared/types-depth.ts +30 -56
- package/dist/builtin/subagents/src/shared/types-results.ts +18 -60
- package/dist/builtin/subagents/src/shared/types-runtime.ts +0 -1
- package/dist/builtin/subagents/src/shared/utils.ts +5 -0
- package/dist/builtin/subagents/src/slash/bridge-settlement.ts +87 -0
- package/dist/builtin/subagents/src/slash/prompt-template-bridge.ts +49 -10
- package/dist/builtin/subagents/src/slash/slash-bridge.ts +27 -7
- package/dist/builtin/subagents/src/slash/slash-commands.ts +37 -82
- package/dist/builtin/subagents/src/slash/slash-live-state.ts +3 -94
- package/dist/builtin/subagents/src/tui/render-event-formatting.ts +3 -35
- package/dist/builtin/subagents/src/tui/render-progress.ts +89 -0
- package/dist/builtin/subagents/src/tui/render-result-compact.ts +77 -68
- package/dist/builtin/subagents/src/tui/render-result.ts +79 -99
- package/dist/builtin/subagents/src/tui/render-stable-output.ts +1 -6
- package/dist/builtin/subagents/src/tui/render-status-progress.ts +8 -5
- package/dist/builtin/subagents/src/tui/render-widget-graph.ts +6 -63
- package/dist/builtin/subagents/src/tui/render-widget.ts +0 -24
- package/dist/builtin/web-access/CHANGELOG.md +14 -0
- package/dist/builtin/web-access/chrome-cookies.ts +3 -2
- package/dist/builtin/web-access/github-api.ts +7 -6
- package/dist/builtin/web-access/github-extract.ts +2 -1
- package/dist/builtin/web-access/package.json +3 -3
- package/dist/builtin/web-access/subprocess.ts +3 -1
- package/dist/builtin/web-access/summary-review.ts +2 -2
- package/dist/builtin/web-access/web-search-features.ts +38 -22
- package/dist/builtin/web-access/web-search-summary.ts +2 -2
- package/dist/builtin/workflows/CHANGELOG.md +70 -0
- package/dist/builtin/workflows/README.md +54 -4
- package/dist/builtin/workflows/builtin/open-claude-design-utils.ts +3 -0
- package/dist/builtin/workflows/builtin/ralph-models.ts +25 -20
- package/dist/builtin/workflows/builtin/shared-prompts.ts +5 -2
- package/dist/builtin/workflows/package.json +2 -2
- package/dist/builtin/workflows/src/durable/backend.ts +25 -1
- package/dist/builtin/workflows/src/durable/completed-catalog-stage-groups.ts +60 -3
- package/dist/builtin/workflows/src/durable/completed-catalog.ts +67 -1
- package/dist/builtin/workflows/src/durable/completed-subtree.ts +22 -7
- package/dist/builtin/workflows/src/durable/dbos-metadata.ts +15 -1
- package/dist/builtin/workflows/src/durable/local-command.ts +2 -1
- package/dist/builtin/workflows/src/durable/resume-runtime.ts +1 -0
- package/dist/builtin/workflows/src/durable/tool-primitive.ts +4 -28
- package/dist/builtin/workflows/src/durable/types.ts +22 -1
- package/dist/builtin/workflows/src/durable/workflow-child-result.ts +3 -1
- package/dist/builtin/workflows/src/engine/primitives/workflow.ts +1 -1
- package/dist/builtin/workflows/src/engine/run-durable-finalize.ts +10 -2
- package/dist/builtin/workflows/src/engine/run-durable-topology.ts +9 -2
- package/dist/builtin/workflows/src/engine/run.ts +17 -1
- package/dist/builtin/workflows/src/extension/atomic-stage-session.ts +18 -39
- package/dist/builtin/workflows/src/extension/companions.ts +1 -1
- package/dist/builtin/workflows/src/extension/config-file-loader.ts +10 -1
- package/dist/builtin/workflows/src/extension/config-loader.ts +1 -1
- package/dist/builtin/workflows/src/extension/dispatcher.ts +4 -0
- package/dist/builtin/workflows/src/extension/index.bundle.mjs +2095 -1181
- package/dist/builtin/workflows/src/extension/lifecycle-notifications.ts +332 -39
- package/dist/builtin/workflows/src/extension/mcp.ts +13 -2
- package/dist/builtin/workflows/src/extension/render-result.ts +5 -0
- package/dist/builtin/workflows/src/extension/runtime-durable-resume.ts +6 -3
- package/dist/builtin/workflows/src/extension/runtime.ts +7 -1
- package/dist/builtin/workflows/src/extension/ui-surface.ts +7 -20
- package/dist/builtin/workflows/src/extension/wiring.ts +86 -17
- package/dist/builtin/workflows/src/extension/workflow-command-registration.ts +12 -3
- package/dist/builtin/workflows/src/extension/workflow-durable-resume-command.ts +5 -2
- package/dist/builtin/workflows/src/extension/workflow-ports.ts +14 -6
- package/dist/builtin/workflows/src/extension/workflow-prompts.ts +11 -6
- package/dist/builtin/workflows/src/extension/workflow-run-control-command.ts +17 -7
- package/dist/builtin/workflows/src/extension/workflow-status-summary.ts +11 -0
- package/dist/builtin/workflows/src/extension/workflow-tool-content.ts +18 -1
- package/dist/builtin/workflows/src/extension/workflow-tool-control.ts +12 -8
- package/dist/builtin/workflows/src/extension/workflow-tool.ts +9 -4
- package/dist/builtin/workflows/src/intercom/intercom-routing.ts +12 -6
- package/dist/builtin/workflows/src/intercom/result-intercom.ts +35 -4
- package/dist/builtin/workflows/src/runs/background/quit.ts +28 -4
- package/dist/builtin/workflows/src/runs/background/resume-acknowledgements.ts +2 -1
- package/dist/builtin/workflows/src/runs/background/status.ts +70 -8
- package/dist/builtin/workflows/src/runs/foreground/executor-abort.ts +11 -3
- package/dist/builtin/workflows/src/runs/foreground/executor-child-boundary.ts +2 -1
- package/dist/builtin/workflows/src/runs/foreground/executor-direct-helpers.ts +4 -0
- package/dist/builtin/workflows/src/runs/foreground/executor-exit-manager.ts +26 -2
- package/dist/builtin/workflows/src/runs/foreground/executor-prompt-nodes.ts +3 -1
- package/dist/builtin/workflows/src/runs/foreground/executor-run-finalizers.ts +3 -2
- package/dist/builtin/workflows/src/runs/foreground/executor-stage-control.ts +1 -1
- package/dist/builtin/workflows/src/runs/foreground/stage-runner-context.ts +1 -1
- package/dist/builtin/workflows/src/runs/foreground/stage-runner-controller.ts +688 -38
- package/dist/builtin/workflows/src/runs/foreground/stage-runner-types.ts +3 -1
- package/dist/builtin/workflows/src/runs/shared/model-fallback-failures.ts +19 -514
- package/dist/builtin/workflows/src/runs/shared/retry.ts +44 -0
- package/dist/builtin/workflows/src/runs/shared/worktree-git-runner.ts +5 -2
- package/dist/builtin/workflows/src/runs/shared/worktree-setup.ts +2 -0
- package/dist/builtin/workflows/src/shared/authoring-contract-stage.d.ts +10 -3
- package/dist/builtin/workflows/src/shared/authoring-contract-stage.ts +11 -3
- package/dist/builtin/workflows/src/shared/authoring-contract-ui.d.ts +5 -1
- package/dist/builtin/workflows/src/shared/authoring-contract-ui.ts +5 -0
- package/dist/builtin/workflows/src/shared/graph-store-snapshot.ts +34 -2
- package/dist/builtin/workflows/src/shared/persistence-restore-helpers.ts +28 -6
- package/dist/builtin/workflows/src/shared/persistence-restore.ts +3 -0
- package/dist/builtin/workflows/src/shared/persistence-session-entries.ts +4 -0
- package/dist/builtin/workflows/src/shared/run-indicator-status.ts +75 -0
- package/dist/builtin/workflows/src/shared/stage-ui-broker.ts +10 -4
- package/dist/builtin/workflows/src/shared/store-public-types.ts +47 -9
- package/dist/builtin/workflows/src/shared/store-run-methods.ts +42 -8
- package/dist/builtin/workflows/src/shared/store-stage-methods.ts +31 -8
- package/dist/builtin/workflows/src/shared/store-types.ts +35 -1
- package/dist/builtin/workflows/src/shared/timing.ts +10 -0
- package/dist/builtin/workflows/src/shared/workflow-artifact-env.ts +21 -0
- package/dist/builtin/workflows/src/shared/workflow-artifacts.ts +2 -5
- package/dist/builtin/workflows/src/tui/chat-surface-message.ts +22 -2
- package/dist/builtin/workflows/src/tui/dispatch-confirm.ts +37 -2
- package/dist/builtin/workflows/src/tui/graph-view-constants.ts +0 -15
- package/dist/builtin/workflows/src/tui/graph-view-graph-render.ts +38 -47
- package/dist/builtin/workflows/src/tui/graph-view-input.ts +48 -45
- package/dist/builtin/workflows/src/tui/graph-view-layout.ts +266 -0
- package/dist/builtin/workflows/src/tui/graph-view-render-helpers.ts +1 -86
- package/dist/builtin/workflows/src/tui/graph-view-render.ts +209 -91
- package/dist/builtin/workflows/src/tui/graph-view-state.ts +5 -7
- package/dist/builtin/workflows/src/tui/graph-view-types.ts +13 -7
- package/dist/builtin/workflows/src/tui/inline-form-editor.ts +8 -6
- package/dist/builtin/workflows/src/tui/inline-form-overlay.ts +2 -1
- package/dist/builtin/workflows/src/tui/inputs-overlay.ts +7 -4
- package/dist/builtin/workflows/src/tui/inputs-picker-input.ts +66 -0
- package/dist/builtin/workflows/src/tui/keybindings-adapter.ts +1 -0
- package/dist/builtin/workflows/src/tui/node-card.ts +1 -1
- package/dist/builtin/workflows/src/tui/overlay-adapter.ts +18 -46
- package/dist/builtin/workflows/src/tui/overlay-terminal-modes.ts +15 -26
- package/dist/builtin/workflows/src/tui/session-list.ts +1 -1
- package/dist/builtin/workflows/src/tui/session-overlays.ts +19 -12
- package/dist/builtin/workflows/src/tui/session-picker.ts +47 -4
- package/dist/builtin/workflows/src/tui/stage-chat-view-footer-status.ts +5 -14
- package/dist/builtin/workflows/src/tui/stage-chat-view-input.ts +8 -7
- package/dist/builtin/workflows/src/tui/stage-chat-view-state.ts +12 -3
- package/dist/builtin/workflows/src/tui/stage-chat-view-types.ts +1 -11
- package/dist/builtin/workflows/src/tui/stage-chat-view.ts +0 -8
- package/dist/builtin/workflows/src/tui/status-list.ts +32 -47
- package/dist/builtin/workflows/src/tui/store-widget-installer.ts +9 -5
- package/dist/builtin/workflows/src/tui/widget.ts +16 -46
- package/dist/builtin/workflows/src/tui/workflow-attach-pane-types.ts +0 -15
- package/dist/builtin/workflows/src/tui/workflow-attach-pane.ts +2 -26
- package/dist/builtin/workflows/src/tui/workflow-status.ts +3 -3
- package/dist/bun/split-loader.js +2 -0
- package/dist/bun/split-loader.js.map +1 -1
- package/dist/cli/args.d.ts.map +1 -1
- package/dist/cli/args.js +6 -2
- package/dist/cli/args.js.map +1 -1
- package/dist/cli/auth-check.d.ts +35 -0
- package/dist/cli/auth-check.d.ts.map +1 -0
- package/dist/cli/auth-check.js +100 -0
- package/dist/cli/auth-check.js.map +1 -0
- package/dist/cli/auth-command.d.ts +27 -0
- package/dist/cli/auth-command.d.ts.map +1 -0
- package/dist/cli/auth-command.js +150 -0
- package/dist/cli/auth-command.js.map +1 -0
- package/dist/cli/config-selector.js +2 -2
- package/dist/cli/config-selector.js.map +1 -1
- package/dist/cli/credential-print.d.ts +18 -23
- package/dist/cli/credential-print.d.ts.map +1 -1
- package/dist/cli/credential-print.js +42 -88
- package/dist/cli/credential-print.js.map +1 -1
- package/dist/cli/experimental/auth.d.ts +16 -0
- package/dist/cli/experimental/auth.d.ts.map +1 -0
- package/dist/cli/experimental/auth.js +13 -0
- package/dist/cli/experimental/auth.js.map +1 -0
- package/dist/cli/experimental/cli.d.ts +6 -0
- package/dist/cli/experimental/cli.d.ts.map +1 -0
- package/dist/cli/experimental/cli.js +5 -0
- package/dist/cli/experimental/cli.js.map +1 -0
- package/dist/cli/experimental/command-options.d.ts +17 -0
- package/dist/cli/experimental/command-options.d.ts.map +1 -0
- package/dist/cli/experimental/command-options.js +35 -0
- package/dist/cli/experimental/command-options.js.map +1 -0
- package/dist/cli/experimental/command.d.ts +63 -0
- package/dist/cli/experimental/command.d.ts.map +1 -0
- package/dist/cli/experimental/command.js +127 -0
- package/dist/cli/experimental/command.js.map +1 -0
- package/dist/cli/experimental/commands/client.d.ts +13 -0
- package/dist/cli/experimental/commands/client.d.ts.map +1 -0
- package/dist/cli/experimental/commands/client.js +25 -0
- package/dist/cli/experimental/commands/client.js.map +1 -0
- package/dist/cli/experimental/commands/pi.d.ts +15 -0
- package/dist/cli/experimental/commands/pi.d.ts.map +1 -0
- package/dist/cli/experimental/commands/pi.js +28 -0
- package/dist/cli/experimental/commands/pi.js.map +1 -0
- package/dist/cli/experimental/commands/server.d.ts +13 -0
- package/dist/cli/experimental/commands/server.d.ts.map +1 -0
- package/dist/cli/experimental/commands/server.js +25 -0
- package/dist/cli/experimental/commands/server.js.map +1 -0
- package/dist/cli/experimental/transport-address.d.ts +10 -0
- package/dist/cli/experimental/transport-address.d.ts.map +1 -0
- package/dist/cli/experimental/transport-address.js +38 -0
- package/dist/cli/experimental/transport-address.js.map +1 -0
- package/dist/cli/session-picker.js +2 -2
- package/dist/cli/session-picker.js.map +1 -1
- package/dist/cli/startup-ui.d.ts.map +1 -1
- package/dist/cli/startup-ui.js +4 -10
- package/dist/cli/startup-ui.js.map +1 -1
- package/dist/cli.js +2 -0
- package/dist/cli.js.map +1 -1
- package/dist/client/index.d.ts +3 -0
- package/dist/client/index.d.ts.map +1 -0
- package/dist/client/index.js +3 -0
- package/dist/client/index.js.map +1 -0
- package/dist/client/remote-session.d.ts +64 -0
- package/dist/client/remote-session.d.ts.map +1 -0
- package/dist/client/remote-session.js +351 -0
- package/dist/client/remote-session.js.map +1 -0
- package/dist/client/transcript.d.ts +12 -0
- package/dist/client/transcript.d.ts.map +1 -0
- package/dist/client/transcript.js +98 -0
- package/dist/client/transcript.js.map +1 -0
- package/dist/core/agent-session-auto-compaction.d.ts +17 -13
- package/dist/core/agent-session-auto-compaction.d.ts.map +1 -1
- package/dist/core/agent-session-auto-compaction.js +192 -67
- package/dist/core/agent-session-auto-compaction.js.map +1 -1
- package/dist/core/agent-session-bash.d.ts.map +1 -1
- package/dist/core/agent-session-bash.js +2 -0
- package/dist/core/agent-session-bash.js.map +1 -1
- package/dist/core/agent-session-compaction.d.ts +3 -6
- package/dist/core/agent-session-compaction.d.ts.map +1 -1
- package/dist/core/agent-session-compaction.js +64 -28
- package/dist/core/agent-session-compaction.js.map +1 -1
- package/dist/core/agent-session-events.d.ts +1 -11
- package/dist/core/agent-session-events.d.ts.map +1 -1
- package/dist/core/agent-session-events.js +64 -37
- package/dist/core/agent-session-events.js.map +1 -1
- package/dist/core/agent-session-extension-bindings.d.ts.map +1 -1
- package/dist/core/agent-session-extension-bindings.js +4 -2
- package/dist/core/agent-session-extension-bindings.js.map +1 -1
- package/dist/core/agent-session-methods.d.ts +19 -2
- package/dist/core/agent-session-methods.d.ts.map +1 -1
- package/dist/core/agent-session-methods.js.map +1 -1
- package/dist/core/agent-session-models.d.ts +1 -0
- package/dist/core/agent-session-models.d.ts.map +1 -1
- package/dist/core/agent-session-models.js +23 -5
- package/dist/core/agent-session-models.js.map +1 -1
- package/dist/core/agent-session-post-tool-compaction.d.ts.map +1 -1
- package/dist/core/agent-session-post-tool-compaction.js +22 -6
- package/dist/core/agent-session-post-tool-compaction.js.map +1 -1
- package/dist/core/agent-session-prompt.d.ts.map +1 -1
- package/dist/core/agent-session-prompt.js +4 -0
- package/dist/core/agent-session-prompt.js.map +1 -1
- package/dist/core/agent-session-retry.d.ts +21 -4
- package/dist/core/agent-session-retry.d.ts.map +1 -1
- package/dist/core/agent-session-retry.js +232 -106
- package/dist/core/agent-session-retry.js.map +1 -1
- package/dist/core/agent-session-runtime-auth.d.ts.map +1 -1
- package/dist/core/agent-session-runtime-auth.js +3 -0
- package/dist/core/agent-session-runtime-auth.js.map +1 -1
- package/dist/core/agent-session-state.d.ts.map +1 -1
- package/dist/core/agent-session-state.js +2 -1
- package/dist/core/agent-session-state.js.map +1 -1
- package/dist/core/agent-session-tool-hooks.d.ts.map +1 -1
- package/dist/core/agent-session-tool-hooks.js +37 -14
- package/dist/core/agent-session-tool-hooks.js.map +1 -1
- package/dist/core/agent-session-tool-registry.d.ts.map +1 -1
- package/dist/core/agent-session-tool-registry.js +5 -1
- package/dist/core/agent-session-tool-registry.js.map +1 -1
- package/dist/core/agent-session-types.d.ts +5 -1
- package/dist/core/agent-session-types.d.ts.map +1 -1
- package/dist/core/agent-session-types.js.map +1 -1
- package/dist/core/agent-session.d.ts +18 -1
- package/dist/core/agent-session.d.ts.map +1 -1
- package/dist/core/agent-session.js +37 -0
- package/dist/core/agent-session.js.map +1 -1
- package/dist/core/atomic-guide-command.d.ts.map +1 -1
- package/dist/core/atomic-guide-command.js +2 -3
- package/dist/core/atomic-guide-command.js.map +1 -1
- package/dist/core/auth-storage.d.ts +18 -1
- package/dist/core/auth-storage.d.ts.map +1 -1
- package/dist/core/auth-storage.js +83 -0
- package/dist/core/auth-storage.js.map +1 -1
- package/dist/core/bash-executor.d.ts +5 -0
- package/dist/core/bash-executor.d.ts.map +1 -1
- package/dist/core/bash-executor.js +43 -19
- package/dist/core/bash-executor.js.map +1 -1
- package/dist/core/builtin-packages.d.ts.map +1 -1
- package/dist/core/builtin-packages.js +6 -0
- package/dist/core/builtin-packages.js.map +1 -1
- package/dist/core/codex-fast-mode.d.ts.map +1 -1
- package/dist/core/codex-fast-mode.js +8 -3
- package/dist/core/codex-fast-mode.js.map +1 -1
- package/dist/core/exec.d.ts.map +1 -1
- package/dist/core/exec.js +4 -3
- package/dist/core/exec.js.map +1 -1
- package/dist/core/extensions/agent-events.d.ts +0 -1
- package/dist/core/extensions/agent-events.d.ts.map +1 -1
- package/dist/core/extensions/agent-events.js.map +1 -1
- package/dist/core/extensions/api-types.d.ts +5 -3
- package/dist/core/extensions/api-types.d.ts.map +1 -1
- package/dist/core/extensions/api-types.js.map +1 -1
- package/dist/core/extensions/context-types.d.ts +40 -0
- package/dist/core/extensions/context-types.d.ts.map +1 -1
- package/dist/core/extensions/context-types.js.map +1 -1
- package/dist/core/extensions/event-results.d.ts +5 -0
- package/dist/core/extensions/event-results.d.ts.map +1 -1
- package/dist/core/extensions/event-results.js.map +1 -1
- package/dist/core/extensions/index.d.ts +2 -1
- package/dist/core/extensions/index.d.ts.map +1 -1
- package/dist/core/extensions/index.js +1 -0
- package/dist/core/extensions/index.js.map +1 -1
- package/dist/core/extensions/loader-api.d.ts.map +1 -1
- package/dist/core/extensions/loader-api.js +14 -1
- package/dist/core/extensions/loader-api.js.map +1 -1
- package/dist/core/extensions/loader-discovery.d.ts.map +1 -1
- package/dist/core/extensions/loader-discovery.js +3 -23
- package/dist/core/extensions/loader-discovery.js.map +1 -1
- package/dist/core/extensions/loader-runtime.d.ts.map +1 -1
- package/dist/core/extensions/loader-runtime.js +20 -3
- package/dist/core/extensions/loader-runtime.js.map +1 -1
- package/dist/core/extensions/loader-virtual-modules.d.ts.map +1 -1
- package/dist/core/extensions/loader-virtual-modules.js +7 -1
- package/dist/core/extensions/loader-virtual-modules.js.map +1 -1
- package/dist/core/extensions/message-types.d.ts +6 -0
- package/dist/core/extensions/message-types.d.ts.map +1 -1
- package/dist/core/extensions/message-types.js.map +1 -1
- package/dist/core/extensions/provider-types.d.ts +9 -3
- package/dist/core/extensions/provider-types.d.ts.map +1 -1
- package/dist/core/extensions/provider-types.js.map +1 -1
- package/dist/core/extensions/runner-context.d.ts +2 -1
- package/dist/core/extensions/runner-context.d.ts.map +1 -1
- package/dist/core/extensions/runner-context.js +4 -0
- package/dist/core/extensions/runner-context.js.map +1 -1
- package/dist/core/extensions/runner-registries.d.ts +2 -1
- package/dist/core/extensions/runner-registries.d.ts.map +1 -1
- package/dist/core/extensions/runner-registries.js +3 -0
- package/dist/core/extensions/runner-registries.js.map +1 -1
- package/dist/core/extensions/runner-ui.d.ts.map +1 -1
- package/dist/core/extensions/runner-ui.js +1 -0
- package/dist/core/extensions/runner-ui.js.map +1 -1
- package/dist/core/extensions/runner.d.ts +4 -2
- package/dist/core/extensions/runner.d.ts.map +1 -1
- package/dist/core/extensions/runner.js +9 -3
- package/dist/core/extensions/runner.js.map +1 -1
- package/dist/core/extensions/runtime-types.d.ts +4 -1
- package/dist/core/extensions/runtime-types.d.ts.map +1 -1
- package/dist/core/extensions/runtime-types.js.map +1 -1
- package/dist/core/extensions/stale-context.d.ts +5 -0
- package/dist/core/extensions/stale-context.d.ts.map +1 -0
- package/dist/core/extensions/stale-context.js +11 -0
- package/dist/core/extensions/stale-context.js.map +1 -0
- package/dist/core/extensions/ui-types.d.ts +14 -11
- package/dist/core/extensions/ui-types.d.ts.map +1 -1
- package/dist/core/extensions/ui-types.js.map +1 -1
- package/dist/core/footer-data-provider.d.ts.map +1 -1
- package/dist/core/footer-data-provider.js +3 -2
- package/dist/core/footer-data-provider.js.map +1 -1
- package/dist/core/index.d.ts +1 -1
- package/dist/core/index.d.ts.map +1 -1
- package/dist/core/index.js.map +1 -1
- package/dist/core/intercom-runtime-group.d.ts +13 -0
- package/dist/core/intercom-runtime-group.d.ts.map +1 -0
- package/dist/core/intercom-runtime-group.js +23 -0
- package/dist/core/intercom-runtime-group.js.map +1 -0
- package/dist/core/keybindings.d.ts +44 -4
- package/dist/core/keybindings.d.ts.map +1 -1
- package/dist/core/model-config.d.ts +39 -5
- package/dist/core/model-config.d.ts.map +1 -1
- package/dist/core/model-config.js +6 -0
- package/dist/core/model-config.js.map +1 -1
- package/dist/core/model-fallback-failures.d.ts +30 -0
- package/dist/core/model-fallback-failures.d.ts.map +1 -0
- package/dist/core/model-fallback-failures.js +610 -0
- package/dist/core/model-fallback-failures.js.map +1 -0
- package/dist/core/model-registry.d.ts +12 -5
- package/dist/core/model-registry.d.ts.map +1 -1
- package/dist/core/model-registry.js +20 -12
- package/dist/core/model-registry.js.map +1 -1
- package/dist/core/model-resolver-cli.d.ts.map +1 -1
- package/dist/core/model-resolver-cli.js +46 -14
- package/dist/core/model-resolver-cli.js.map +1 -1
- package/dist/core/model-resolver-defaults.d.ts.map +1 -1
- package/dist/core/model-resolver-defaults.js +2 -0
- package/dist/core/model-resolver-defaults.js.map +1 -1
- package/dist/core/model-resolver-scope.d.ts +2 -0
- package/dist/core/model-resolver-scope.d.ts.map +1 -1
- package/dist/core/model-resolver-scope.js +12 -9
- package/dist/core/model-resolver-scope.js.map +1 -1
- package/dist/core/model-resolver.d.ts +1 -1
- package/dist/core/model-resolver.d.ts.map +1 -1
- package/dist/core/model-resolver.js +1 -1
- package/dist/core/model-resolver.js.map +1 -1
- package/dist/core/model-runtime-snapshot.d.ts +10 -0
- package/dist/core/model-runtime-snapshot.d.ts.map +1 -1
- package/dist/core/model-runtime-snapshot.js +14 -1
- package/dist/core/model-runtime-snapshot.js.map +1 -1
- package/dist/core/model-runtime-streaming.d.ts +3 -1
- package/dist/core/model-runtime-streaming.d.ts.map +1 -1
- package/dist/core/model-runtime-streaming.js +16 -0
- package/dist/core/model-runtime-streaming.js.map +1 -1
- package/dist/core/model-runtime-types.d.ts +2 -0
- package/dist/core/model-runtime-types.d.ts.map +1 -1
- package/dist/core/model-runtime-types.js.map +1 -1
- package/dist/core/model-runtime.d.ts +37 -10
- package/dist/core/model-runtime.d.ts.map +1 -1
- package/dist/core/model-runtime.js +312 -113
- package/dist/core/model-runtime.js.map +1 -1
- package/dist/core/oauth-login.d.ts.map +1 -1
- package/dist/core/oauth-login.js +2 -1
- package/dist/core/oauth-login.js.map +1 -1
- package/dist/core/openai-responses-payload-sanitizer.d.ts.map +1 -1
- package/dist/core/openai-responses-payload-sanitizer.js +18 -2
- package/dist/core/openai-responses-payload-sanitizer.js.map +1 -1
- package/dist/core/package-manager-git.d.ts.map +1 -1
- package/dist/core/package-manager-git.js +56 -10
- package/dist/core/package-manager-git.js.map +1 -1
- package/dist/core/package-manager-manifest.d.ts +1 -1
- package/dist/core/package-manager-manifest.d.ts.map +1 -1
- package/dist/core/package-manager-manifest.js +19 -9
- package/dist/core/package-manager-manifest.js.map +1 -1
- package/dist/core/package-manager-resource-collector.js.map +1 -1
- package/dist/core/package-manager-resource-files.d.ts.map +1 -1
- package/dist/core/package-manager-resource-files.js +1 -2
- package/dist/core/package-manager-resource-files.js.map +1 -1
- package/dist/core/provider-composer-internal.d.ts +10 -2
- package/dist/core/provider-composer-internal.d.ts.map +1 -1
- package/dist/core/provider-composer-internal.js +7 -3
- package/dist/core/provider-composer-internal.js.map +1 -1
- package/dist/core/provider-composer.d.ts.map +1 -1
- package/dist/core/provider-composer.js +19 -12
- package/dist/core/provider-composer.js.map +1 -1
- package/dist/core/provider-display-names.d.ts.map +1 -1
- package/dist/core/provider-display-names.js +2 -0
- package/dist/core/provider-display-names.js.map +1 -1
- package/dist/core/remote-catalog-provider.d.ts.map +1 -1
- package/dist/core/remote-catalog-provider.js +77 -67
- package/dist/core/remote-catalog-provider.js.map +1 -1
- package/dist/core/resolve-config-value.d.ts.map +1 -1
- package/dist/core/resolve-config-value.js +3 -0
- package/dist/core/resolve-config-value.js.map +1 -1
- package/dist/core/resource-loader-context-files.d.ts.map +1 -1
- package/dist/core/resource-loader-context-files.js +13 -5
- package/dist/core/resource-loader-context-files.js.map +1 -1
- package/dist/core/retry-policy.d.ts +30 -0
- package/dist/core/retry-policy.d.ts.map +1 -0
- package/dist/core/retry-policy.js +25 -0
- package/dist/core/retry-policy.js.map +1 -0
- package/dist/core/runtime-credentials.d.ts +5 -5
- package/dist/core/runtime-credentials.d.ts.map +1 -1
- package/dist/core/runtime-credentials.js +8 -8
- package/dist/core/runtime-credentials.js.map +1 -1
- package/dist/core/sdk-types.d.ts +8 -2
- package/dist/core/sdk-types.d.ts.map +1 -1
- package/dist/core/sdk-types.js.map +1 -1
- package/dist/core/sdk.d.ts.map +1 -1
- package/dist/core/sdk.js +6 -1
- package/dist/core/sdk.js.map +1 -1
- package/dist/core/session-manager-core.d.ts +2 -0
- package/dist/core/session-manager-core.d.ts.map +1 -1
- package/dist/core/session-manager-core.js +7 -0
- package/dist/core/session-manager-core.js.map +1 -1
- package/dist/core/session-manager-list.d.ts.map +1 -1
- package/dist/core/session-manager-list.js +3 -1
- package/dist/core/session-manager-list.js.map +1 -1
- package/dist/core/settings-manager-ui-accessors.d.ts +8 -1
- package/dist/core/settings-manager-ui-accessors.d.ts.map +1 -1
- package/dist/core/settings-manager-ui-accessors.js +31 -0
- package/dist/core/settings-manager-ui-accessors.js.map +1 -1
- package/dist/core/settings-manager.d.ts +2 -1
- package/dist/core/settings-manager.d.ts.map +1 -1
- package/dist/core/settings-manager.js.map +1 -1
- package/dist/core/settings-merge.d.ts.map +1 -1
- package/dist/core/settings-merge.js +13 -16
- package/dist/core/settings-merge.js.map +1 -1
- package/dist/core/settings-types.d.ts +5 -0
- package/dist/core/settings-types.d.ts.map +1 -1
- package/dist/core/settings-types.js.map +1 -1
- package/dist/core/slash-commands.d.ts.map +1 -1
- package/dist/core/slash-commands.js +0 -2
- package/dist/core/slash-commands.js.map +1 -1
- package/dist/core/tools/ask-user-question/state/questionnaire-session.d.ts +2 -2
- package/dist/core/tools/ask-user-question/state/questionnaire-session.d.ts.map +1 -1
- package/dist/core/tools/ask-user-question/state/questionnaire-session.js +39 -2
- package/dist/core/tools/ask-user-question/state/questionnaire-session.js.map +1 -1
- package/dist/core/tools/bash-async-execution.d.ts +2 -0
- package/dist/core/tools/bash-async-execution.d.ts.map +1 -1
- package/dist/core/tools/bash-async-execution.js +4 -1
- package/dist/core/tools/bash-async-execution.js.map +1 -1
- package/dist/core/tools/bash-async-output.d.ts +1 -0
- package/dist/core/tools/bash-async-output.d.ts.map +1 -1
- package/dist/core/tools/bash-async-output.js +62 -27
- package/dist/core/tools/bash-async-output.js.map +1 -1
- package/dist/core/tools/bash-pty-native.d.ts.map +1 -1
- package/dist/core/tools/bash-pty-native.js +2 -1
- package/dist/core/tools/bash-pty-native.js.map +1 -1
- package/dist/core/tools/bash.d.ts +9 -0
- package/dist/core/tools/bash.d.ts.map +1 -1
- package/dist/core/tools/bash.js +34 -16
- package/dist/core/tools/bash.js.map +1 -1
- package/dist/core/tools/directory-tree.d.ts +11 -0
- package/dist/core/tools/directory-tree.d.ts.map +1 -1
- package/dist/core/tools/directory-tree.js +26 -0
- package/dist/core/tools/directory-tree.js.map +1 -1
- package/dist/core/tools/edit.d.ts +4 -0
- package/dist/core/tools/edit.d.ts.map +1 -1
- package/dist/core/tools/edit.js +12 -8
- package/dist/core/tools/edit.js.map +1 -1
- package/dist/core/tools/errno.d.ts +25 -0
- package/dist/core/tools/errno.d.ts.map +1 -0
- package/dist/core/tools/errno.js +29 -0
- package/dist/core/tools/errno.js.map +1 -0
- package/dist/core/tools/find.d.ts +8 -1
- package/dist/core/tools/find.d.ts.map +1 -1
- package/dist/core/tools/find.js +20 -15
- package/dist/core/tools/find.js.map +1 -1
- package/dist/core/tools/grep.d.ts.map +1 -1
- package/dist/core/tools/grep.js +5 -1
- package/dist/core/tools/grep.js.map +1 -1
- package/dist/core/tools/index.d.ts +7 -7
- package/dist/core/tools/index.d.ts.map +1 -1
- package/dist/core/tools/index.js +7 -7
- package/dist/core/tools/index.js.map +1 -1
- package/dist/core/tools/ls.d.ts +4 -0
- package/dist/core/tools/ls.d.ts.map +1 -1
- package/dist/core/tools/ls.js +5 -1
- package/dist/core/tools/ls.js.map +1 -1
- package/dist/core/tools/output-accumulator.d.ts +8 -1
- package/dist/core/tools/output-accumulator.d.ts.map +1 -1
- package/dist/core/tools/output-accumulator.js +50 -28
- package/dist/core/tools/output-accumulator.js.map +1 -1
- package/dist/core/tools/oversized-tool-result.d.ts.map +1 -1
- package/dist/core/tools/oversized-tool-result.js +129 -22
- package/dist/core/tools/oversized-tool-result.js.map +1 -1
- package/dist/core/tools/persisted-output-file.d.ts +80 -0
- package/dist/core/tools/persisted-output-file.d.ts.map +1 -0
- package/dist/core/tools/persisted-output-file.js +284 -0
- package/dist/core/tools/persisted-output-file.js.map +1 -0
- package/dist/core/tools/read.d.ts +10 -0
- package/dist/core/tools/read.d.ts.map +1 -1
- package/dist/core/tools/read.js +20 -8
- package/dist/core/tools/read.js.map +1 -1
- package/dist/core/tools/search.d.ts +4 -0
- package/dist/core/tools/search.d.ts.map +1 -1
- package/dist/core/tools/search.js +5 -1
- package/dist/core/tools/search.js.map +1 -1
- package/dist/core/tools/session-temp-cleanup.d.ts +133 -0
- package/dist/core/tools/session-temp-cleanup.d.ts.map +1 -0
- package/dist/core/tools/session-temp-cleanup.js +669 -0
- package/dist/core/tools/session-temp-cleanup.js.map +1 -0
- package/dist/core/tools/session-temp-dir.d.ts +116 -0
- package/dist/core/tools/session-temp-dir.d.ts.map +1 -0
- package/dist/core/tools/session-temp-dir.js +409 -0
- package/dist/core/tools/session-temp-dir.js.map +1 -0
- package/dist/core/tools/tool-definition-wrapper.d.ts.map +1 -1
- package/dist/core/tools/tool-definition-wrapper.js +2 -0
- package/dist/core/tools/tool-definition-wrapper.js.map +1 -1
- package/dist/core/tools/tool-limits.d.ts +11 -0
- package/dist/core/tools/tool-limits.d.ts.map +1 -1
- package/dist/core/tools/tool-limits.js +11 -0
- package/dist/core/tools/tool-limits.js.map +1 -1
- package/dist/core/tools/windows-directory-security.d.ts +82 -0
- package/dist/core/tools/windows-directory-security.d.ts.map +1 -0
- package/dist/core/tools/windows-directory-security.js +238 -0
- package/dist/core/tools/windows-directory-security.js.map +1 -0
- package/dist/core/tools/write.d.ts +4 -0
- package/dist/core/tools/write.d.ts.map +1 -1
- package/dist/core/tools/write.js +8 -4
- package/dist/core/tools/write.js.map +1 -1
- package/dist/core/trust-manager.js +1 -1
- package/dist/core/trust-manager.js.map +1 -1
- package/dist/extensions/llama/huggingface-ui.d.ts +1 -1
- package/dist/extensions/llama/huggingface-ui.d.ts.map +1 -1
- package/dist/extensions/llama/huggingface-ui.js +6 -5
- package/dist/extensions/llama/huggingface-ui.js.map +1 -1
- package/dist/extensions/llama/index.d.ts.map +1 -1
- package/dist/extensions/llama/index.js +11 -2
- package/dist/extensions/llama/index.js.map +1 -1
- package/dist/extensions/llama/provider.d.ts.map +1 -1
- package/dist/extensions/llama/provider.js +24 -8
- package/dist/extensions/llama/provider.js.map +1 -1
- package/dist/extensions/llama/ui.d.ts.map +1 -1
- package/dist/extensions/llama/ui.js +5 -2
- package/dist/extensions/llama/ui.js.map +1 -1
- package/dist/index-extensions.d.ts +2 -2
- package/dist/index-extensions.d.ts.map +1 -1
- package/dist/index-extensions.js +1 -1
- package/dist/index-extensions.js.map +1 -1
- package/dist/index.d.ts +8 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +8 -2
- package/dist/index.js.map +1 -1
- package/dist/main-runtime-api-key.d.ts +2 -2
- package/dist/main-runtime-api-key.d.ts.map +1 -1
- package/dist/main-runtime-api-key.js +7 -2
- package/dist/main-runtime-api-key.js.map +1 -1
- package/dist/main-session.js +2 -2
- package/dist/main-session.js.map +1 -1
- package/dist/main.d.ts.map +1 -1
- package/dist/main.js +130 -26
- package/dist/main.js.map +1 -1
- package/dist/modes/index.d.ts +1 -0
- package/dist/modes/index.d.ts.map +1 -1
- package/dist/modes/index.js.map +1 -1
- package/dist/modes/interactive/components/assistant-message.d.ts +6 -2
- package/dist/modes/interactive/components/assistant-message.d.ts.map +1 -1
- package/dist/modes/interactive/components/assistant-message.js +18 -5
- package/dist/modes/interactive/components/assistant-message.js.map +1 -1
- package/dist/modes/interactive/components/bordered-loader.d.ts +1 -1
- package/dist/modes/interactive/components/bordered-loader.d.ts.map +1 -1
- package/dist/modes/interactive/components/bordered-loader.js +5 -4
- package/dist/modes/interactive/components/bordered-loader.js.map +1 -1
- package/dist/modes/interactive/components/branch-summary-message.d.ts +2 -1
- package/dist/modes/interactive/components/branch-summary-message.d.ts.map +1 -1
- package/dist/modes/interactive/components/branch-summary-message.js +3 -2
- package/dist/modes/interactive/components/branch-summary-message.js.map +1 -1
- package/dist/modes/interactive/components/chat-message-renderer.d.ts +17 -7
- package/dist/modes/interactive/components/chat-message-renderer.d.ts.map +1 -1
- package/dist/modes/interactive/components/chat-message-renderer.js +35 -69
- package/dist/modes/interactive/components/chat-message-renderer.js.map +1 -1
- package/dist/modes/interactive/components/chat-session-host-actions.d.ts.map +1 -1
- package/dist/modes/interactive/components/chat-session-host-actions.js +11 -3
- package/dist/modes/interactive/components/chat-session-host-actions.js.map +1 -1
- package/dist/modes/interactive/components/chat-session-host-events.d.ts.map +1 -1
- package/dist/modes/interactive/components/chat-session-host-events.js +25 -15
- package/dist/modes/interactive/components/chat-session-host-events.js.map +1 -1
- package/dist/modes/interactive/components/chat-session-host-rendering.d.ts.map +1 -1
- package/dist/modes/interactive/components/chat-session-host-rendering.js +9 -4
- package/dist/modes/interactive/components/chat-session-host-rendering.js.map +1 -1
- package/dist/modes/interactive/components/chat-session-host-state.d.ts +2 -0
- package/dist/modes/interactive/components/chat-session-host-state.d.ts.map +1 -1
- package/dist/modes/interactive/components/chat-session-host-state.js +2 -0
- package/dist/modes/interactive/components/chat-session-host-state.js.map +1 -1
- package/dist/modes/interactive/components/chat-session-host.d.ts +9 -0
- package/dist/modes/interactive/components/chat-session-host.d.ts.map +1 -1
- package/dist/modes/interactive/components/chat-session-host.js +14 -0
- package/dist/modes/interactive/components/chat-session-host.js.map +1 -1
- package/dist/modes/interactive/components/chat-transcript.d.ts +32 -0
- package/dist/modes/interactive/components/chat-transcript.d.ts.map +1 -1
- package/dist/modes/interactive/components/chat-transcript.js +173 -5
- package/dist/modes/interactive/components/chat-transcript.js.map +1 -1
- package/dist/modes/interactive/components/config-selector-list.d.ts +1 -1
- package/dist/modes/interactive/components/config-selector-list.d.ts.map +1 -1
- package/dist/modes/interactive/components/config-selector-list.js +9 -8
- package/dist/modes/interactive/components/config-selector-list.js.map +1 -1
- package/dist/modes/interactive/components/custom-editor.d.ts +1 -1
- package/dist/modes/interactive/components/custom-editor.d.ts.map +1 -1
- package/dist/modes/interactive/components/custom-editor.js +32 -10
- package/dist/modes/interactive/components/custom-editor.js.map +1 -1
- package/dist/modes/interactive/components/custom-message.d.ts +2 -1
- package/dist/modes/interactive/components/custom-message.d.ts.map +1 -1
- package/dist/modes/interactive/components/custom-message.js +3 -2
- package/dist/modes/interactive/components/custom-message.js.map +1 -1
- package/dist/modes/interactive/components/extension-editor.d.ts +1 -1
- package/dist/modes/interactive/components/extension-editor.d.ts.map +1 -1
- package/dist/modes/interactive/components/extension-editor.js +3 -2
- package/dist/modes/interactive/components/extension-editor.js.map +1 -1
- package/dist/modes/interactive/components/extension-input.d.ts +1 -1
- package/dist/modes/interactive/components/extension-input.d.ts.map +1 -1
- package/dist/modes/interactive/components/extension-input.js +1 -0
- package/dist/modes/interactive/components/extension-input.js.map +1 -1
- package/dist/modes/interactive/components/extension-selector.d.ts +1 -1
- package/dist/modes/interactive/components/extension-selector.d.ts.map +1 -1
- package/dist/modes/interactive/components/extension-selector.js +4 -0
- package/dist/modes/interactive/components/extension-selector.js.map +1 -1
- package/dist/modes/interactive/components/fast-mode-selector.d.ts +1 -1
- package/dist/modes/interactive/components/fast-mode-selector.d.ts.map +1 -1
- package/dist/modes/interactive/components/fast-mode-selector.js +7 -5
- package/dist/modes/interactive/components/fast-mode-selector.js.map +1 -1
- package/dist/modes/interactive/components/first-time-setup.d.ts +1 -1
- package/dist/modes/interactive/components/first-time-setup.d.ts.map +1 -1
- package/dist/modes/interactive/components/first-time-setup.js +3 -0
- package/dist/modes/interactive/components/first-time-setup.js.map +1 -1
- package/dist/modes/interactive/components/footer.js +1 -1
- package/dist/modes/interactive/components/footer.js.map +1 -1
- package/dist/modes/interactive/components/host-input-form.d.ts +1 -1
- package/dist/modes/interactive/components/host-input-form.d.ts.map +1 -1
- package/dist/modes/interactive/components/host-input-form.js +6 -5
- package/dist/modes/interactive/components/host-input-form.js.map +1 -1
- package/dist/modes/interactive/components/index.d.ts +1 -1
- package/dist/modes/interactive/components/index.d.ts.map +1 -1
- package/dist/modes/interactive/components/index.js.map +1 -1
- package/dist/modes/interactive/components/login-dialog.d.ts +1 -1
- package/dist/modes/interactive/components/login-dialog.d.ts.map +1 -1
- package/dist/modes/interactive/components/login-dialog.js +2 -1
- package/dist/modes/interactive/components/login-dialog.js.map +1 -1
- package/dist/modes/interactive/components/markdown-transform.d.ts +3 -0
- package/dist/modes/interactive/components/markdown-transform.d.ts.map +1 -0
- package/dist/modes/interactive/components/markdown-transform.js +19 -0
- package/dist/modes/interactive/components/markdown-transform.js.map +1 -0
- package/dist/modes/interactive/components/mermaid.d.ts +11 -0
- package/dist/modes/interactive/components/mermaid.d.ts.map +1 -0
- package/dist/modes/interactive/components/mermaid.js +81 -0
- package/dist/modes/interactive/components/mermaid.js.map +1 -0
- package/dist/modes/interactive/components/model-selector.d.ts +2 -2
- package/dist/modes/interactive/components/model-selector.d.ts.map +1 -1
- package/dist/modes/interactive/components/model-selector.js +9 -6
- package/dist/modes/interactive/components/model-selector.js.map +1 -1
- package/dist/modes/interactive/components/oauth-selector.d.ts +1 -1
- package/dist/modes/interactive/components/oauth-selector.d.ts.map +1 -1
- package/dist/modes/interactive/components/oauth-selector.js +3 -2
- package/dist/modes/interactive/components/oauth-selector.js.map +1 -1
- package/dist/modes/interactive/components/scoped-models-selector.d.ts +6 -2
- package/dist/modes/interactive/components/scoped-models-selector.d.ts.map +1 -1
- package/dist/modes/interactive/components/scoped-models-selector.js +39 -13
- package/dist/modes/interactive/components/scoped-models-selector.js.map +1 -1
- package/dist/modes/interactive/components/session-selector-delete.d.ts.map +1 -1
- package/dist/modes/interactive/components/session-selector-delete.js +2 -1
- package/dist/modes/interactive/components/session-selector-delete.js.map +1 -1
- package/dist/modes/interactive/components/session-selector-list.d.ts +1 -1
- package/dist/modes/interactive/components/session-selector-list.d.ts.map +1 -1
- package/dist/modes/interactive/components/session-selector-list.js +12 -11
- package/dist/modes/interactive/components/session-selector-list.js.map +1 -1
- package/dist/modes/interactive/components/session-selector.d.ts +1 -1
- package/dist/modes/interactive/components/session-selector.d.ts.map +1 -1
- package/dist/modes/interactive/components/session-selector.js +3 -3
- package/dist/modes/interactive/components/session-selector.js.map +1 -1
- package/dist/modes/interactive/components/settings-selector-handlers.d.ts.map +1 -1
- package/dist/modes/interactive/components/settings-selector-handlers.js +9 -0
- package/dist/modes/interactive/components/settings-selector-handlers.js.map +1 -1
- package/dist/modes/interactive/components/settings-selector-items.d.ts.map +1 -1
- package/dist/modes/interactive/components/settings-selector-items.js +21 -0
- package/dist/modes/interactive/components/settings-selector-items.js.map +1 -1
- package/dist/modes/interactive/components/settings-selector-submenus.d.ts +3 -3
- package/dist/modes/interactive/components/settings-selector-submenus.d.ts.map +1 -1
- package/dist/modes/interactive/components/settings-selector-submenus.js +6 -1
- package/dist/modes/interactive/components/settings-selector-submenus.js.map +1 -1
- package/dist/modes/interactive/components/settings-selector-types.d.ts +8 -1
- package/dist/modes/interactive/components/settings-selector-types.d.ts.map +1 -1
- package/dist/modes/interactive/components/settings-selector-types.js.map +1 -1
- package/dist/modes/interactive/components/skill-invocation-message.d.ts +2 -1
- package/dist/modes/interactive/components/skill-invocation-message.d.ts.map +1 -1
- package/dist/modes/interactive/components/skill-invocation-message.js +3 -2
- package/dist/modes/interactive/components/skill-invocation-message.js.map +1 -1
- package/dist/modes/interactive/components/tool-execution.d.ts +2 -0
- package/dist/modes/interactive/components/tool-execution.d.ts.map +1 -1
- package/dist/modes/interactive/components/tool-execution.js +50 -27
- package/dist/modes/interactive/components/tool-execution.js.map +1 -1
- package/dist/modes/interactive/components/tree-selector-component.d.ts +1 -1
- package/dist/modes/interactive/components/tree-selector-component.d.ts.map +1 -1
- package/dist/modes/interactive/components/tree-selector-component.js +2 -3
- package/dist/modes/interactive/components/tree-selector-component.js.map +1 -1
- package/dist/modes/interactive/components/tree-selector-help.d.ts +1 -1
- package/dist/modes/interactive/components/tree-selector-help.d.ts.map +1 -1
- package/dist/modes/interactive/components/tree-selector-help.js +3 -1
- package/dist/modes/interactive/components/tree-selector-help.js.map +1 -1
- package/dist/modes/interactive/components/tree-selector-label-input.d.ts +1 -1
- package/dist/modes/interactive/components/tree-selector-label-input.d.ts.map +1 -1
- package/dist/modes/interactive/components/tree-selector-label-input.js +1 -0
- package/dist/modes/interactive/components/tree-selector-label-input.js.map +1 -1
- package/dist/modes/interactive/components/tree-selector-list.d.ts +1 -1
- package/dist/modes/interactive/components/tree-selector-list.d.ts.map +1 -1
- package/dist/modes/interactive/components/tree-selector-list.js +3 -0
- package/dist/modes/interactive/components/tree-selector-list.js.map +1 -1
- package/dist/modes/interactive/components/trust-selector.d.ts +1 -1
- package/dist/modes/interactive/components/trust-selector.d.ts.map +1 -1
- package/dist/modes/interactive/components/trust-selector.js +4 -0
- package/dist/modes/interactive/components/trust-selector.js.map +1 -1
- package/dist/modes/interactive/components/user-message-selector.d.ts +1 -1
- package/dist/modes/interactive/components/user-message-selector.d.ts.map +1 -1
- package/dist/modes/interactive/components/user-message-selector.js +4 -0
- package/dist/modes/interactive/components/user-message-selector.js.map +1 -1
- package/dist/modes/interactive/components/user-message.d.ts +4 -1
- package/dist/modes/interactive/components/user-message.d.ts.map +1 -1
- package/dist/modes/interactive/components/user-message.js +10 -2
- package/dist/modes/interactive/components/user-message.js.map +1 -1
- package/dist/modes/interactive/external-editor.d.ts.map +1 -1
- package/dist/modes/interactive/external-editor.js +2 -1
- package/dist/modes/interactive/external-editor.js.map +1 -1
- package/dist/modes/interactive/interactive-agent-events.js +36 -18
- package/dist/modes/interactive/interactive-agent-events.js.map +1 -1
- package/dist/modes/interactive/interactive-auth-login.js +9 -2
- package/dist/modes/interactive/interactive-auth-login.js.map +1 -1
- package/dist/modes/interactive/interactive-auth-routing.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-auth-routing.js +5 -1
- package/dist/modes/interactive/interactive-auth-routing.js.map +1 -1
- package/dist/modes/interactive/interactive-bash-compact.js +16 -4
- package/dist/modes/interactive/interactive-bash-compact.js.map +1 -1
- package/dist/modes/interactive/interactive-deferred-startup.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-deferred-startup.js +3 -0
- package/dist/modes/interactive/interactive-deferred-startup.js.map +1 -1
- package/dist/modes/interactive/interactive-editor-actions.js +2 -0
- package/dist/modes/interactive/interactive-editor-actions.js.map +1 -1
- package/dist/modes/interactive/interactive-extension-context.js +12 -7
- package/dist/modes/interactive/interactive-extension-context.js.map +1 -1
- package/dist/modes/interactive/interactive-extension-custom-ui.js +1 -0
- package/dist/modes/interactive/interactive-extension-custom-ui.js.map +1 -1
- package/dist/modes/interactive/interactive-extension-dialogs.js +7 -0
- package/dist/modes/interactive/interactive-extension-dialogs.js.map +1 -1
- package/dist/modes/interactive/interactive-extension-widgets.js +7 -24
- package/dist/modes/interactive/interactive-extension-widgets.js.map +1 -1
- package/dist/modes/interactive/interactive-input-handling.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-input-handling.js +9 -8
- package/dist/modes/interactive/interactive-input-handling.js.map +1 -1
- package/dist/modes/interactive/interactive-mode-base.d.ts +52 -3
- package/dist/modes/interactive/interactive-mode-base.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-mode-base.js +143 -5
- package/dist/modes/interactive/interactive-mode-base.js.map +1 -1
- package/dist/modes/interactive/interactive-mode-deps.d.ts +2 -2
- package/dist/modes/interactive/interactive-mode-deps.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-mode-deps.js +2 -2
- package/dist/modes/interactive/interactive-mode-deps.js.map +1 -1
- package/dist/modes/interactive/interactive-mode-surface.d.ts +9 -3
- package/dist/modes/interactive/interactive-mode-surface.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-mode-surface.js.map +1 -1
- package/dist/modes/interactive/interactive-mode.d.ts +1 -0
- package/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-mode.js +1 -0
- package/dist/modes/interactive/interactive-mode.js.map +1 -1
- package/dist/modes/interactive/interactive-model-routing.js +107 -41
- package/dist/modes/interactive/interactive-model-routing.js.map +1 -1
- package/dist/modes/interactive/interactive-process-lifecycle.js +1 -1
- package/dist/modes/interactive/interactive-process-lifecycle.js.map +1 -1
- package/dist/modes/interactive/interactive-render-chat.js +24 -6
- package/dist/modes/interactive/interactive-render-chat.js.map +1 -1
- package/dist/modes/interactive/interactive-selectors.js +44 -5
- package/dist/modes/interactive/interactive-selectors.js.map +1 -1
- package/dist/modes/interactive/interactive-session-runtime.js +1 -0
- package/dist/modes/interactive/interactive-session-runtime.js.map +1 -1
- package/dist/modes/interactive/interactive-slash-commands.js +9 -4
- package/dist/modes/interactive/interactive-slash-commands.js.map +1 -1
- package/dist/modes/interactive/interactive-startup.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-startup.js +37 -18
- package/dist/modes/interactive/interactive-startup.js.map +1 -1
- package/dist/modes/interactive/interactive-tui.d.ts +21 -0
- package/dist/modes/interactive/interactive-tui.d.ts.map +1 -0
- package/dist/modes/interactive/interactive-tui.js +279 -0
- package/dist/modes/interactive/interactive-tui.js.map +1 -0
- package/dist/modes/interactive/streaming-assistant-message.d.ts +34 -0
- package/dist/modes/interactive/streaming-assistant-message.d.ts.map +1 -0
- package/dist/modes/interactive/streaming-assistant-message.js +76 -0
- package/dist/modes/interactive/streaming-assistant-message.js.map +1 -0
- package/dist/modes/interactive/theme/catppuccin-frappe.json +1 -0
- package/dist/modes/interactive/theme/catppuccin-latte.json +1 -0
- package/dist/modes/interactive/theme/catppuccin-macchiato.json +1 -0
- package/dist/modes/interactive/theme/catppuccin-mocha.json +1 -0
- package/dist/modes/interactive/theme/dark.json +1 -0
- package/dist/modes/interactive/theme/light.json +1 -0
- package/dist/modes/interactive/theme/terminal-detection.d.ts +10 -0
- package/dist/modes/interactive/theme/terminal-detection.d.ts.map +1 -1
- package/dist/modes/interactive/theme/terminal-detection.js +19 -0
- package/dist/modes/interactive/theme/terminal-detection.js.map +1 -1
- package/dist/modes/interactive/theme/theme-class.d.ts +2 -2
- package/dist/modes/interactive/theme/theme-class.d.ts.map +1 -1
- package/dist/modes/interactive/theme/theme-class.js +5 -1
- package/dist/modes/interactive/theme/theme-class.js.map +1 -1
- package/dist/modes/interactive/theme/theme-controller.d.ts +3 -1
- package/dist/modes/interactive/theme/theme-controller.d.ts.map +1 -1
- package/dist/modes/interactive/theme/theme-controller.js +10 -13
- package/dist/modes/interactive/theme/theme-controller.js.map +1 -1
- package/dist/modes/interactive/theme/theme-loading.d.ts.map +1 -1
- package/dist/modes/interactive/theme/theme-loading.js +1 -0
- package/dist/modes/interactive/theme/theme-loading.js.map +1 -1
- package/dist/modes/interactive/theme/theme-schema.d.ts +4 -0
- package/dist/modes/interactive/theme/theme-schema.d.ts.map +1 -1
- package/dist/modes/interactive/theme/theme-schema.js +2 -1
- package/dist/modes/interactive/theme/theme-schema.js.map +1 -1
- package/dist/modes/interactive/theme/theme-schema.json +5 -1
- package/dist/modes/interactive/theme/theme.d.ts +1 -1
- package/dist/modes/interactive/theme/theme.d.ts.map +1 -1
- package/dist/modes/interactive/theme/theme.js +1 -1
- package/dist/modes/interactive/theme/theme.js.map +1 -1
- package/dist/modes/interactive-engine/engine-custom-ui.d.ts +1 -1
- package/dist/modes/interactive-engine/engine-custom-ui.d.ts.map +1 -1
- package/dist/modes/interactive-engine/engine-custom-ui.js +28 -11
- package/dist/modes/interactive-engine/engine-custom-ui.js.map +1 -1
- package/dist/modes/interactive-engine/engine-render-service.js +3 -3
- package/dist/modes/interactive-engine/engine-render-service.js.map +1 -1
- package/dist/modes/interactive-engine/extension-ui-bridge.d.ts +2 -1
- package/dist/modes/interactive-engine/extension-ui-bridge.d.ts.map +1 -1
- package/dist/modes/interactive-engine/extension-ui-bridge.js +2 -2
- package/dist/modes/interactive-engine/extension-ui-bridge.js.map +1 -1
- package/dist/modes/interactive-engine/isolated-runtime.d.ts +7 -0
- package/dist/modes/interactive-engine/isolated-runtime.d.ts.map +1 -1
- package/dist/modes/interactive-engine/isolated-runtime.js +7 -0
- package/dist/modes/interactive-engine/isolated-runtime.js.map +1 -1
- package/dist/modes/interactive-engine/protocol.d.ts +12 -10
- package/dist/modes/interactive-engine/protocol.d.ts.map +1 -1
- package/dist/modes/interactive-engine/protocol.js +14 -11
- package/dist/modes/interactive-engine/protocol.js.map +1 -1
- package/dist/modes/interactive-engine/remote-component.d.ts +11 -1
- package/dist/modes/interactive-engine/remote-component.d.ts.map +1 -1
- package/dist/modes/interactive-engine/remote-component.js +48 -8
- package/dist/modes/interactive-engine/remote-component.js.map +1 -1
- package/dist/modes/interactive-engine/terminal-mode-controller.d.ts +19 -12
- package/dist/modes/interactive-engine/terminal-mode-controller.d.ts.map +1 -1
- package/dist/modes/interactive-engine/terminal-mode-controller.js +54 -35
- package/dist/modes/interactive-engine/terminal-mode-controller.js.map +1 -1
- package/dist/modes/json-event.d.ts +28 -0
- package/dist/modes/json-event.d.ts.map +1 -0
- package/dist/modes/json-event.js +12 -0
- package/dist/modes/json-event.js.map +1 -0
- package/dist/modes/print-mode.d.ts.map +1 -1
- package/dist/modes/print-mode.js +2 -1
- package/dist/modes/print-mode.js.map +1 -1
- package/dist/modes/rpc/rpc-client-process.d.ts +1 -0
- package/dist/modes/rpc/rpc-client-process.d.ts.map +1 -1
- package/dist/modes/rpc/rpc-client-process.js +5 -1
- package/dist/modes/rpc/rpc-client-process.js.map +1 -1
- package/dist/modes/rpc/rpc-client.d.ts.map +1 -1
- package/dist/modes/rpc/rpc-client.js +7 -2
- package/dist/modes/rpc/rpc-client.js.map +1 -1
- package/dist/modes/rpc/rpc-command-handler.js +1 -1
- package/dist/modes/rpc/rpc-command-handler.js.map +1 -1
- package/dist/modes/rpc/rpc-event-buffer.d.ts +9 -0
- package/dist/modes/rpc/rpc-event-buffer.d.ts.map +1 -1
- package/dist/modes/rpc/rpc-event-buffer.js +10 -5
- package/dist/modes/rpc/rpc-event-buffer.js.map +1 -1
- package/dist/modes/rpc/rpc-extension-ui.d.ts.map +1 -1
- package/dist/modes/rpc/rpc-extension-ui.js +3 -0
- package/dist/modes/rpc/rpc-extension-ui.js.map +1 -1
- package/dist/modes/rpc/rpc-input.js +1 -1
- package/dist/modes/rpc/rpc-input.js.map +1 -1
- package/dist/modes/rpc/rpc-output-buffer.d.ts +9 -0
- package/dist/modes/rpc/rpc-output-buffer.d.ts.map +1 -1
- package/dist/modes/rpc/rpc-output-buffer.js +10 -5
- package/dist/modes/rpc/rpc-output-buffer.js.map +1 -1
- package/dist/modes/rpc/rpc-provider-auth.d.ts.map +1 -1
- package/dist/modes/rpc/rpc-provider-auth.js +3 -0
- package/dist/modes/rpc/rpc-provider-auth.js.map +1 -1
- package/dist/modes/rpc/rpc-responses.d.ts +1 -1
- package/dist/modes/rpc/rpc-responses.d.ts.map +1 -1
- package/dist/modes/rpc/rpc-responses.js +13 -1
- package/dist/modes/rpc/rpc-responses.js.map +1 -1
- package/dist/modes/rpc/rpc-session-binding.d.ts.map +1 -1
- package/dist/modes/rpc/rpc-session-binding.js +2 -1
- package/dist/modes/rpc/rpc-session-binding.js.map +1 -1
- package/dist/modes/rpc/rpc-types.d.ts +9 -2
- package/dist/modes/rpc/rpc-types.d.ts.map +1 -1
- package/dist/modes/rpc/rpc-types.js.map +1 -1
- package/dist/rpc-entry.js +2 -0
- package/dist/rpc-entry.js.map +1 -1
- package/dist/self-update-plan.d.ts.map +1 -1
- package/dist/self-update-plan.js +5 -4
- package/dist/self-update-plan.js.map +1 -1
- package/dist/server/create-harness.d.ts +53 -0
- package/dist/server/create-harness.d.ts.map +1 -0
- package/dist/server/create-harness.js +349 -0
- package/dist/server/create-harness.js.map +1 -0
- package/dist/utils/agent-attribution.d.ts +2 -0
- package/dist/utils/agent-attribution.d.ts.map +1 -0
- package/dist/utils/agent-attribution.js +2 -0
- package/dist/utils/agent-attribution.js.map +1 -0
- package/dist/utils/child-process.d.ts +3 -1
- package/dist/utils/child-process.d.ts.map +1 -1
- package/dist/utils/child-process.js +24 -4
- package/dist/utils/child-process.js.map +1 -1
- package/dist/utils/clipboard-image.d.ts.map +1 -1
- package/dist/utils/clipboard-image.js +2 -1
- package/dist/utils/clipboard-image.js.map +1 -1
- package/dist/utils/clipboard.d.ts.map +1 -1
- package/dist/utils/clipboard.js +12 -3
- package/dist/utils/clipboard.js.map +1 -1
- package/dist/utils/management-http.d.ts +23 -0
- package/dist/utils/management-http.d.ts.map +1 -0
- package/dist/utils/management-http.js +50 -0
- package/dist/utils/management-http.js.map +1 -0
- package/dist/utils/open-browser.d.ts.map +1 -1
- package/dist/utils/open-browser.js +2 -1
- package/dist/utils/open-browser.js.map +1 -1
- package/dist/utils/paths.d.ts +2 -0
- package/dist/utils/paths.d.ts.map +1 -1
- package/dist/utils/paths.js +13 -0
- package/dist/utils/paths.js.map +1 -1
- package/dist/utils/shell.d.ts.map +1 -1
- package/dist/utils/shell.js +17 -4
- package/dist/utils/shell.js.map +1 -1
- package/dist/utils/tool-result-images.d.ts +17 -0
- package/dist/utils/tool-result-images.d.ts.map +1 -0
- package/dist/utils/tool-result-images.js +41 -0
- package/dist/utils/tool-result-images.js.map +1 -0
- package/dist/utils/tools-manager.d.ts.map +1 -1
- package/dist/utils/tools-manager.js +7 -8
- package/dist/utils/tools-manager.js.map +1 -1
- package/dist/utils/version-check.d.ts +4 -0
- package/dist/utils/version-check.d.ts.map +1 -1
- package/dist/utils/version-check.js +20 -2
- package/dist/utils/version-check.js.map +1 -1
- package/docs/compaction.md +2 -1
- package/docs/custom-provider.md +15 -7
- package/docs/development.md +1 -0
- package/docs/docs.json +1 -0
- package/docs/environment-variables.md +4 -0
- package/docs/extensions.md +102 -18
- package/docs/i-have-adhd.md +36 -0
- package/docs/intercom.md +31 -16
- package/docs/json.md +2 -2
- package/docs/keybindings.md +55 -12
- package/docs/models/model-selection.md +34 -8
- package/docs/models.md +28 -3
- package/docs/providers.md +20 -2
- package/docs/quickstart.md +5 -5
- package/docs/rpc.md +18 -12
- package/docs/sdk.md +43 -7
- package/docs/security.md +10 -10
- package/docs/sessions.md +2 -0
- package/docs/settings.md +32 -6
- package/docs/subagents.md +30 -45
- package/docs/themes.md +5 -3
- package/docs/tools.md +21 -1
- package/docs/tui.md +41 -24
- package/docs/usage.md +40 -14
- package/docs/windows.md +2 -0
- package/docs/workflows.md +237 -25
- package/examples/extensions/custom-provider-anthropic/index.ts +9 -2
- package/examples/extensions/custom-provider-gitlab-duo/index.ts +9 -2
- package/examples/extensions/gondolin/package-lock.json +3 -3
- package/examples/extensions/modal-editor.ts +8 -10
- package/examples/extensions/rainbow-editor.ts +3 -2
- package/examples/extensions/subagent/README.md +16 -45
- package/examples/extensions/subagent/index.ts +6 -96
- package/examples/extensions/subagent/render.ts +0 -78
- package/examples/extensions/subagent/runner.ts +0 -3
- package/examples/extensions/subagent/schemas.ts +0 -13
- package/examples/extensions/subagent/types.ts +1 -2
- package/examples/sdk/09-api-keys-and-oauth.ts +6 -2
- package/examples/sdk/12-full-control.ts +8 -2
- package/examples/sdk/README.md +4 -1
- package/npm-shrinkwrap.json +191 -634
- package/package.json +14 -7
- package/dist/builtin/subagents/src/agents/chain-serializer.ts +0 -257
- package/dist/builtin/subagents/src/runs/background/async-event-journal.ts +0 -112
- package/dist/builtin/subagents/src/runs/background/async-execution-chain.ts +0 -543
- package/dist/builtin/subagents/src/runs/background/async-execution-common.ts +0 -140
- package/dist/builtin/subagents/src/runs/background/async-execution-single.ts +0 -279
- package/dist/builtin/subagents/src/runs/background/async-execution-types.ts +0 -99
- package/dist/builtin/subagents/src/runs/background/async-execution.ts +0 -17
- package/dist/builtin/subagents/src/runs/background/async-resume.ts +0 -402
- package/dist/builtin/subagents/src/runs/background/async-status.ts +0 -411
- package/dist/builtin/subagents/src/runs/background/completion-claims.ts +0 -196
- package/dist/builtin/subagents/src/runs/background/completion-dedupe.ts +0 -102
- package/dist/builtin/subagents/src/runs/background/parallel-groups.ts +0 -59
- package/dist/builtin/subagents/src/runs/background/result-delivery-processor.ts +0 -300
- package/dist/builtin/subagents/src/runs/background/result-file-claims.ts +0 -166
- package/dist/builtin/subagents/src/runs/background/result-quarantine.ts +0 -77
- package/dist/builtin/subagents/src/runs/background/result-retry-scheduler.ts +0 -48
- package/dist/builtin/subagents/src/runs/background/result-status.ts +0 -87
- package/dist/builtin/subagents/src/runs/background/result-watcher-data.ts +0 -72
- package/dist/builtin/subagents/src/runs/background/result-watcher.ts +0 -320
- package/dist/builtin/subagents/src/runs/background/run-id-resolver.ts +0 -105
- package/dist/builtin/subagents/src/runs/background/run-status.ts +0 -358
- package/dist/builtin/subagents/src/runs/background/stale-run-reconciler.ts +0 -457
- package/dist/builtin/subagents/src/runs/background/subagent-runner-dynamic.ts +0 -376
- package/dist/builtin/subagents/src/runs/background/subagent-runner-finalize.ts +0 -150
- package/dist/builtin/subagents/src/runs/background/subagent-runner-output.ts +0 -109
- package/dist/builtin/subagents/src/runs/background/subagent-runner-parallel-helpers.ts +0 -128
- package/dist/builtin/subagents/src/runs/background/subagent-runner-parallel.ts +0 -309
- package/dist/builtin/subagents/src/runs/background/subagent-runner-sequential.ts +0 -173
- package/dist/builtin/subagents/src/runs/background/subagent-runner-state.ts +0 -578
- package/dist/builtin/subagents/src/runs/background/subagent-runner-step.ts +0 -330
- package/dist/builtin/subagents/src/runs/background/subagent-runner-streaming.ts +0 -330
- package/dist/builtin/subagents/src/runs/background/subagent-runner-types.ts +0 -210
- package/dist/builtin/subagents/src/runs/background/subagent-runner-utils.ts +0 -69
- package/dist/builtin/subagents/src/runs/background/subagent-runner.ts +0 -90
- package/dist/builtin/subagents/src/runs/background/top-level-async.ts +0 -12
- package/dist/builtin/subagents/src/runs/foreground/chain-execution-details.ts +0 -38
- package/dist/builtin/subagents/src/runs/foreground/chain-execution-dynamic-step.ts +0 -280
- package/dist/builtin/subagents/src/runs/foreground/chain-execution-parallel-runner.ts +0 -217
- package/dist/builtin/subagents/src/runs/foreground/chain-execution-parallel-step.ts +0 -271
- package/dist/builtin/subagents/src/runs/foreground/chain-execution-sequential-step.ts +0 -271
- package/dist/builtin/subagents/src/runs/foreground/chain-execution-types.ts +0 -200
- package/dist/builtin/subagents/src/runs/foreground/chain-execution.ts +0 -184
- package/dist/builtin/subagents/src/runs/foreground/execution-attempt-control.ts +0 -140
- package/dist/builtin/subagents/src/runs/foreground/execution-attempt-finalize.ts +0 -108
- package/dist/builtin/subagents/src/runs/foreground/execution-attempt-types.ts +0 -17
- package/dist/builtin/subagents/src/runs/foreground/execution-attempt.ts +0 -558
- package/dist/builtin/subagents/src/runs/foreground/execution-structured-retries.ts +0 -83
- package/dist/builtin/subagents/src/runs/foreground/subagent-executor-chain.ts +0 -109
- package/dist/builtin/subagents/src/runs/shared/attempt-watchdog.ts +0 -126
- package/dist/builtin/subagents/src/runs/shared/chain-outputs.ts +0 -126
- package/dist/builtin/subagents/src/runs/shared/dynamic-fanout.ts +0 -387
- package/dist/builtin/subagents/src/runs/shared/final-drain.ts +0 -39
- package/dist/builtin/subagents/src/runs/shared/pi-args.ts +0 -339
- package/dist/builtin/subagents/src/runs/shared/pi-spawn.ts +0 -165
- package/dist/builtin/subagents/src/runs/shared/spawn-env.ts +0 -21
- package/dist/builtin/subagents/src/runs/shared/structured-output.ts +0 -150
- package/dist/builtin/subagents/src/runs/shared/workflow-graph.ts +0 -232
- package/dist/builtin/subagents/src/shared/post-exit-stdio-guard.ts +0 -86
- package/dist/builtin/subagents/src/slash/saved-chain-mapping.ts +0 -60
- package/dist/builtin/subagents/src/tui/render-chain-graph.ts +0 -335
- package/examples/extensions/subagent/prompts/implement-and-review.md +0 -10
- package/examples/extensions/subagent/prompts/implement.md +0 -10
- package/examples/extensions/subagent/prompts/scout-and-plan.md +0 -9
- /package/dist/builtin/subagents/src/runs/{shared/nested-path.ts → inprocess/runtime-support/nested-paths.ts} +0 -0
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,19 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bastani/atomic",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.13-alpha.2",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@bastani/atomic",
|
|
9
|
-
"version": "0.9.
|
|
9
|
+
"version": "0.9.13-alpha.2",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@bastani/atomic-natives": "0.9.
|
|
12
|
+
"@bastani/atomic-natives": "0.9.13-alpha.2",
|
|
13
13
|
"@dbos-inc/dbos-sdk": "4.24.16",
|
|
14
|
-
"@earendil-works/pi-agent-core": "^0.
|
|
15
|
-
"@earendil-works/pi-ai": "^0.
|
|
16
|
-
"@earendil-works/pi-
|
|
14
|
+
"@earendil-works/pi-agent-core": "^0.84.1",
|
|
15
|
+
"@earendil-works/pi-ai": "^0.84.1",
|
|
16
|
+
"@earendil-works/pi-client": "^0.84.1",
|
|
17
|
+
"@earendil-works/pi-protocol": "^0.84.1",
|
|
18
|
+
"@earendil-works/pi-tui": "^0.84.1",
|
|
17
19
|
"@modelcontextprotocol/ext-apps": "^1.7.5",
|
|
18
20
|
"@modelcontextprotocol/sdk": "^1.30.0",
|
|
19
21
|
"@mozilla/readability": "^0.6.0",
|
|
@@ -23,6 +25,7 @@
|
|
|
23
25
|
"diff": "8.0.4",
|
|
24
26
|
"embedded-postgres": "18.4.0-beta.17",
|
|
25
27
|
"glob": "13.0.6",
|
|
28
|
+
"grok-mermaid": "0.2.2",
|
|
26
29
|
"highlight.js": "10.7.3",
|
|
27
30
|
"hosted-git-info": "9.0.3",
|
|
28
31
|
"ignore": "7.0.5",
|
|
@@ -32,10 +35,9 @@
|
|
|
32
35
|
"markit-ai": "0.5.3",
|
|
33
36
|
"minimatch": "10.2.5",
|
|
34
37
|
"open": "^11.0.0",
|
|
35
|
-
"p-limit": "^7.3.
|
|
38
|
+
"p-limit": "^7.3.1",
|
|
36
39
|
"proper-lockfile": "4.1.2",
|
|
37
40
|
"semver": "7.8.0",
|
|
38
|
-
"tsx": "^4.23.1",
|
|
39
41
|
"turndown": "^7.2.0",
|
|
40
42
|
"typebox": "1.3.7",
|
|
41
43
|
"undici": "8.9.0",
|
|
@@ -148,16 +150,16 @@
|
|
|
148
150
|
}
|
|
149
151
|
},
|
|
150
152
|
"node_modules/@aws-sdk/core": {
|
|
151
|
-
"version": "3.977.
|
|
152
|
-
"resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.977.
|
|
153
|
-
"integrity": "sha512-
|
|
153
|
+
"version": "3.977.6",
|
|
154
|
+
"resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.977.6.tgz",
|
|
155
|
+
"integrity": "sha512-QiaJV4/zDrB4ZY2mfeSXSzSTc36W16sZXcGz+SPFk0CJ26gziO0cS+4LjJUMAbdeeBOvS0k0Aq1cZpfGdUXxSw==",
|
|
154
156
|
"license": "Apache-2.0",
|
|
155
157
|
"dependencies": {
|
|
156
158
|
"@aws-sdk/types": "^3.974.2",
|
|
157
159
|
"@aws-sdk/xml-builder": "^3.972.37",
|
|
158
160
|
"@aws/lambda-invoke-store": "^0.3.0",
|
|
159
|
-
"@smithy/core": "^3.
|
|
160
|
-
"@smithy/signature-v4": "^5.6.
|
|
161
|
+
"@smithy/core": "^3.31.1",
|
|
162
|
+
"@smithy/signature-v4": "^5.6.12",
|
|
161
163
|
"@smithy/types": "^4.16.1",
|
|
162
164
|
"bowser": "^2.11.0",
|
|
163
165
|
"tslib": "^2.6.2"
|
|
@@ -167,14 +169,14 @@
|
|
|
167
169
|
}
|
|
168
170
|
},
|
|
169
171
|
"node_modules/@aws-sdk/credential-provider-env": {
|
|
170
|
-
"version": "3.972.
|
|
171
|
-
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.972.
|
|
172
|
-
"integrity": "sha512-
|
|
172
|
+
"version": "3.972.67",
|
|
173
|
+
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.972.67.tgz",
|
|
174
|
+
"integrity": "sha512-rcIpk5kxUqDaaNa6Xk23pQ6ViY7jlqzmfFWCahQcBT97ddXaXYYwzCen9Tz1Jvo6aJft6wDl5bN44/Jw5B4oLA==",
|
|
173
175
|
"license": "Apache-2.0",
|
|
174
176
|
"dependencies": {
|
|
175
|
-
"@aws-sdk/core": "^3.977.
|
|
177
|
+
"@aws-sdk/core": "^3.977.6",
|
|
176
178
|
"@aws-sdk/types": "^3.974.2",
|
|
177
|
-
"@smithy/core": "^3.
|
|
179
|
+
"@smithy/core": "^3.31.1",
|
|
178
180
|
"@smithy/types": "^4.16.1",
|
|
179
181
|
"tslib": "^2.6.2"
|
|
180
182
|
},
|
|
@@ -183,16 +185,16 @@
|
|
|
183
185
|
}
|
|
184
186
|
},
|
|
185
187
|
"node_modules/@aws-sdk/credential-provider-http": {
|
|
186
|
-
"version": "3.972.
|
|
187
|
-
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.972.
|
|
188
|
-
"integrity": "sha512-
|
|
188
|
+
"version": "3.972.69",
|
|
189
|
+
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.972.69.tgz",
|
|
190
|
+
"integrity": "sha512-nggwJtZ4eeNsUw5IeWBMXsi1ryct5idi0K+/SCRF3kybLubOMaNTb3XCihXpWMiVpyzyPeIrl0zTkzhBH9porA==",
|
|
189
191
|
"license": "Apache-2.0",
|
|
190
192
|
"dependencies": {
|
|
191
|
-
"@aws-sdk/core": "^3.977.
|
|
193
|
+
"@aws-sdk/core": "^3.977.6",
|
|
192
194
|
"@aws-sdk/types": "^3.974.2",
|
|
193
|
-
"@smithy/core": "^3.
|
|
194
|
-
"@smithy/fetch-http-handler": "^5.6.
|
|
195
|
-
"@smithy/node-http-handler": "^4.9.
|
|
195
|
+
"@smithy/core": "^3.31.1",
|
|
196
|
+
"@smithy/fetch-http-handler": "^5.6.13",
|
|
197
|
+
"@smithy/node-http-handler": "^4.9.13",
|
|
196
198
|
"@smithy/types": "^4.16.1",
|
|
197
199
|
"tslib": "^2.6.2"
|
|
198
200
|
},
|
|
@@ -215,22 +217,22 @@
|
|
|
215
217
|
}
|
|
216
218
|
},
|
|
217
219
|
"node_modules/@aws-sdk/credential-provider-ini": {
|
|
218
|
-
"version": "3.973.
|
|
219
|
-
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.973.
|
|
220
|
-
"integrity": "sha512-
|
|
220
|
+
"version": "3.973.12",
|
|
221
|
+
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.973.12.tgz",
|
|
222
|
+
"integrity": "sha512-pNEf/OeyN5X3VmLKlgSO6TqaWmW10CvI3TfwL1XhsuhYjSLT2VDaxFnCPHnOeQXSaFisMX4jNhpETriqN8DOmg==",
|
|
221
223
|
"license": "Apache-2.0",
|
|
222
224
|
"dependencies": {
|
|
223
|
-
"@aws-sdk/core": "^3.977.
|
|
224
|
-
"@aws-sdk/credential-provider-env": "^3.972.
|
|
225
|
-
"@aws-sdk/credential-provider-http": "^3.972.
|
|
226
|
-
"@aws-sdk/credential-provider-login": "^3.972.
|
|
227
|
-
"@aws-sdk/credential-provider-process": "^3.972.
|
|
228
|
-
"@aws-sdk/credential-provider-sso": "^3.973.
|
|
229
|
-
"@aws-sdk/credential-provider-web-identity": "^3.972.
|
|
230
|
-
"@aws-sdk/nested-clients": "^3.997.
|
|
225
|
+
"@aws-sdk/core": "^3.977.6",
|
|
226
|
+
"@aws-sdk/credential-provider-env": "^3.972.67",
|
|
227
|
+
"@aws-sdk/credential-provider-http": "^3.972.69",
|
|
228
|
+
"@aws-sdk/credential-provider-login": "^3.972.74",
|
|
229
|
+
"@aws-sdk/credential-provider-process": "^3.972.67",
|
|
230
|
+
"@aws-sdk/credential-provider-sso": "^3.973.11",
|
|
231
|
+
"@aws-sdk/credential-provider-web-identity": "^3.972.73",
|
|
232
|
+
"@aws-sdk/nested-clients": "^3.997.41",
|
|
231
233
|
"@aws-sdk/types": "^3.974.2",
|
|
232
|
-
"@smithy/core": "^3.
|
|
233
|
-
"@smithy/credential-provider-imds": "^4.4.
|
|
234
|
+
"@smithy/core": "^3.31.1",
|
|
235
|
+
"@smithy/credential-provider-imds": "^4.4.16",
|
|
234
236
|
"@smithy/types": "^4.16.1",
|
|
235
237
|
"tslib": "^2.6.2"
|
|
236
238
|
},
|
|
@@ -239,15 +241,15 @@
|
|
|
239
241
|
}
|
|
240
242
|
},
|
|
241
243
|
"node_modules/@aws-sdk/credential-provider-login": {
|
|
242
|
-
"version": "3.972.
|
|
243
|
-
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-login/-/credential-provider-login-3.972.
|
|
244
|
-
"integrity": "sha512-
|
|
244
|
+
"version": "3.972.74",
|
|
245
|
+
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-login/-/credential-provider-login-3.972.74.tgz",
|
|
246
|
+
"integrity": "sha512-0AQfDcf99TNmqVKv0owHrw/TQs6i4ZE5t9qmz6NvO53bE/sA/tpXhXL9AAcEP1qHc6Zzjd1UMb69+/9zdhvY3g==",
|
|
245
247
|
"license": "Apache-2.0",
|
|
246
248
|
"dependencies": {
|
|
247
|
-
"@aws-sdk/core": "^3.977.
|
|
248
|
-
"@aws-sdk/nested-clients": "^3.997.
|
|
249
|
+
"@aws-sdk/core": "^3.977.6",
|
|
250
|
+
"@aws-sdk/nested-clients": "^3.997.41",
|
|
249
251
|
"@aws-sdk/types": "^3.974.2",
|
|
250
|
-
"@smithy/core": "^3.
|
|
252
|
+
"@smithy/core": "^3.31.1",
|
|
251
253
|
"@smithy/types": "^4.16.1",
|
|
252
254
|
"tslib": "^2.6.2"
|
|
253
255
|
},
|
|
@@ -256,20 +258,20 @@
|
|
|
256
258
|
}
|
|
257
259
|
},
|
|
258
260
|
"node_modules/@aws-sdk/credential-provider-node": {
|
|
259
|
-
"version": "3.972.
|
|
260
|
-
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.972.
|
|
261
|
-
"integrity": "sha512-
|
|
261
|
+
"version": "3.972.78",
|
|
262
|
+
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.972.78.tgz",
|
|
263
|
+
"integrity": "sha512-OgPAnfvbGAMWac6yvxJ1ihslrvDpPVwR68D2csospdNCCyPvHk9JLzYKwz48SNiS1T2znDwHauywRKRFfpyYng==",
|
|
262
264
|
"license": "Apache-2.0",
|
|
263
265
|
"dependencies": {
|
|
264
|
-
"@aws-sdk/credential-provider-env": "^3.972.
|
|
265
|
-
"@aws-sdk/credential-provider-http": "^3.972.
|
|
266
|
-
"@aws-sdk/credential-provider-ini": "^3.973.
|
|
267
|
-
"@aws-sdk/credential-provider-process": "^3.972.
|
|
268
|
-
"@aws-sdk/credential-provider-sso": "^3.973.
|
|
269
|
-
"@aws-sdk/credential-provider-web-identity": "^3.972.
|
|
266
|
+
"@aws-sdk/credential-provider-env": "^3.972.67",
|
|
267
|
+
"@aws-sdk/credential-provider-http": "^3.972.69",
|
|
268
|
+
"@aws-sdk/credential-provider-ini": "^3.973.12",
|
|
269
|
+
"@aws-sdk/credential-provider-process": "^3.972.67",
|
|
270
|
+
"@aws-sdk/credential-provider-sso": "^3.973.11",
|
|
271
|
+
"@aws-sdk/credential-provider-web-identity": "^3.972.73",
|
|
270
272
|
"@aws-sdk/types": "^3.974.2",
|
|
271
|
-
"@smithy/core": "^3.
|
|
272
|
-
"@smithy/credential-provider-imds": "^4.4.
|
|
273
|
+
"@smithy/core": "^3.31.1",
|
|
274
|
+
"@smithy/credential-provider-imds": "^4.4.16",
|
|
273
275
|
"@smithy/types": "^4.16.1",
|
|
274
276
|
"tslib": "^2.6.2"
|
|
275
277
|
},
|
|
@@ -278,14 +280,14 @@
|
|
|
278
280
|
}
|
|
279
281
|
},
|
|
280
282
|
"node_modules/@aws-sdk/credential-provider-process": {
|
|
281
|
-
"version": "3.972.
|
|
282
|
-
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.972.
|
|
283
|
-
"integrity": "sha512-
|
|
283
|
+
"version": "3.972.67",
|
|
284
|
+
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.972.67.tgz",
|
|
285
|
+
"integrity": "sha512-IlUEejorGTWKb4/Dm7K5Yw4QxUmXLThLhrvBmzVBqZFTbW72cv9LTcITmo1dsnYriALE4h68mOq4LB99x6sQ7Q==",
|
|
284
286
|
"license": "Apache-2.0",
|
|
285
287
|
"dependencies": {
|
|
286
|
-
"@aws-sdk/core": "^3.977.
|
|
288
|
+
"@aws-sdk/core": "^3.977.6",
|
|
287
289
|
"@aws-sdk/types": "^3.974.2",
|
|
288
|
-
"@smithy/core": "^3.
|
|
290
|
+
"@smithy/core": "^3.31.1",
|
|
289
291
|
"@smithy/types": "^4.16.1",
|
|
290
292
|
"tslib": "^2.6.2"
|
|
291
293
|
},
|
|
@@ -294,16 +296,16 @@
|
|
|
294
296
|
}
|
|
295
297
|
},
|
|
296
298
|
"node_modules/@aws-sdk/credential-provider-sso": {
|
|
297
|
-
"version": "3.973.
|
|
298
|
-
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.973.
|
|
299
|
-
"integrity": "sha512-
|
|
299
|
+
"version": "3.973.11",
|
|
300
|
+
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.973.11.tgz",
|
|
301
|
+
"integrity": "sha512-gAQBkBZxUB84d71+pPcI9L+jh2ujhuAVxc/4FgGiWFDjkPBlMKxzd5XDtkSXTFX8Ro7ansnT88+XadasxMeCRw==",
|
|
300
302
|
"license": "Apache-2.0",
|
|
301
303
|
"dependencies": {
|
|
302
|
-
"@aws-sdk/core": "^3.977.
|
|
303
|
-
"@aws-sdk/nested-clients": "^3.997.
|
|
304
|
-
"@aws-sdk/token-providers": "3.
|
|
304
|
+
"@aws-sdk/core": "^3.977.6",
|
|
305
|
+
"@aws-sdk/nested-clients": "^3.997.41",
|
|
306
|
+
"@aws-sdk/token-providers": "3.1103.0",
|
|
305
307
|
"@aws-sdk/types": "^3.974.2",
|
|
306
|
-
"@smithy/core": "^3.
|
|
308
|
+
"@smithy/core": "^3.31.1",
|
|
307
309
|
"@smithy/types": "^4.16.1",
|
|
308
310
|
"tslib": "^2.6.2"
|
|
309
311
|
},
|
|
@@ -312,15 +314,15 @@
|
|
|
312
314
|
}
|
|
313
315
|
},
|
|
314
316
|
"node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers": {
|
|
315
|
-
"version": "3.
|
|
316
|
-
"resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.
|
|
317
|
-
"integrity": "sha512-
|
|
317
|
+
"version": "3.1103.0",
|
|
318
|
+
"resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.1103.0.tgz",
|
|
319
|
+
"integrity": "sha512-N4wy26MNn31ItGVHYHPrEuCIFY4MBBjC+C5v1lJKqIUSA7OZBdhleCY53zCCrXn27hsk7YNOaTuhQu807S4AfQ==",
|
|
318
320
|
"license": "Apache-2.0",
|
|
319
321
|
"dependencies": {
|
|
320
|
-
"@aws-sdk/core": "^3.977.
|
|
321
|
-
"@aws-sdk/nested-clients": "^3.997.
|
|
322
|
+
"@aws-sdk/core": "^3.977.6",
|
|
323
|
+
"@aws-sdk/nested-clients": "^3.997.41",
|
|
322
324
|
"@aws-sdk/types": "^3.974.2",
|
|
323
|
-
"@smithy/core": "^3.
|
|
325
|
+
"@smithy/core": "^3.31.1",
|
|
324
326
|
"@smithy/types": "^4.16.1",
|
|
325
327
|
"tslib": "^2.6.2"
|
|
326
328
|
},
|
|
@@ -329,15 +331,15 @@
|
|
|
329
331
|
}
|
|
330
332
|
},
|
|
331
333
|
"node_modules/@aws-sdk/credential-provider-web-identity": {
|
|
332
|
-
"version": "3.972.
|
|
333
|
-
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.972.
|
|
334
|
-
"integrity": "sha512-
|
|
334
|
+
"version": "3.972.73",
|
|
335
|
+
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.972.73.tgz",
|
|
336
|
+
"integrity": "sha512-SnlEmQa6SjOgs6iOPLUQl1Eyq4AKiAdPQlkOhFhqNfDtDCwibMGvL6QlkSmf3o6vAUSImzdPCxowT5dfQUZP1A==",
|
|
335
337
|
"license": "Apache-2.0",
|
|
336
338
|
"dependencies": {
|
|
337
|
-
"@aws-sdk/core": "^3.977.
|
|
338
|
-
"@aws-sdk/nested-clients": "^3.997.
|
|
339
|
+
"@aws-sdk/core": "^3.977.6",
|
|
340
|
+
"@aws-sdk/nested-clients": "^3.997.41",
|
|
339
341
|
"@aws-sdk/types": "^3.974.2",
|
|
340
|
-
"@smithy/core": "^3.
|
|
342
|
+
"@smithy/core": "^3.31.1",
|
|
341
343
|
"@smithy/types": "^4.16.1",
|
|
342
344
|
"tslib": "^2.6.2"
|
|
343
345
|
},
|
|
@@ -346,13 +348,13 @@
|
|
|
346
348
|
}
|
|
347
349
|
},
|
|
348
350
|
"node_modules/@aws-sdk/eventstream-handler-node": {
|
|
349
|
-
"version": "3.972.
|
|
350
|
-
"resolved": "https://registry.npmjs.org/@aws-sdk/eventstream-handler-node/-/eventstream-handler-node-3.972.
|
|
351
|
-
"integrity": "sha512
|
|
351
|
+
"version": "3.972.31",
|
|
352
|
+
"resolved": "https://registry.npmjs.org/@aws-sdk/eventstream-handler-node/-/eventstream-handler-node-3.972.31.tgz",
|
|
353
|
+
"integrity": "sha512-/BRzvkp46mF6eXBL/l9WKPQQfifLlUPaWli6n9/T/WDLUg8he7TCyuNFnk6RvHP5j5W/kMj5Gxw7W778LJaXDA==",
|
|
352
354
|
"license": "Apache-2.0",
|
|
353
355
|
"dependencies": {
|
|
354
356
|
"@aws-sdk/types": "^3.974.2",
|
|
355
|
-
"@smithy/core": "^3.
|
|
357
|
+
"@smithy/core": "^3.31.1",
|
|
356
358
|
"@smithy/types": "^4.16.1",
|
|
357
359
|
"tslib": "^2.6.2"
|
|
358
360
|
},
|
|
@@ -361,13 +363,13 @@
|
|
|
361
363
|
}
|
|
362
364
|
},
|
|
363
365
|
"node_modules/@aws-sdk/middleware-eventstream": {
|
|
364
|
-
"version": "3.972.
|
|
365
|
-
"resolved": "https://registry.npmjs.org/@aws-sdk/middleware-eventstream/-/middleware-eventstream-3.972.
|
|
366
|
-
"integrity": "sha512-
|
|
366
|
+
"version": "3.972.26",
|
|
367
|
+
"resolved": "https://registry.npmjs.org/@aws-sdk/middleware-eventstream/-/middleware-eventstream-3.972.26.tgz",
|
|
368
|
+
"integrity": "sha512-2eIvouTZoxPu5ClHY6ij13De1yhY8Rmllt0dlGeBNXX3wmR7fU1pvMCGb50fKm1GxcuntWK0t1T0cMjTyDoUQA==",
|
|
367
369
|
"license": "Apache-2.0",
|
|
368
370
|
"dependencies": {
|
|
369
371
|
"@aws-sdk/types": "^3.974.2",
|
|
370
|
-
"@smithy/core": "^3.
|
|
372
|
+
"@smithy/core": "^3.31.1",
|
|
371
373
|
"@smithy/types": "^4.16.1",
|
|
372
374
|
"tslib": "^2.6.2"
|
|
373
375
|
},
|
|
@@ -376,16 +378,16 @@
|
|
|
376
378
|
}
|
|
377
379
|
},
|
|
378
380
|
"node_modules/@aws-sdk/middleware-websocket": {
|
|
379
|
-
"version": "3.972.
|
|
380
|
-
"resolved": "https://registry.npmjs.org/@aws-sdk/middleware-websocket/-/middleware-websocket-3.972.
|
|
381
|
-
"integrity": "sha512-
|
|
381
|
+
"version": "3.972.49",
|
|
382
|
+
"resolved": "https://registry.npmjs.org/@aws-sdk/middleware-websocket/-/middleware-websocket-3.972.49.tgz",
|
|
383
|
+
"integrity": "sha512-wGYJvu1/stdWuzGcNyh44u8aY7ArU8XFrMesBlzIYn70HWVCRBNEngQexDuPIMu0NEgsKGKmTc0uvnS/bF7KWw==",
|
|
382
384
|
"license": "Apache-2.0",
|
|
383
385
|
"dependencies": {
|
|
384
|
-
"@aws-sdk/core": "^3.977.
|
|
386
|
+
"@aws-sdk/core": "^3.977.6",
|
|
385
387
|
"@aws-sdk/types": "^3.974.2",
|
|
386
|
-
"@smithy/core": "^3.
|
|
387
|
-
"@smithy/fetch-http-handler": "^5.6.
|
|
388
|
-
"@smithy/signature-v4": "^5.6.
|
|
388
|
+
"@smithy/core": "^3.31.1",
|
|
389
|
+
"@smithy/fetch-http-handler": "^5.6.13",
|
|
390
|
+
"@smithy/signature-v4": "^5.6.12",
|
|
389
391
|
"@smithy/types": "^4.16.1",
|
|
390
392
|
"tslib": "^2.6.2"
|
|
391
393
|
},
|
|
@@ -394,17 +396,17 @@
|
|
|
394
396
|
}
|
|
395
397
|
},
|
|
396
398
|
"node_modules/@aws-sdk/nested-clients": {
|
|
397
|
-
"version": "3.997.
|
|
398
|
-
"resolved": "https://registry.npmjs.org/@aws-sdk/nested-clients/-/nested-clients-3.997.
|
|
399
|
-
"integrity": "sha512-
|
|
399
|
+
"version": "3.997.41",
|
|
400
|
+
"resolved": "https://registry.npmjs.org/@aws-sdk/nested-clients/-/nested-clients-3.997.41.tgz",
|
|
401
|
+
"integrity": "sha512-RDHqPGQWlF6tatA/Tp3rg6oIwtgN9IVderxE+9av2Y93Dfyu+mO1hZ5Bu2jpfZg2rwdNbsssnwM+sLafIczMlQ==",
|
|
400
402
|
"license": "Apache-2.0",
|
|
401
403
|
"dependencies": {
|
|
402
|
-
"@aws-sdk/core": "^3.977.
|
|
403
|
-
"@aws-sdk/signature-v4-multi-region": "^3.996.
|
|
404
|
+
"@aws-sdk/core": "^3.977.6",
|
|
405
|
+
"@aws-sdk/signature-v4-multi-region": "^3.996.43",
|
|
404
406
|
"@aws-sdk/types": "^3.974.2",
|
|
405
|
-
"@smithy/core": "^3.
|
|
406
|
-
"@smithy/fetch-http-handler": "^5.6.
|
|
407
|
-
"@smithy/node-http-handler": "^4.9.
|
|
407
|
+
"@smithy/core": "^3.31.1",
|
|
408
|
+
"@smithy/fetch-http-handler": "^5.6.13",
|
|
409
|
+
"@smithy/node-http-handler": "^4.9.13",
|
|
408
410
|
"@smithy/types": "^4.16.1",
|
|
409
411
|
"tslib": "^2.6.2"
|
|
410
412
|
},
|
|
@@ -427,13 +429,13 @@
|
|
|
427
429
|
}
|
|
428
430
|
},
|
|
429
431
|
"node_modules/@aws-sdk/signature-v4-multi-region": {
|
|
430
|
-
"version": "3.996.
|
|
431
|
-
"resolved": "https://registry.npmjs.org/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.996.
|
|
432
|
-
"integrity": "sha512-
|
|
432
|
+
"version": "3.996.43",
|
|
433
|
+
"resolved": "https://registry.npmjs.org/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.996.43.tgz",
|
|
434
|
+
"integrity": "sha512-lKekx8bLBXSv4O+cslk9Zfnw2XKSkWBs3uWL5QGhH2ZAQfNS7FE0vcSSN2vD/AhxX54ZTywWxR4STThoeOXlBA==",
|
|
433
435
|
"license": "Apache-2.0",
|
|
434
436
|
"dependencies": {
|
|
435
437
|
"@aws-sdk/types": "^3.974.2",
|
|
436
|
-
"@smithy/signature-v4": "^5.6.
|
|
438
|
+
"@smithy/signature-v4": "^5.6.12",
|
|
437
439
|
"@smithy/types": "^4.16.1",
|
|
438
440
|
"tslib": "^2.6.2"
|
|
439
441
|
},
|
|
@@ -515,18 +517,18 @@
|
|
|
515
517
|
}
|
|
516
518
|
},
|
|
517
519
|
"node_modules/@bastani/atomic-natives": {
|
|
518
|
-
"version": "0.9.
|
|
519
|
-
"resolved": "https://registry.npmjs.org/@bastani/atomic-natives/-/atomic-natives-0.9.
|
|
520
|
+
"version": "0.9.13-alpha.2",
|
|
521
|
+
"resolved": "https://registry.npmjs.org/@bastani/atomic-natives/-/atomic-natives-0.9.13-alpha.2.tgz",
|
|
520
522
|
"license": "MIT",
|
|
521
523
|
"optionalDependencies": {
|
|
522
|
-
"@bastani/atomic-natives-darwin-arm64": "0.9.
|
|
523
|
-
"@bastani/atomic-natives-darwin-x64": "0.9.
|
|
524
|
-
"@bastani/atomic-natives-linux-arm64-gnu": "0.9.
|
|
525
|
-
"@bastani/atomic-natives-linux-arm64-musl": "0.9.
|
|
526
|
-
"@bastani/atomic-natives-linux-x64-gnu": "0.9.
|
|
527
|
-
"@bastani/atomic-natives-linux-x64-musl": "0.9.
|
|
528
|
-
"@bastani/atomic-natives-win32-arm64-msvc": "0.9.
|
|
529
|
-
"@bastani/atomic-natives-win32-x64-msvc": "0.9.
|
|
524
|
+
"@bastani/atomic-natives-darwin-arm64": "0.9.13-alpha.2",
|
|
525
|
+
"@bastani/atomic-natives-darwin-x64": "0.9.13-alpha.2",
|
|
526
|
+
"@bastani/atomic-natives-linux-arm64-gnu": "0.9.13-alpha.2",
|
|
527
|
+
"@bastani/atomic-natives-linux-arm64-musl": "0.9.13-alpha.2",
|
|
528
|
+
"@bastani/atomic-natives-linux-x64-gnu": "0.9.13-alpha.2",
|
|
529
|
+
"@bastani/atomic-natives-linux-x64-musl": "0.9.13-alpha.2",
|
|
530
|
+
"@bastani/atomic-natives-win32-arm64-msvc": "0.9.13-alpha.2",
|
|
531
|
+
"@bastani/atomic-natives-win32-x64-msvc": "0.9.13-alpha.2"
|
|
530
532
|
},
|
|
531
533
|
"engines": {
|
|
532
534
|
"bun": ">=1.3.14",
|
|
@@ -534,8 +536,8 @@
|
|
|
534
536
|
}
|
|
535
537
|
},
|
|
536
538
|
"node_modules/@bastani/atomic-natives-darwin-arm64": {
|
|
537
|
-
"version": "0.9.
|
|
538
|
-
"resolved": "https://registry.npmjs.org/@bastani/atomic-natives-darwin-arm64/-/atomic-natives-darwin-arm64-0.9.
|
|
539
|
+
"version": "0.9.13-alpha.2",
|
|
540
|
+
"resolved": "https://registry.npmjs.org/@bastani/atomic-natives-darwin-arm64/-/atomic-natives-darwin-arm64-0.9.13-alpha.2.tgz",
|
|
539
541
|
"license": "MIT",
|
|
540
542
|
"os": [
|
|
541
543
|
"darwin"
|
|
@@ -546,8 +548,8 @@
|
|
|
546
548
|
"optional": true
|
|
547
549
|
},
|
|
548
550
|
"node_modules/@bastani/atomic-natives-darwin-x64": {
|
|
549
|
-
"version": "0.9.
|
|
550
|
-
"resolved": "https://registry.npmjs.org/@bastani/atomic-natives-darwin-x64/-/atomic-natives-darwin-x64-0.9.
|
|
551
|
+
"version": "0.9.13-alpha.2",
|
|
552
|
+
"resolved": "https://registry.npmjs.org/@bastani/atomic-natives-darwin-x64/-/atomic-natives-darwin-x64-0.9.13-alpha.2.tgz",
|
|
551
553
|
"license": "MIT",
|
|
552
554
|
"os": [
|
|
553
555
|
"darwin"
|
|
@@ -558,8 +560,8 @@
|
|
|
558
560
|
"optional": true
|
|
559
561
|
},
|
|
560
562
|
"node_modules/@bastani/atomic-natives-linux-arm64-gnu": {
|
|
561
|
-
"version": "0.9.
|
|
562
|
-
"resolved": "https://registry.npmjs.org/@bastani/atomic-natives-linux-arm64-gnu/-/atomic-natives-linux-arm64-gnu-0.9.
|
|
563
|
+
"version": "0.9.13-alpha.2",
|
|
564
|
+
"resolved": "https://registry.npmjs.org/@bastani/atomic-natives-linux-arm64-gnu/-/atomic-natives-linux-arm64-gnu-0.9.13-alpha.2.tgz",
|
|
563
565
|
"license": "MIT",
|
|
564
566
|
"os": [
|
|
565
567
|
"linux"
|
|
@@ -573,8 +575,8 @@
|
|
|
573
575
|
"optional": true
|
|
574
576
|
},
|
|
575
577
|
"node_modules/@bastani/atomic-natives-linux-arm64-musl": {
|
|
576
|
-
"version": "0.9.
|
|
577
|
-
"resolved": "https://registry.npmjs.org/@bastani/atomic-natives-linux-arm64-musl/-/atomic-natives-linux-arm64-musl-0.9.
|
|
578
|
+
"version": "0.9.13-alpha.2",
|
|
579
|
+
"resolved": "https://registry.npmjs.org/@bastani/atomic-natives-linux-arm64-musl/-/atomic-natives-linux-arm64-musl-0.9.13-alpha.2.tgz",
|
|
578
580
|
"license": "MIT",
|
|
579
581
|
"os": [
|
|
580
582
|
"linux"
|
|
@@ -588,8 +590,8 @@
|
|
|
588
590
|
"optional": true
|
|
589
591
|
},
|
|
590
592
|
"node_modules/@bastani/atomic-natives-linux-x64-gnu": {
|
|
591
|
-
"version": "0.9.
|
|
592
|
-
"resolved": "https://registry.npmjs.org/@bastani/atomic-natives-linux-x64-gnu/-/atomic-natives-linux-x64-gnu-0.9.
|
|
593
|
+
"version": "0.9.13-alpha.2",
|
|
594
|
+
"resolved": "https://registry.npmjs.org/@bastani/atomic-natives-linux-x64-gnu/-/atomic-natives-linux-x64-gnu-0.9.13-alpha.2.tgz",
|
|
593
595
|
"license": "MIT",
|
|
594
596
|
"os": [
|
|
595
597
|
"linux"
|
|
@@ -603,8 +605,8 @@
|
|
|
603
605
|
"optional": true
|
|
604
606
|
},
|
|
605
607
|
"node_modules/@bastani/atomic-natives-linux-x64-musl": {
|
|
606
|
-
"version": "0.9.
|
|
607
|
-
"resolved": "https://registry.npmjs.org/@bastani/atomic-natives-linux-x64-musl/-/atomic-natives-linux-x64-musl-0.9.
|
|
608
|
+
"version": "0.9.13-alpha.2",
|
|
609
|
+
"resolved": "https://registry.npmjs.org/@bastani/atomic-natives-linux-x64-musl/-/atomic-natives-linux-x64-musl-0.9.13-alpha.2.tgz",
|
|
608
610
|
"license": "MIT",
|
|
609
611
|
"os": [
|
|
610
612
|
"linux"
|
|
@@ -618,8 +620,8 @@
|
|
|
618
620
|
"optional": true
|
|
619
621
|
},
|
|
620
622
|
"node_modules/@bastani/atomic-natives-win32-arm64-msvc": {
|
|
621
|
-
"version": "0.9.
|
|
622
|
-
"resolved": "https://registry.npmjs.org/@bastani/atomic-natives-win32-arm64-msvc/-/atomic-natives-win32-arm64-msvc-0.9.
|
|
623
|
+
"version": "0.9.13-alpha.2",
|
|
624
|
+
"resolved": "https://registry.npmjs.org/@bastani/atomic-natives-win32-arm64-msvc/-/atomic-natives-win32-arm64-msvc-0.9.13-alpha.2.tgz",
|
|
623
625
|
"license": "MIT",
|
|
624
626
|
"os": [
|
|
625
627
|
"win32"
|
|
@@ -630,8 +632,8 @@
|
|
|
630
632
|
"optional": true
|
|
631
633
|
},
|
|
632
634
|
"node_modules/@bastani/atomic-natives-win32-x64-msvc": {
|
|
633
|
-
"version": "0.9.
|
|
634
|
-
"resolved": "https://registry.npmjs.org/@bastani/atomic-natives-win32-x64-msvc/-/atomic-natives-win32-x64-msvc-0.9.
|
|
635
|
+
"version": "0.9.13-alpha.2",
|
|
636
|
+
"resolved": "https://registry.npmjs.org/@bastani/atomic-natives-win32-x64-msvc/-/atomic-natives-win32-x64-msvc-0.9.13-alpha.2.tgz",
|
|
635
637
|
"license": "MIT",
|
|
636
638
|
"os": [
|
|
637
639
|
"win32"
|
|
@@ -676,12 +678,13 @@
|
|
|
676
678
|
]
|
|
677
679
|
},
|
|
678
680
|
"node_modules/@earendil-works/pi-agent-core": {
|
|
679
|
-
"version": "0.
|
|
680
|
-
"resolved": "https://registry.npmjs.org/@earendil-works/pi-agent-core/-/pi-agent-core-0.
|
|
681
|
-
"integrity": "sha512-
|
|
681
|
+
"version": "0.84.1",
|
|
682
|
+
"resolved": "https://registry.npmjs.org/@earendil-works/pi-agent-core/-/pi-agent-core-0.84.1.tgz",
|
|
683
|
+
"integrity": "sha512-evyzXYWCLQGmcaBYHlmSku02r8qoN4SGI60GZABo6iV+H+nqX+P9ud8fEZ4GmRq9mUSREvvfX+w9dA9ThF9C6w==",
|
|
682
684
|
"license": "MIT",
|
|
683
685
|
"dependencies": {
|
|
684
|
-
"@earendil-works/pi-ai": "^0.
|
|
686
|
+
"@earendil-works/pi-ai": "^0.84.1",
|
|
687
|
+
"@earendil-works/pi-telemetry": "^0.84.1",
|
|
685
688
|
"diff": "8.0.4",
|
|
686
689
|
"ignore": "7.0.5",
|
|
687
690
|
"typebox": "1.3.7",
|
|
@@ -692,13 +695,14 @@
|
|
|
692
695
|
}
|
|
693
696
|
},
|
|
694
697
|
"node_modules/@earendil-works/pi-ai": {
|
|
695
|
-
"version": "0.
|
|
696
|
-
"resolved": "https://registry.npmjs.org/@earendil-works/pi-ai/-/pi-ai-0.
|
|
697
|
-
"integrity": "sha512-
|
|
698
|
+
"version": "0.84.1",
|
|
699
|
+
"resolved": "https://registry.npmjs.org/@earendil-works/pi-ai/-/pi-ai-0.84.1.tgz",
|
|
700
|
+
"integrity": "sha512-wMsAdJMxuNri08vLqTyYVI201DQQezGhPSTkzYsHdw5dYX3rCNwEmSvpaAwhi7ELKI/2tE/CEgSWg/6iRxSgdQ==",
|
|
698
701
|
"license": "MIT",
|
|
699
702
|
"dependencies": {
|
|
700
703
|
"@anthropic-ai/sdk": "0.91.1",
|
|
701
704
|
"@aws-sdk/client-bedrock-runtime": "3.1048.0",
|
|
705
|
+
"@earendil-works/pi-telemetry": "^0.84.1",
|
|
702
706
|
"@google/genai": "1.52.0",
|
|
703
707
|
"@mistralai/mistralai": "2.2.6",
|
|
704
708
|
"@opentelemetry/api": "1.9.0",
|
|
@@ -716,10 +720,43 @@
|
|
|
716
720
|
"node": ">=22.19.0"
|
|
717
721
|
}
|
|
718
722
|
},
|
|
723
|
+
"node_modules/@earendil-works/pi-client": {
|
|
724
|
+
"version": "0.84.1",
|
|
725
|
+
"resolved": "https://registry.npmjs.org/@earendil-works/pi-client/-/pi-client-0.84.1.tgz",
|
|
726
|
+
"integrity": "sha512-/V5hGHE4Zq+jG0GtwIB9PyBUOGd6gBLZ7lkQYFKchKnxYHeH3rmWC5xw4kpnZKKBuBuFTdLVbU9vEjlAGMMb2A==",
|
|
727
|
+
"license": "MIT",
|
|
728
|
+
"dependencies": {
|
|
729
|
+
"@earendil-works/pi-protocol": "^0.84.1"
|
|
730
|
+
},
|
|
731
|
+
"engines": {
|
|
732
|
+
"node": ">=22.19.0"
|
|
733
|
+
}
|
|
734
|
+
},
|
|
735
|
+
"node_modules/@earendil-works/pi-protocol": {
|
|
736
|
+
"version": "0.84.1",
|
|
737
|
+
"resolved": "https://registry.npmjs.org/@earendil-works/pi-protocol/-/pi-protocol-0.84.1.tgz",
|
|
738
|
+
"integrity": "sha512-Ox1pciyeSPGEEUcxvR0/dJcrY7C6hrEGA8y71rOsvSIUlXN1Cbp/be/eoL71OGDBk5O97TeQPfWN6Ju/2Ehjww==",
|
|
739
|
+
"license": "MIT",
|
|
740
|
+
"dependencies": {
|
|
741
|
+
"typebox": "1.3.7"
|
|
742
|
+
},
|
|
743
|
+
"engines": {
|
|
744
|
+
"node": ">=22.19.0"
|
|
745
|
+
}
|
|
746
|
+
},
|
|
747
|
+
"node_modules/@earendil-works/pi-telemetry": {
|
|
748
|
+
"version": "0.84.1",
|
|
749
|
+
"resolved": "https://registry.npmjs.org/@earendil-works/pi-telemetry/-/pi-telemetry-0.84.1.tgz",
|
|
750
|
+
"integrity": "sha512-180/xGJtsq7IoR3p9EKWjRd0e9M4DkxInhlo9xyD7prDC7Qrhqq+nhvwrW0lFjPfXcEI2FSHmGCSyvSJE9GsaQ==",
|
|
751
|
+
"license": "MIT",
|
|
752
|
+
"engines": {
|
|
753
|
+
"node": ">=22.19.0"
|
|
754
|
+
}
|
|
755
|
+
},
|
|
719
756
|
"node_modules/@earendil-works/pi-tui": {
|
|
720
|
-
"version": "0.
|
|
721
|
-
"resolved": "https://registry.npmjs.org/@earendil-works/pi-tui/-/pi-tui-0.
|
|
722
|
-
"integrity": "sha512-
|
|
757
|
+
"version": "0.84.1",
|
|
758
|
+
"resolved": "https://registry.npmjs.org/@earendil-works/pi-tui/-/pi-tui-0.84.1.tgz",
|
|
759
|
+
"integrity": "sha512-udeXFbgEhJ6JiB0uguwNVNkDy2FENfmtQwPcY+/iJ8GWeq18wkal1tKqa5YyeH0IqtX1vG0cGh8zfSYzyzVuLA==",
|
|
723
760
|
"license": "MIT",
|
|
724
761
|
"dependencies": {
|
|
725
762
|
"get-east-asian-width": "1.6.0",
|
|
@@ -865,422 +902,6 @@
|
|
|
865
902
|
"optional": true,
|
|
866
903
|
"hasInstallScript": true
|
|
867
904
|
},
|
|
868
|
-
"node_modules/@esbuild/aix-ppc64": {
|
|
869
|
-
"version": "0.28.1",
|
|
870
|
-
"resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.28.1.tgz",
|
|
871
|
-
"integrity": "sha512-Svl7tq8k/08+p6CXPpRjQ1fKX+1odH/BQbb48fV6fj3CWHhsoIOoY87w1oHXm0qEpkIK3ZfVgp0hed3XBXzXMQ==",
|
|
872
|
-
"license": "MIT",
|
|
873
|
-
"engines": {
|
|
874
|
-
"node": ">=18"
|
|
875
|
-
},
|
|
876
|
-
"os": [
|
|
877
|
-
"aix"
|
|
878
|
-
],
|
|
879
|
-
"cpu": [
|
|
880
|
-
"ppc64"
|
|
881
|
-
],
|
|
882
|
-
"optional": true
|
|
883
|
-
},
|
|
884
|
-
"node_modules/@esbuild/android-arm": {
|
|
885
|
-
"version": "0.28.1",
|
|
886
|
-
"resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.28.1.tgz",
|
|
887
|
-
"integrity": "sha512-0k2F129Xdio1TdJfzJ8sy1Q47vUD2NnwdhiAf7drUN1EBTfPf4hsFCtmMgu/6m8JSzsBrlmVjudMBQqOfG8usQ==",
|
|
888
|
-
"license": "MIT",
|
|
889
|
-
"engines": {
|
|
890
|
-
"node": ">=18"
|
|
891
|
-
},
|
|
892
|
-
"os": [
|
|
893
|
-
"android"
|
|
894
|
-
],
|
|
895
|
-
"cpu": [
|
|
896
|
-
"arm"
|
|
897
|
-
],
|
|
898
|
-
"optional": true
|
|
899
|
-
},
|
|
900
|
-
"node_modules/@esbuild/android-arm64": {
|
|
901
|
-
"version": "0.28.1",
|
|
902
|
-
"resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.28.1.tgz",
|
|
903
|
-
"integrity": "sha512-34EGEbCIAgosYz6goLcopX6Mo7NyGv9tfwEM2/7Ce2VcVRk568iSvniGWcUXIy7wEDR1wzolcxcriFVrWYcwBg==",
|
|
904
|
-
"license": "MIT",
|
|
905
|
-
"engines": {
|
|
906
|
-
"node": ">=18"
|
|
907
|
-
},
|
|
908
|
-
"os": [
|
|
909
|
-
"android"
|
|
910
|
-
],
|
|
911
|
-
"cpu": [
|
|
912
|
-
"arm64"
|
|
913
|
-
],
|
|
914
|
-
"optional": true
|
|
915
|
-
},
|
|
916
|
-
"node_modules/@esbuild/android-x64": {
|
|
917
|
-
"version": "0.28.1",
|
|
918
|
-
"resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.28.1.tgz",
|
|
919
|
-
"integrity": "sha512-dbwY7ltSMDWsRatcRpCnES4F+im88OCUgGZjy52shC7GqHRE/cYlxNbB4Z4UpJswpcc4Qxd2oE/ufM0p61IKng==",
|
|
920
|
-
"license": "MIT",
|
|
921
|
-
"engines": {
|
|
922
|
-
"node": ">=18"
|
|
923
|
-
},
|
|
924
|
-
"os": [
|
|
925
|
-
"android"
|
|
926
|
-
],
|
|
927
|
-
"cpu": [
|
|
928
|
-
"x64"
|
|
929
|
-
],
|
|
930
|
-
"optional": true
|
|
931
|
-
},
|
|
932
|
-
"node_modules/@esbuild/darwin-arm64": {
|
|
933
|
-
"version": "0.28.1",
|
|
934
|
-
"resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.28.1.tgz",
|
|
935
|
-
"integrity": "sha512-TZbWkQY7kvTAXbXUT7uVACR5cMHsDiSz9z7ZKAX/RTq/WJEk3QyRr0wZpNhBDX+/0CtdqUIJlOiodQcta6tY3Q==",
|
|
936
|
-
"license": "MIT",
|
|
937
|
-
"engines": {
|
|
938
|
-
"node": ">=18"
|
|
939
|
-
},
|
|
940
|
-
"os": [
|
|
941
|
-
"darwin"
|
|
942
|
-
],
|
|
943
|
-
"cpu": [
|
|
944
|
-
"arm64"
|
|
945
|
-
],
|
|
946
|
-
"optional": true
|
|
947
|
-
},
|
|
948
|
-
"node_modules/@esbuild/darwin-x64": {
|
|
949
|
-
"version": "0.28.1",
|
|
950
|
-
"resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.28.1.tgz",
|
|
951
|
-
"integrity": "sha512-zfdzgK9ACBNZLI/CyHTOx81SyNbM6YXn7rxSgX97VjyiPl9W1i4Ka4fgKECEoFCKGpvBj5qArWIGgQjOwkgskQ==",
|
|
952
|
-
"license": "MIT",
|
|
953
|
-
"engines": {
|
|
954
|
-
"node": ">=18"
|
|
955
|
-
},
|
|
956
|
-
"os": [
|
|
957
|
-
"darwin"
|
|
958
|
-
],
|
|
959
|
-
"cpu": [
|
|
960
|
-
"x64"
|
|
961
|
-
],
|
|
962
|
-
"optional": true
|
|
963
|
-
},
|
|
964
|
-
"node_modules/@esbuild/freebsd-arm64": {
|
|
965
|
-
"version": "0.28.1",
|
|
966
|
-
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.28.1.tgz",
|
|
967
|
-
"integrity": "sha512-wG2EA8ENdEI0qhkSZMjfqrdY+ziCYCPMmtZjjIwOmXFjmyzEHn+UUxk5of+SYsjtfs3VpnlC7QLzSI5hY/rOAw==",
|
|
968
|
-
"license": "MIT",
|
|
969
|
-
"engines": {
|
|
970
|
-
"node": ">=18"
|
|
971
|
-
},
|
|
972
|
-
"os": [
|
|
973
|
-
"freebsd"
|
|
974
|
-
],
|
|
975
|
-
"cpu": [
|
|
976
|
-
"arm64"
|
|
977
|
-
],
|
|
978
|
-
"optional": true
|
|
979
|
-
},
|
|
980
|
-
"node_modules/@esbuild/freebsd-x64": {
|
|
981
|
-
"version": "0.28.1",
|
|
982
|
-
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.28.1.tgz",
|
|
983
|
-
"integrity": "sha512-i7dZ9vQgnvSCzi/rYCXNgtF/U+eKZNJBzu3eTQbRgHnM7tNSizLOkRFAl3qzVc/Op/u5YkHHa4pf/3DOYHthLQ==",
|
|
984
|
-
"license": "MIT",
|
|
985
|
-
"engines": {
|
|
986
|
-
"node": ">=18"
|
|
987
|
-
},
|
|
988
|
-
"os": [
|
|
989
|
-
"freebsd"
|
|
990
|
-
],
|
|
991
|
-
"cpu": [
|
|
992
|
-
"x64"
|
|
993
|
-
],
|
|
994
|
-
"optional": true
|
|
995
|
-
},
|
|
996
|
-
"node_modules/@esbuild/linux-arm": {
|
|
997
|
-
"version": "0.28.1",
|
|
998
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.28.1.tgz",
|
|
999
|
-
"integrity": "sha512-qVXBOHQS+d5Y722GwJzJUtOLlX7km3CraOaGormF1pDtPd2C/l1SHRPgjLunLGe51Sh5YYWKMFDyV4SxgMQYTQ==",
|
|
1000
|
-
"license": "MIT",
|
|
1001
|
-
"engines": {
|
|
1002
|
-
"node": ">=18"
|
|
1003
|
-
},
|
|
1004
|
-
"os": [
|
|
1005
|
-
"linux"
|
|
1006
|
-
],
|
|
1007
|
-
"cpu": [
|
|
1008
|
-
"arm"
|
|
1009
|
-
],
|
|
1010
|
-
"optional": true
|
|
1011
|
-
},
|
|
1012
|
-
"node_modules/@esbuild/linux-arm64": {
|
|
1013
|
-
"version": "0.28.1",
|
|
1014
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.28.1.tgz",
|
|
1015
|
-
"integrity": "sha512-yHs+0uc8+nvEAfAfxrWQKK5peSNzBc4PegcMO0EJ2hT71uA7vB8Ihg2e77R2P7SG5uYjPbHlLLmve4LLLRCf0g==",
|
|
1016
|
-
"license": "MIT",
|
|
1017
|
-
"engines": {
|
|
1018
|
-
"node": ">=18"
|
|
1019
|
-
},
|
|
1020
|
-
"os": [
|
|
1021
|
-
"linux"
|
|
1022
|
-
],
|
|
1023
|
-
"cpu": [
|
|
1024
|
-
"arm64"
|
|
1025
|
-
],
|
|
1026
|
-
"optional": true
|
|
1027
|
-
},
|
|
1028
|
-
"node_modules/@esbuild/linux-ia32": {
|
|
1029
|
-
"version": "0.28.1",
|
|
1030
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.28.1.tgz",
|
|
1031
|
-
"integrity": "sha512-d1z4ZuP0ajrfz/FhGT4vv278rX8KnPPJx8i5+AtK7TYbx9Le9F1hyzurZpkEyjkGa9dUGhQow4C1NmeGvqxN2w==",
|
|
1032
|
-
"license": "MIT",
|
|
1033
|
-
"engines": {
|
|
1034
|
-
"node": ">=18"
|
|
1035
|
-
},
|
|
1036
|
-
"os": [
|
|
1037
|
-
"linux"
|
|
1038
|
-
],
|
|
1039
|
-
"cpu": [
|
|
1040
|
-
"ia32"
|
|
1041
|
-
],
|
|
1042
|
-
"optional": true
|
|
1043
|
-
},
|
|
1044
|
-
"node_modules/@esbuild/linux-loong64": {
|
|
1045
|
-
"version": "0.28.1",
|
|
1046
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.28.1.tgz",
|
|
1047
|
-
"integrity": "sha512-M5sRjUVZrkm1OAPR3dlOYzNmN+loZKGVi1VUQGrwuqLcbR6qeAz+famMhjASeH3YVKvZz+zT1jlh/keC3Rj/lg==",
|
|
1048
|
-
"license": "MIT",
|
|
1049
|
-
"engines": {
|
|
1050
|
-
"node": ">=18"
|
|
1051
|
-
},
|
|
1052
|
-
"os": [
|
|
1053
|
-
"linux"
|
|
1054
|
-
],
|
|
1055
|
-
"cpu": [
|
|
1056
|
-
"loong64"
|
|
1057
|
-
],
|
|
1058
|
-
"optional": true
|
|
1059
|
-
},
|
|
1060
|
-
"node_modules/@esbuild/linux-mips64el": {
|
|
1061
|
-
"version": "0.28.1",
|
|
1062
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.28.1.tgz",
|
|
1063
|
-
"integrity": "sha512-mRObBZeHh2OxcBFPWE/FjylkRgZdYuiTR3vaTozquCGOH14iP9oN4x4Ge81CoIDYQrXmIxpFumJBu5MtZpnQJQ==",
|
|
1064
|
-
"license": "MIT",
|
|
1065
|
-
"engines": {
|
|
1066
|
-
"node": ">=18"
|
|
1067
|
-
},
|
|
1068
|
-
"os": [
|
|
1069
|
-
"linux"
|
|
1070
|
-
],
|
|
1071
|
-
"cpu": [
|
|
1072
|
-
"mips64el"
|
|
1073
|
-
],
|
|
1074
|
-
"optional": true
|
|
1075
|
-
},
|
|
1076
|
-
"node_modules/@esbuild/linux-ppc64": {
|
|
1077
|
-
"version": "0.28.1",
|
|
1078
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.28.1.tgz",
|
|
1079
|
-
"integrity": "sha512-slScBsMAb3GFDcdrCgLwZtPYRoH2H/youv10QiZyRjmsP48fznoveWytSgCI/R0ZcUgpc0ZhIUEx6LHts8yrfQ==",
|
|
1080
|
-
"license": "MIT",
|
|
1081
|
-
"engines": {
|
|
1082
|
-
"node": ">=18"
|
|
1083
|
-
},
|
|
1084
|
-
"os": [
|
|
1085
|
-
"linux"
|
|
1086
|
-
],
|
|
1087
|
-
"cpu": [
|
|
1088
|
-
"ppc64"
|
|
1089
|
-
],
|
|
1090
|
-
"optional": true
|
|
1091
|
-
},
|
|
1092
|
-
"node_modules/@esbuild/linux-riscv64": {
|
|
1093
|
-
"version": "0.28.1",
|
|
1094
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.28.1.tgz",
|
|
1095
|
-
"integrity": "sha512-kw0owk1o0GFETUJyW0jc0G4Yzs0BHZn0JDZ8JRT088vjJYX777BAs1fDGxAC+q831qOs2DTC96mNsG2opdfyyQ==",
|
|
1096
|
-
"license": "MIT",
|
|
1097
|
-
"engines": {
|
|
1098
|
-
"node": ">=18"
|
|
1099
|
-
},
|
|
1100
|
-
"os": [
|
|
1101
|
-
"linux"
|
|
1102
|
-
],
|
|
1103
|
-
"cpu": [
|
|
1104
|
-
"riscv64"
|
|
1105
|
-
],
|
|
1106
|
-
"optional": true
|
|
1107
|
-
},
|
|
1108
|
-
"node_modules/@esbuild/linux-s390x": {
|
|
1109
|
-
"version": "0.28.1",
|
|
1110
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.28.1.tgz",
|
|
1111
|
-
"integrity": "sha512-/lAIjX8aYFRByhh6L5rYtPEDRqa9de/4V/juOXcta5frjvzXO4/sqEtyytse0g3zZFuWu5cDN0MkLz2qRDD2Ag==",
|
|
1112
|
-
"license": "MIT",
|
|
1113
|
-
"engines": {
|
|
1114
|
-
"node": ">=18"
|
|
1115
|
-
},
|
|
1116
|
-
"os": [
|
|
1117
|
-
"linux"
|
|
1118
|
-
],
|
|
1119
|
-
"cpu": [
|
|
1120
|
-
"s390x"
|
|
1121
|
-
],
|
|
1122
|
-
"optional": true
|
|
1123
|
-
},
|
|
1124
|
-
"node_modules/@esbuild/linux-x64": {
|
|
1125
|
-
"version": "0.28.1",
|
|
1126
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.28.1.tgz",
|
|
1127
|
-
"integrity": "sha512-u/anNYF2mmVOEDwLtnQ1wOr3EZ9sTNGLWrsYGYwHWzGA3Si84IOkHXlbWTD1NB+9/1lcnweYKO54uhxZydNzfA==",
|
|
1128
|
-
"license": "MIT",
|
|
1129
|
-
"engines": {
|
|
1130
|
-
"node": ">=18"
|
|
1131
|
-
},
|
|
1132
|
-
"os": [
|
|
1133
|
-
"linux"
|
|
1134
|
-
],
|
|
1135
|
-
"cpu": [
|
|
1136
|
-
"x64"
|
|
1137
|
-
],
|
|
1138
|
-
"optional": true
|
|
1139
|
-
},
|
|
1140
|
-
"node_modules/@esbuild/netbsd-arm64": {
|
|
1141
|
-
"version": "0.28.1",
|
|
1142
|
-
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.28.1.tgz",
|
|
1143
|
-
"integrity": "sha512-oks0DYbLwWMmaakTsCb+zL4E+aHRVLom9IJZOAthMQEPiQmydXHkziYEsGYRx0uNV/IjEKGAV941JzH02pflqw==",
|
|
1144
|
-
"license": "MIT",
|
|
1145
|
-
"engines": {
|
|
1146
|
-
"node": ">=18"
|
|
1147
|
-
},
|
|
1148
|
-
"os": [
|
|
1149
|
-
"netbsd"
|
|
1150
|
-
],
|
|
1151
|
-
"cpu": [
|
|
1152
|
-
"arm64"
|
|
1153
|
-
],
|
|
1154
|
-
"optional": true
|
|
1155
|
-
},
|
|
1156
|
-
"node_modules/@esbuild/netbsd-x64": {
|
|
1157
|
-
"version": "0.28.1",
|
|
1158
|
-
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.28.1.tgz",
|
|
1159
|
-
"integrity": "sha512-aeL6lAnN89Hz43Mlh1G8ARasbuoYvSITDEx0tHh5b7jJnHcssqgjy9Yx430GDpmCa6OyrKoS0aNRjKundRizGg==",
|
|
1160
|
-
"license": "MIT",
|
|
1161
|
-
"engines": {
|
|
1162
|
-
"node": ">=18"
|
|
1163
|
-
},
|
|
1164
|
-
"os": [
|
|
1165
|
-
"netbsd"
|
|
1166
|
-
],
|
|
1167
|
-
"cpu": [
|
|
1168
|
-
"x64"
|
|
1169
|
-
],
|
|
1170
|
-
"optional": true
|
|
1171
|
-
},
|
|
1172
|
-
"node_modules/@esbuild/openbsd-arm64": {
|
|
1173
|
-
"version": "0.28.1",
|
|
1174
|
-
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.28.1.tgz",
|
|
1175
|
-
"integrity": "sha512-MEFJe5C3R8pwXdZ5Y21oo6m7ePiS0d9pWucn99O/wvyJZChoIQKrQDxKrGeW8F5+T0okTHesAmDeiHDTIq0V/Q==",
|
|
1176
|
-
"license": "MIT",
|
|
1177
|
-
"engines": {
|
|
1178
|
-
"node": ">=18"
|
|
1179
|
-
},
|
|
1180
|
-
"os": [
|
|
1181
|
-
"openbsd"
|
|
1182
|
-
],
|
|
1183
|
-
"cpu": [
|
|
1184
|
-
"arm64"
|
|
1185
|
-
],
|
|
1186
|
-
"optional": true
|
|
1187
|
-
},
|
|
1188
|
-
"node_modules/@esbuild/openbsd-x64": {
|
|
1189
|
-
"version": "0.28.1",
|
|
1190
|
-
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.28.1.tgz",
|
|
1191
|
-
"integrity": "sha512-i/ZLIOafE0Z8cI/XANJAixoJL/uRAoS2xOA3rb0xN+KK0K177cMAsQYkzHtBrtMXAKuAc7HGgcWiZ/sRC1Nxgw==",
|
|
1192
|
-
"license": "MIT",
|
|
1193
|
-
"engines": {
|
|
1194
|
-
"node": ">=18"
|
|
1195
|
-
},
|
|
1196
|
-
"os": [
|
|
1197
|
-
"openbsd"
|
|
1198
|
-
],
|
|
1199
|
-
"cpu": [
|
|
1200
|
-
"x64"
|
|
1201
|
-
],
|
|
1202
|
-
"optional": true
|
|
1203
|
-
},
|
|
1204
|
-
"node_modules/@esbuild/openharmony-arm64": {
|
|
1205
|
-
"version": "0.28.1",
|
|
1206
|
-
"resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.28.1.tgz",
|
|
1207
|
-
"integrity": "sha512-ge+Z7EXFNt2BO1oAMsVpiQ8EwndV9i1xXerAeTIK7AtPs3bKFXQM7nlRxDSIUIMeueR1CNXxqztLzdNeReKBJg==",
|
|
1208
|
-
"license": "MIT",
|
|
1209
|
-
"engines": {
|
|
1210
|
-
"node": ">=18"
|
|
1211
|
-
},
|
|
1212
|
-
"os": [
|
|
1213
|
-
"openharmony"
|
|
1214
|
-
],
|
|
1215
|
-
"cpu": [
|
|
1216
|
-
"arm64"
|
|
1217
|
-
],
|
|
1218
|
-
"optional": true
|
|
1219
|
-
},
|
|
1220
|
-
"node_modules/@esbuild/sunos-x64": {
|
|
1221
|
-
"version": "0.28.1",
|
|
1222
|
-
"resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.28.1.tgz",
|
|
1223
|
-
"integrity": "sha512-BEjgtECkL3vY+SaSQ6nzVfiALUeFxpawyp8Jmf5PtYhf1Ug40N1h/hxlhts+f1FvSvarEigdxS3BlSMI2PJLcQ==",
|
|
1224
|
-
"license": "MIT",
|
|
1225
|
-
"engines": {
|
|
1226
|
-
"node": ">=18"
|
|
1227
|
-
},
|
|
1228
|
-
"os": [
|
|
1229
|
-
"sunos"
|
|
1230
|
-
],
|
|
1231
|
-
"cpu": [
|
|
1232
|
-
"x64"
|
|
1233
|
-
],
|
|
1234
|
-
"optional": true
|
|
1235
|
-
},
|
|
1236
|
-
"node_modules/@esbuild/win32-arm64": {
|
|
1237
|
-
"version": "0.28.1",
|
|
1238
|
-
"resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.28.1.tgz",
|
|
1239
|
-
"integrity": "sha512-lCv9eK/H6ZJWbE7bh2nw54CZ9M2nupBxJcTsdk/QQnWkdSjKGuxmmH8/GWrlT1eMmZfn4dGcCjRte397WqfQXA==",
|
|
1240
|
-
"license": "MIT",
|
|
1241
|
-
"engines": {
|
|
1242
|
-
"node": ">=18"
|
|
1243
|
-
},
|
|
1244
|
-
"os": [
|
|
1245
|
-
"win32"
|
|
1246
|
-
],
|
|
1247
|
-
"cpu": [
|
|
1248
|
-
"arm64"
|
|
1249
|
-
],
|
|
1250
|
-
"optional": true
|
|
1251
|
-
},
|
|
1252
|
-
"node_modules/@esbuild/win32-ia32": {
|
|
1253
|
-
"version": "0.28.1",
|
|
1254
|
-
"resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.28.1.tgz",
|
|
1255
|
-
"integrity": "sha512-zvb/mB2bSCoJOpoCBgYKKpX6YM6mJBlBUVUtVj41DlZJVEB6/0CKlRYxP5wWl1C1ILiCoAU5wZZ4q1P3qeS6Eg==",
|
|
1256
|
-
"license": "MIT",
|
|
1257
|
-
"engines": {
|
|
1258
|
-
"node": ">=18"
|
|
1259
|
-
},
|
|
1260
|
-
"os": [
|
|
1261
|
-
"win32"
|
|
1262
|
-
],
|
|
1263
|
-
"cpu": [
|
|
1264
|
-
"ia32"
|
|
1265
|
-
],
|
|
1266
|
-
"optional": true
|
|
1267
|
-
},
|
|
1268
|
-
"node_modules/@esbuild/win32-x64": {
|
|
1269
|
-
"version": "0.28.1",
|
|
1270
|
-
"resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.28.1.tgz",
|
|
1271
|
-
"integrity": "sha512-bm4Mowrv+GXMlpWX++EcXw/iLyd1o3+bJkC2DkWXYVvgZCqD/bSj9ctZeAMC3cIxgjRVR2Dufaiu4YPxr5gW1A==",
|
|
1272
|
-
"license": "MIT",
|
|
1273
|
-
"engines": {
|
|
1274
|
-
"node": ">=18"
|
|
1275
|
-
},
|
|
1276
|
-
"os": [
|
|
1277
|
-
"win32"
|
|
1278
|
-
],
|
|
1279
|
-
"cpu": [
|
|
1280
|
-
"x64"
|
|
1281
|
-
],
|
|
1282
|
-
"optional": true
|
|
1283
|
-
},
|
|
1284
905
|
"node_modules/@google/genai": {
|
|
1285
906
|
"version": "1.52.0",
|
|
1286
907
|
"resolved": "https://registry.npmjs.org/@google/genai/-/genai-1.52.0.tgz",
|
|
@@ -2478,47 +2099,6 @@
|
|
|
2478
2099
|
"node": ">= 0.4"
|
|
2479
2100
|
}
|
|
2480
2101
|
},
|
|
2481
|
-
"node_modules/esbuild": {
|
|
2482
|
-
"version": "0.28.1",
|
|
2483
|
-
"resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.28.1.tgz",
|
|
2484
|
-
"integrity": "sha512-HrJrvZv5ayxBzPfwphOoNzkzOIIlifzk0KJrGK2c8R4+LKpMtpYLQeUdjnwjWv/LZlkH2laZk+4w78pi99D4Vw==",
|
|
2485
|
-
"license": "MIT",
|
|
2486
|
-
"optionalDependencies": {
|
|
2487
|
-
"@esbuild/aix-ppc64": "0.28.1",
|
|
2488
|
-
"@esbuild/android-arm": "0.28.1",
|
|
2489
|
-
"@esbuild/android-arm64": "0.28.1",
|
|
2490
|
-
"@esbuild/android-x64": "0.28.1",
|
|
2491
|
-
"@esbuild/darwin-arm64": "0.28.1",
|
|
2492
|
-
"@esbuild/darwin-x64": "0.28.1",
|
|
2493
|
-
"@esbuild/freebsd-arm64": "0.28.1",
|
|
2494
|
-
"@esbuild/freebsd-x64": "0.28.1",
|
|
2495
|
-
"@esbuild/linux-arm": "0.28.1",
|
|
2496
|
-
"@esbuild/linux-arm64": "0.28.1",
|
|
2497
|
-
"@esbuild/linux-ia32": "0.28.1",
|
|
2498
|
-
"@esbuild/linux-loong64": "0.28.1",
|
|
2499
|
-
"@esbuild/linux-mips64el": "0.28.1",
|
|
2500
|
-
"@esbuild/linux-ppc64": "0.28.1",
|
|
2501
|
-
"@esbuild/linux-riscv64": "0.28.1",
|
|
2502
|
-
"@esbuild/linux-s390x": "0.28.1",
|
|
2503
|
-
"@esbuild/linux-x64": "0.28.1",
|
|
2504
|
-
"@esbuild/netbsd-arm64": "0.28.1",
|
|
2505
|
-
"@esbuild/netbsd-x64": "0.28.1",
|
|
2506
|
-
"@esbuild/openbsd-arm64": "0.28.1",
|
|
2507
|
-
"@esbuild/openbsd-x64": "0.28.1",
|
|
2508
|
-
"@esbuild/openharmony-arm64": "0.28.1",
|
|
2509
|
-
"@esbuild/sunos-x64": "0.28.1",
|
|
2510
|
-
"@esbuild/win32-arm64": "0.28.1",
|
|
2511
|
-
"@esbuild/win32-ia32": "0.28.1",
|
|
2512
|
-
"@esbuild/win32-x64": "0.28.1"
|
|
2513
|
-
},
|
|
2514
|
-
"bin": {
|
|
2515
|
-
"esbuild": "bin/esbuild"
|
|
2516
|
-
},
|
|
2517
|
-
"engines": {
|
|
2518
|
-
"node": ">=18"
|
|
2519
|
-
},
|
|
2520
|
-
"hasInstallScript": true
|
|
2521
|
-
},
|
|
2522
2102
|
"node_modules/escape-html": {
|
|
2523
2103
|
"version": "1.0.3",
|
|
2524
2104
|
"resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
|
|
@@ -2796,20 +2376,6 @@
|
|
|
2796
2376
|
"node": ">= 0.8"
|
|
2797
2377
|
}
|
|
2798
2378
|
},
|
|
2799
|
-
"node_modules/fsevents": {
|
|
2800
|
-
"version": "2.3.3",
|
|
2801
|
-
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
|
|
2802
|
-
"integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
|
|
2803
|
-
"license": "MIT",
|
|
2804
|
-
"engines": {
|
|
2805
|
-
"node": "^8.16.0 || ^10.6.0 || >=11.0.0"
|
|
2806
|
-
},
|
|
2807
|
-
"os": [
|
|
2808
|
-
"darwin"
|
|
2809
|
-
],
|
|
2810
|
-
"optional": true,
|
|
2811
|
-
"hasInstallScript": true
|
|
2812
|
-
},
|
|
2813
2379
|
"node_modules/function-bind": {
|
|
2814
2380
|
"version": "1.1.2",
|
|
2815
2381
|
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
|
|
@@ -2957,6 +2523,15 @@
|
|
|
2957
2523
|
"integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
|
|
2958
2524
|
"license": "ISC"
|
|
2959
2525
|
},
|
|
2526
|
+
"node_modules/grok-mermaid": {
|
|
2527
|
+
"version": "0.2.2",
|
|
2528
|
+
"resolved": "https://registry.npmjs.org/grok-mermaid/-/grok-mermaid-0.2.2.tgz",
|
|
2529
|
+
"integrity": "sha512-XcJEP5dDC8liHBh52mlLjU18fNvu1ckFsu0QpIG3+APZ270fsj9wxpiA6cOURmbUEuoMVgjbC2+UYgTdCqqgzA==",
|
|
2530
|
+
"license": "Apache-2.0",
|
|
2531
|
+
"engines": {
|
|
2532
|
+
"node": ">=18"
|
|
2533
|
+
}
|
|
2534
|
+
},
|
|
2960
2535
|
"node_modules/has-symbols": {
|
|
2961
2536
|
"version": "1.1.0",
|
|
2962
2537
|
"resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
|
|
@@ -3899,9 +3474,9 @@
|
|
|
3899
3474
|
"license": "BSD-2-Clause"
|
|
3900
3475
|
},
|
|
3901
3476
|
"node_modules/p-limit": {
|
|
3902
|
-
"version": "7.3.
|
|
3903
|
-
"resolved": "https://registry.npmjs.org/p-limit/-/p-limit-7.3.
|
|
3904
|
-
"integrity": "sha512-
|
|
3477
|
+
"version": "7.3.1",
|
|
3478
|
+
"resolved": "https://registry.npmjs.org/p-limit/-/p-limit-7.3.1.tgz",
|
|
3479
|
+
"integrity": "sha512-0trZaiG7Y7kN/Egy9a8j47t9osC0Tch4PaIWd9yGF6bvmlk7muExRvGNYb8sXBwEKMoNKsbNN9P8EefuQekE4Q==",
|
|
3905
3480
|
"license": "MIT",
|
|
3906
3481
|
"dependencies": {
|
|
3907
3482
|
"yocto-queue": "^1.2.1"
|
|
@@ -4692,24 +4267,6 @@
|
|
|
4692
4267
|
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
|
|
4693
4268
|
"license": "0BSD"
|
|
4694
4269
|
},
|
|
4695
|
-
"node_modules/tsx": {
|
|
4696
|
-
"version": "4.23.1",
|
|
4697
|
-
"resolved": "https://registry.npmjs.org/tsx/-/tsx-4.23.1.tgz",
|
|
4698
|
-
"integrity": "sha512-GQHnkIfxyx1wYCOS/wonik5MVRZU9hi1TEZmzGZSCJB1y9YgoZ8H6itNE/u4suE+yLmOzuE4E5S4TZ/ZX2wcWQ==",
|
|
4699
|
-
"license": "MIT",
|
|
4700
|
-
"dependencies": {
|
|
4701
|
-
"esbuild": "~0.28.0"
|
|
4702
|
-
},
|
|
4703
|
-
"optionalDependencies": {
|
|
4704
|
-
"fsevents": "~2.3.3"
|
|
4705
|
-
},
|
|
4706
|
-
"bin": {
|
|
4707
|
-
"tsx": "dist/cli.mjs"
|
|
4708
|
-
},
|
|
4709
|
-
"engines": {
|
|
4710
|
-
"node": ">=18.0.0"
|
|
4711
|
-
}
|
|
4712
|
-
},
|
|
4713
4270
|
"node_modules/turndown": {
|
|
4714
4271
|
"version": "7.2.4",
|
|
4715
4272
|
"resolved": "https://registry.npmjs.org/turndown/-/turndown-7.2.4.tgz",
|