@evalops/maestro 0.10.50 → 0.10.53
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/README.md +1 -3
- package/dist/agent/agent-outcome.d.ts +54 -0
- package/dist/agent/agent-outcome.d.ts.map +1 -0
- package/dist/agent/agent-outcome.js +142 -0
- package/dist/agent/agent-outcome.js.map +1 -0
- package/dist/agent/agent-resume.d.ts.map +1 -1
- package/dist/agent/agent-resume.js +3 -3
- package/dist/agent/agent-resume.js.map +1 -1
- package/dist/agent/agent-run-summary.d.ts +37 -0
- package/dist/agent/agent-run-summary.d.ts.map +1 -0
- package/dist/agent/agent-run-summary.js +15 -0
- package/dist/agent/agent-run-summary.js.map +1 -0
- package/dist/agent/agent-work-board.d.ts +82 -0
- package/dist/agent/agent-work-board.d.ts.map +1 -0
- package/dist/agent/agent-work-board.js +312 -0
- package/dist/agent/agent-work-board.js.map +1 -0
- package/dist/agent/agent.d.ts.map +1 -1
- package/dist/agent/agent.js.map +1 -1
- package/dist/agent/auto-compaction.d.ts +7 -2
- package/dist/agent/auto-compaction.d.ts.map +1 -1
- package/dist/agent/auto-compaction.js +23 -10
- package/dist/agent/auto-compaction.js.map +1 -1
- package/dist/agent/compaction.d.ts.map +1 -1
- package/dist/agent/compaction.js +1 -1
- package/dist/agent/compaction.js.map +1 -1
- package/dist/agent/context-handoff.d.ts.map +1 -1
- package/dist/agent/context-handoff.js +2 -1
- package/dist/agent/context-handoff.js.map +1 -1
- package/dist/agent/index.d.ts +8 -1
- package/dist/agent/index.d.ts.map +1 -1
- package/dist/agent/index.js +8 -1
- package/dist/agent/index.js.map +1 -1
- package/dist/agent/mission-artifacts.d.ts +62 -0
- package/dist/agent/mission-artifacts.d.ts.map +1 -0
- package/dist/agent/mission-artifacts.js +438 -0
- package/dist/agent/mission-artifacts.js.map +1 -0
- package/dist/agent/mission-manifest.d.ts +139 -3
- package/dist/agent/mission-manifest.d.ts.map +1 -1
- package/dist/agent/mission-manifest.js +549 -3
- package/dist/agent/mission-manifest.js.map +1 -1
- package/dist/agent/mission-store.d.ts +80 -0
- package/dist/agent/mission-store.d.ts.map +1 -0
- package/dist/agent/mission-store.js +603 -0
- package/dist/agent/mission-store.js.map +1 -0
- package/dist/agent/modes.d.ts +3 -3
- package/dist/agent/modes.d.ts.map +1 -1
- package/dist/agent/modes.js +66 -3
- package/dist/agent/modes.js.map +1 -1
- package/dist/agent/oracle-consultation-policy.d.ts +22 -0
- package/dist/agent/oracle-consultation-policy.d.ts.map +1 -0
- package/dist/agent/oracle-consultation-policy.js +72 -0
- package/dist/agent/oracle-consultation-policy.js.map +1 -0
- package/dist/agent/oracle-policy-experiment.d.ts +27 -0
- package/dist/agent/oracle-policy-experiment.d.ts.map +1 -0
- package/dist/agent/oracle-policy-experiment.js +59 -0
- package/dist/agent/oracle-policy-experiment.js.map +1 -0
- package/dist/agent/oracle-policy-rollout.d.ts +42 -0
- package/dist/agent/oracle-policy-rollout.d.ts.map +1 -0
- package/dist/agent/oracle-policy-rollout.js +80 -0
- package/dist/agent/oracle-policy-rollout.js.map +1 -0
- package/dist/agent/plugin-agent-api.d.ts +13 -0
- package/dist/agent/plugin-agent-api.d.ts.map +1 -0
- package/dist/agent/plugin-agent-api.js +11 -0
- package/dist/agent/plugin-agent-api.js.map +1 -0
- package/dist/agent/plugin-agent-loader.d.ts +17 -0
- package/dist/agent/plugin-agent-loader.d.ts.map +1 -0
- package/dist/agent/plugin-agent-loader.js +81 -0
- package/dist/agent/plugin-agent-loader.js.map +1 -0
- package/dist/agent/plugin-agent-registry.d.ts +62 -0
- package/dist/agent/plugin-agent-registry.d.ts.map +1 -0
- package/dist/agent/plugin-agent-registry.js +109 -0
- package/dist/agent/plugin-agent-registry.js.map +1 -0
- package/dist/agent/profile-loader.d.ts +7 -0
- package/dist/agent/profile-loader.d.ts.map +1 -0
- package/dist/agent/profile-loader.js +115 -0
- package/dist/agent/profile-loader.js.map +1 -0
- package/dist/agent/profiles.d.ts +30 -0
- package/dist/agent/profiles.d.ts.map +1 -0
- package/dist/agent/profiles.js +146 -0
- package/dist/agent/profiles.js.map +1 -0
- package/dist/agent/prompt-cache.d.ts +0 -4
- package/dist/agent/prompt-cache.d.ts.map +1 -1
- package/dist/agent/prompt-cache.js +1 -7
- package/dist/agent/prompt-cache.js.map +1 -1
- package/dist/agent/providers/codex-app-server.d.ts.map +1 -1
- package/dist/agent/providers/codex-app-server.js +1 -3
- package/dist/agent/providers/codex-app-server.js.map +1 -1
- package/dist/agent/providers/google-gemini-cli.js +204 -107
- package/dist/agent/providers/google.js +101 -41
- package/dist/agent/providers/scripted.d.ts.map +1 -1
- package/dist/agent/providers/scripted.js +1 -3
- package/dist/agent/providers/scripted.js.map +1 -1
- package/dist/agent/providers/validation.d.ts.map +1 -1
- package/dist/agent/providers/validation.js +1 -3
- package/dist/agent/providers/validation.js.map +1 -1
- package/dist/agent/providers/vertex.js +204 -107
- package/dist/agent/routing-receipt.d.ts +34 -0
- package/dist/agent/routing-receipt.d.ts.map +1 -0
- package/dist/agent/routing-receipt.js +55 -0
- package/dist/agent/routing-receipt.js.map +1 -0
- package/dist/agent/skill-artifact-metadata.d.ts +14 -0
- package/dist/agent/skill-artifact-metadata.d.ts.map +1 -0
- package/dist/agent/skill-artifact-metadata.js +49 -0
- package/dist/agent/skill-artifact-metadata.js.map +1 -0
- package/dist/agent/snapshot-store.d.ts +32 -0
- package/dist/agent/snapshot-store.d.ts.map +1 -0
- package/dist/agent/snapshot-store.js +195 -0
- package/dist/agent/snapshot-store.js.map +1 -0
- package/dist/agent/specialist-profiles.d.ts +36 -0
- package/dist/agent/specialist-profiles.d.ts.map +1 -0
- package/dist/agent/specialist-profiles.js +159 -0
- package/dist/agent/specialist-profiles.js.map +1 -0
- package/dist/agent/subagent-specs.d.ts +5 -2
- package/dist/agent/subagent-specs.d.ts.map +1 -1
- package/dist/agent/subagent-specs.js +83 -10
- package/dist/agent/subagent-specs.js.map +1 -1
- package/dist/agent/swarm/coverage-gate.d.ts +37 -0
- package/dist/agent/swarm/coverage-gate.d.ts.map +1 -0
- package/dist/agent/swarm/coverage-gate.js +48 -0
- package/dist/agent/swarm/coverage-gate.js.map +1 -0
- package/dist/agent/swarm/executor.d.ts +1 -0
- package/dist/agent/swarm/executor.d.ts.map +1 -1
- package/dist/agent/swarm/executor.js +151 -15
- package/dist/agent/swarm/executor.js.map +1 -1
- package/dist/agent/swarm/orchestrator-prompt.d.ts +25 -0
- package/dist/agent/swarm/orchestrator-prompt.d.ts.map +1 -0
- package/dist/agent/swarm/orchestrator-prompt.js +48 -0
- package/dist/agent/swarm/orchestrator-prompt.js.map +1 -0
- package/dist/agent/swarm/plan-parser.d.ts.map +1 -1
- package/dist/agent/swarm/plan-parser.js +27 -2
- package/dist/agent/swarm/plan-parser.js.map +1 -1
- package/dist/agent/swarm/types.d.ts +17 -0
- package/dist/agent/swarm/types.d.ts.map +1 -1
- package/dist/agent/swarm/types.js.map +1 -1
- package/dist/agent/swarm/validation-directive.d.ts +21 -0
- package/dist/agent/swarm/validation-directive.d.ts.map +1 -0
- package/dist/agent/swarm/validation-directive.js +25 -0
- package/dist/agent/swarm/validation-directive.js.map +1 -0
- package/dist/agent/token-counter.d.ts +40 -0
- package/dist/agent/token-counter.d.ts.map +1 -0
- package/dist/agent/token-counter.js +74 -0
- package/dist/agent/token-counter.js.map +1 -0
- package/dist/agent/transport/events.d.ts +1 -1
- package/dist/agent/transport/events.d.ts.map +1 -1
- package/dist/agent/transport/events.js +1 -1
- package/dist/agent/transport/events.js.map +1 -1
- package/dist/agent/transport/tool-execution-bridge.d.ts.map +1 -1
- package/dist/agent/transport/tool-execution-bridge.js +4 -1
- package/dist/agent/transport/tool-execution-bridge.js.map +1 -1
- package/dist/agent/types.d.ts +4 -2
- package/dist/agent/types.d.ts.map +1 -1
- package/dist/agent/types.js.map +1 -1
- package/dist/api/enterprise-routes.d.ts.map +1 -1
- package/dist/api/enterprise-routes.js +87 -10
- package/dist/api/enterprise-routes.js.map +1 -1
- package/dist/api/org-settings-merge.d.ts +12 -0
- package/dist/api/org-settings-merge.d.ts.map +1 -0
- package/dist/api/org-settings-merge.js +38 -0
- package/dist/api/org-settings-merge.js.map +1 -0
- package/dist/api/user-settings-merge.d.ts +16 -0
- package/dist/api/user-settings-merge.d.ts.map +1 -0
- package/dist/api/user-settings-merge.js +37 -0
- package/dist/api/user-settings-merge.js.map +1 -0
- package/dist/app-server/daemon-lifecycle-api.d.ts.map +1 -1
- package/dist/app-server/daemon-lifecycle-api.js +1 -3
- package/dist/app-server/daemon-lifecycle-api.js.map +1 -1
- package/dist/app-server/external-agent-import-api.d.ts.map +1 -1
- package/dist/app-server/external-agent-import-api.js +1 -3
- package/dist/app-server/external-agent-import-api.js.map +1 -1
- package/dist/app-server/network-governance-api.d.ts.map +1 -1
- package/dist/app-server/network-governance-api.js +1 -3
- package/dist/app-server/network-governance-api.js.map +1 -1
- package/dist/app-server/plugin-bundle-api.d.ts.map +1 -1
- package/dist/app-server/plugin-bundle-api.js +2 -3
- package/dist/app-server/plugin-bundle-api.js.map +1 -1
- package/dist/app-server/policy-control-api.d.ts.map +1 -1
- package/dist/app-server/policy-control-api.js +1 -3
- package/dist/app-server/policy-control-api.js.map +1 -1
- package/dist/app-server/protocol-modes-api.d.ts.map +1 -1
- package/dist/app-server/protocol-modes-api.js +1 -3
- package/dist/app-server/protocol-modes-api.js.map +1 -1
- package/dist/app-server/session-api.d.ts.map +1 -1
- package/dist/app-server/session-api.js +15 -2
- package/dist/app-server/session-api.js.map +1 -1
- package/dist/audit/logger.d.ts +5 -5
- package/dist/cli/args.d.ts +4 -0
- package/dist/cli/args.d.ts.map +1 -1
- package/dist/cli/args.js +33 -1
- package/dist/cli/args.js.map +1 -1
- package/dist/cli/commands/a2a.d.ts.map +1 -1
- package/dist/cli/commands/a2a.js +1 -3
- package/dist/cli/commands/a2a.js.map +1 -1
- package/dist/cli/commands/mission.d.ts +4 -0
- package/dist/cli/commands/mission.d.ts.map +1 -0
- package/dist/cli/commands/mission.js +196 -0
- package/dist/cli/commands/mission.js.map +1 -0
- package/dist/cli/commands/value.d.ts +10 -0
- package/dist/cli/commands/value.d.ts.map +1 -0
- package/dist/cli/commands/value.js +33 -0
- package/dist/cli/commands/value.js.map +1 -0
- package/dist/cli/direct-runtime-command.d.ts +1 -0
- package/dist/cli/direct-runtime-command.d.ts.map +1 -1
- package/dist/cli/direct-runtime-command.js +25 -3
- package/dist/cli/direct-runtime-command.js.map +1 -1
- package/dist/cli/headless-protocol.d.ts.map +1 -1
- package/dist/cli/headless-protocol.js +1 -3
- package/dist/cli/headless-protocol.js.map +1 -1
- package/dist/cli/headless.d.ts +3 -19
- package/dist/cli/headless.d.ts.map +1 -1
- package/dist/cli/headless.js +8 -619
- package/dist/cli/headless.js.map +1 -1
- package/dist/cli/help.d.ts.map +1 -1
- package/dist/cli/help.js +13 -0
- package/dist/cli/help.js.map +1 -1
- package/dist/cli/native-tui-launcher.d.ts +126 -0
- package/dist/cli/native-tui-launcher.d.ts.map +1 -0
- package/dist/cli/native-tui-launcher.js +425 -0
- package/dist/cli/native-tui-launcher.js.map +1 -0
- package/dist/cli/rpc-mode.d.ts +3 -27
- package/dist/cli/rpc-mode.d.ts.map +1 -1
- package/dist/cli/rpc-mode.js +8 -177
- package/dist/cli/rpc-mode.js.map +1 -1
- package/dist/cli/session.d.ts +11 -19
- package/dist/cli/session.d.ts.map +1 -1
- package/dist/cli/session.js +6 -64
- package/dist/cli/session.js.map +1 -1
- package/dist/cli/system-prompt.d.ts.map +1 -1
- package/dist/cli/system-prompt.js +38 -7
- package/dist/cli/system-prompt.js.map +1 -1
- package/dist/cli-command-runtime.d.ts.map +1 -1
- package/dist/cli-command-runtime.js +26 -24
- package/dist/cli-command-runtime.js.map +1 -1
- package/dist/cli-runtime.js +41729 -121859
- package/dist/codex/app-server-client.d.ts.map +1 -1
- package/dist/codex/app-server-client.js +1 -3
- package/dist/codex/app-server-client.js.map +1 -1
- package/dist/codex/compatibility.d.ts.map +1 -1
- package/dist/codex/compatibility.js +1 -3
- package/dist/codex/compatibility.js.map +1 -1
- package/dist/codex/subagent-dispatch-table.d.ts +8 -0
- package/dist/codex/subagent-dispatch-table.d.ts.map +1 -1
- package/dist/codex/subagent-dispatch-table.js +23 -0
- package/dist/codex/subagent-dispatch-table.js.map +1 -1
- package/dist/config/env-vars.d.ts +12 -0
- package/dist/config/env-vars.d.ts.map +1 -1
- package/dist/config/env-vars.js +12 -0
- package/dist/config/env-vars.js.map +1 -1
- package/dist/config/ui-state.d.ts +32 -0
- package/dist/config/ui-state.d.ts.map +1 -0
- package/dist/config/ui-state.js +88 -0
- package/dist/config/ui-state.js.map +1 -0
- package/dist/context/manifest.d.ts.map +1 -1
- package/dist/context/manifest.js +1 -3
- package/dist/context/manifest.js.map +1 -1
- package/dist/context/repo-map.d.ts.map +1 -1
- package/dist/context/repo-map.js +1 -7
- package/dist/context/repo-map.js.map +1 -1
- package/dist/context/token-optimizer.d.ts.map +1 -1
- package/dist/context/token-optimizer.js +1 -8
- package/dist/context/token-optimizer.js.map +1 -1
- package/dist/conversation/render-model.d.ts +0 -36
- package/dist/conversation/render-model.d.ts.map +1 -1
- package/dist/conversation/render-model.js +1 -3
- package/dist/conversation/render-model.js.map +1 -1
- package/dist/customer-value/ambient-learning.d.ts +75 -0
- package/dist/customer-value/ambient-learning.d.ts.map +1 -0
- package/dist/customer-value/ambient-learning.js +472 -0
- package/dist/customer-value/ambient-learning.js.map +1 -0
- package/dist/customer-value/internal-helpers.d.ts +13 -0
- package/dist/customer-value/internal-helpers.d.ts.map +1 -0
- package/dist/customer-value/internal-helpers.js +70 -0
- package/dist/customer-value/internal-helpers.js.map +1 -0
- package/dist/customer-value/report.d.ts +282 -0
- package/dist/customer-value/report.d.ts.map +1 -0
- package/dist/customer-value/report.js +2085 -0
- package/dist/customer-value/report.js.map +1 -0
- package/dist/db/schema.d.ts +7 -3
- package/dist/db/schema.d.ts.map +1 -1
- package/dist/db/schema.js.map +1 -1
- package/dist/evalops/agent-bootstrap.d.ts.map +1 -1
- package/dist/evalops/agent-bootstrap.js +1 -3
- package/dist/evalops/agent-bootstrap.js.map +1 -1
- package/dist/evalops/agent-mcp-metadata.d.ts.map +1 -1
- package/dist/evalops/agent-mcp-metadata.js +1 -3
- package/dist/evalops/agent-mcp-metadata.js.map +1 -1
- package/dist/hooks/notification-hooks.d.ts +1 -1
- package/dist/hooks/notification-hooks.d.ts.map +1 -1
- package/dist/hooks/notification-hooks.js.map +1 -1
- package/dist/hooks/tui-surface.d.ts +35 -0
- package/dist/hooks/tui-surface.d.ts.map +1 -0
- package/dist/hooks/tui-surface.js +11 -0
- package/dist/hooks/tui-surface.js.map +1 -0
- package/dist/hooks/types.d.ts +2 -1
- package/dist/hooks/types.d.ts.map +1 -1
- package/dist/hooks/types.js.map +1 -1
- package/dist/hooks/typescript-loader.d.ts.map +1 -1
- package/dist/hooks/typescript-loader.js.map +1 -1
- package/dist/hooks/ui-context.d.ts.map +1 -1
- package/dist/hooks/ui-context.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/installers/maestro-review-workflow.d.ts +38 -0
- package/dist/installers/maestro-review-workflow.d.ts.map +1 -0
- package/dist/installers/maestro-review-workflow.js +163 -0
- package/dist/installers/maestro-review-workflow.js.map +1 -0
- package/dist/load-env.d.ts.map +1 -1
- package/dist/load-env.js +2 -1
- package/dist/load-env.js.map +1 -1
- package/dist/main.d.ts.map +1 -1
- package/dist/main.js +201 -840
- package/dist/main.js.map +1 -1
- package/dist/mcp/config.d.ts.map +1 -1
- package/dist/mcp/config.js +1 -3
- package/dist/mcp/config.js.map +1 -1
- package/dist/mcp/elicitation.d.ts.map +1 -1
- package/dist/mcp/elicitation.js +1 -3
- package/dist/mcp/elicitation.js.map +1 -1
- package/dist/mcp/official-registry.d.ts.map +1 -1
- package/dist/mcp/official-registry.js +1 -3
- package/dist/mcp/official-registry.js.map +1 -1
- package/dist/mcp/workspace-trust.d.ts.map +1 -1
- package/dist/mcp/workspace-trust.js +1 -3
- package/dist/mcp/workspace-trust.js.map +1 -1
- package/dist/memory/service-client.d.ts.map +1 -1
- package/dist/memory/service-client.js +1 -3
- package/dist/memory/service-client.js.map +1 -1
- package/dist/models/config-loader.d.ts +5 -5
- package/dist/models/config-loader.d.ts.map +1 -1
- package/dist/models/config-loader.js +1 -3
- package/dist/models/config-loader.js.map +1 -1
- package/dist/node_modules/@evalops/contracts/dist/index.d.ts +46 -0
- package/dist/node_modules/@evalops/contracts/dist/index.d.ts.map +1 -1
- package/dist/node_modules/@evalops/contracts/dist/index.js +3 -0
- package/dist/node_modules/@evalops/contracts/dist/index.js.map +1 -1
- package/dist/node_modules/@evalops/contracts/dist/maestro-app-server.d.ts +284 -0
- package/dist/node_modules/@evalops/contracts/dist/maestro-app-server.d.ts.map +1 -1
- package/dist/node_modules/@evalops/contracts/dist/maestro-app-server.js +41 -0
- package/dist/node_modules/@evalops/contracts/dist/maestro-app-server.js.map +1 -1
- package/dist/node_modules/@evalops/contracts/dist/maestro-settings.d.ts +61 -0
- package/dist/node_modules/@evalops/contracts/dist/maestro-settings.d.ts.map +1 -0
- package/dist/node_modules/@evalops/contracts/dist/maestro-settings.js +183 -0
- package/dist/node_modules/@evalops/contracts/dist/maestro-settings.js.map +1 -0
- package/dist/node_modules/@evalops/contracts/dist/schemas.d.ts +986 -0
- package/dist/node_modules/@evalops/contracts/dist/schemas.d.ts.map +1 -1
- package/dist/node_modules/@evalops/contracts/dist/schemas.js +49 -0
- package/dist/node_modules/@evalops/contracts/dist/schemas.js.map +1 -1
- package/dist/node_modules/@evalops/contracts/dist/token-estimation.d.ts +56 -0
- package/dist/node_modules/@evalops/contracts/dist/token-estimation.d.ts.map +1 -0
- package/dist/node_modules/@evalops/contracts/dist/token-estimation.js +86 -0
- package/dist/node_modules/@evalops/contracts/dist/token-estimation.js.map +1 -0
- package/dist/node_modules/@evalops/contracts/package.json +1 -1
- package/dist/oauth/connectors.d.ts.map +1 -1
- package/dist/oauth/connectors.js +1 -3
- package/dist/oauth/connectors.js.map +1 -1
- package/dist/oauth/evalops.d.ts.map +1 -1
- package/dist/oauth/evalops.js +1 -3
- package/dist/oauth/evalops.js.map +1 -1
- package/dist/packages/discovery.d.ts.map +1 -1
- package/dist/packages/discovery.js +1 -0
- package/dist/packages/discovery.js.map +1 -1
- package/dist/packages/inspection.d.ts.map +1 -1
- package/dist/packages/inspection.js +7 -1
- package/dist/packages/inspection.js.map +1 -1
- package/dist/packages/loader.d.ts.map +1 -1
- package/dist/packages/loader.js +8 -1
- package/dist/packages/loader.js.map +1 -1
- package/dist/packages/runtime.d.ts +1 -0
- package/dist/packages/runtime.d.ts.map +1 -1
- package/dist/packages/runtime.js +9 -1
- package/dist/packages/runtime.js.map +1 -1
- package/dist/packages/types.d.ts +6 -0
- package/dist/packages/types.d.ts.map +1 -1
- package/dist/packages/types.js.map +1 -1
- package/dist/platform/a2a-client.d.ts.map +1 -1
- package/dist/platform/a2a-client.js +1 -3
- package/dist/platform/a2a-client.js.map +1 -1
- package/dist/platform/a2a-cockpit.d.ts +1 -0
- package/dist/platform/a2a-cockpit.d.ts.map +1 -1
- package/dist/platform/a2a-cockpit.js +42 -11
- package/dist/platform/a2a-cockpit.js.map +1 -1
- package/dist/platform/a2a-completion-audit.d.ts +1 -1
- package/dist/platform/a2a-completion-audit.d.ts.map +1 -1
- package/dist/platform/a2a-completion-audit.js +7 -11
- package/dist/platform/a2a-completion-audit.js.map +1 -1
- package/dist/platform/a2a-maestro-peer.js +16 -0
- package/dist/platform/a2a-maestro-peer.js.map +1 -1
- package/dist/platform/a2a-peer-pairing.d.ts.map +1 -1
- package/dist/platform/a2a-peer-pairing.js +1 -3
- package/dist/platform/a2a-peer-pairing.js.map +1 -1
- package/dist/platform/a2a-peer-registry.d.ts.map +1 -1
- package/dist/platform/a2a-peer-registry.js +1 -3
- package/dist/platform/a2a-peer-registry.js.map +1 -1
- package/dist/platform/a2a-task-ledger.d.ts +20 -0
- package/dist/platform/a2a-task-ledger.d.ts.map +1 -1
- package/dist/platform/a2a-task-ledger.js +207 -11
- package/dist/platform/a2a-task-ledger.js.map +1 -1
- package/dist/platform/a2a-work-graph.d.ts.map +1 -1
- package/dist/platform/a2a-work-graph.js +1 -3
- package/dist/platform/a2a-work-graph.js.map +1 -1
- package/dist/platform/operating-layer.d.ts.map +1 -1
- package/dist/platform/operating-layer.js +14 -8
- package/dist/platform/operating-layer.js.map +1 -1
- package/dist/platform/tool-execution-client.d.ts.map +1 -1
- package/dist/platform/tool-execution-client.js +19 -2
- package/dist/platform/tool-execution-client.js.map +1 -1
- package/dist/providers/auth.d.ts.map +1 -1
- package/dist/providers/auth.js +1 -3
- package/dist/providers/auth.js.map +1 -1
- package/dist/runtime/agent-runtime.d.ts +22 -6
- package/dist/runtime/agent-runtime.d.ts.map +1 -1
- package/dist/runtime/agent-runtime.js +1 -1
- package/dist/runtime/agent-runtime.js.map +1 -1
- package/dist/runtime/env.d.ts +10 -1
- package/dist/runtime/env.d.ts.map +1 -1
- package/dist/runtime/env.js +64 -1
- package/dist/runtime/env.js.map +1 -1
- package/dist/runtime/prompt-queue.d.ts.map +1 -0
- package/dist/runtime/prompt-queue.js.map +1 -0
- package/dist/safety/policy.d.ts.map +1 -1
- package/dist/safety/policy.js +1 -4
- package/dist/safety/policy.js.map +1 -1
- package/dist/sandbox/docker-sandbox.d.ts.map +1 -1
- package/dist/sandbox/docker-sandbox.js +6 -1
- package/dist/sandbox/docker-sandbox.js.map +1 -1
- package/dist/server/handlers/chat-ws.d.ts +2 -1
- package/dist/server/handlers/chat-ws.d.ts.map +1 -1
- package/dist/server/handlers/chat-ws.js +150 -5
- package/dist/server/handlers/chat-ws.js.map +1 -1
- package/dist/server/handlers/chat.d.ts.map +1 -1
- package/dist/server/handlers/chat.js +78 -5
- package/dist/server/handlers/chat.js.map +1 -1
- package/dist/server/handlers/hosted-runner-drain.d.ts.map +1 -1
- package/dist/server/handlers/hosted-runner-drain.js +1 -3
- package/dist/server/handlers/hosted-runner-drain.js.map +1 -1
- package/dist/server/handlers/package.d.ts.map +1 -1
- package/dist/server/handlers/package.js +1 -0
- package/dist/server/handlers/package.js.map +1 -1
- package/dist/server/handlers/platform-a2a-push.d.ts.map +1 -1
- package/dist/server/handlers/platform-a2a-push.js +53 -2
- package/dist/server/handlers/platform-a2a-push.js.map +1 -1
- package/dist/server/handlers/queue.js +1 -1
- package/dist/server/handlers/queue.js.map +1 -1
- package/dist/server/handlers/runtime-app-server-ws.d.ts.map +1 -1
- package/dist/server/handlers/runtime-app-server-ws.js +1 -3
- package/dist/server/handlers/runtime-app-server-ws.js.map +1 -1
- package/dist/server/handlers/ui.js +1 -1
- package/dist/server/handlers/ui.js.map +1 -1
- package/dist/server/handlers/zen.js +1 -1
- package/dist/server/handlers/zen.js.map +1 -1
- package/dist/server/headless-runtime-service.d.ts +16 -0
- package/dist/server/headless-runtime-service.d.ts.map +1 -1
- package/dist/server/headless-runtime-service.js +232 -206
- package/dist/server/headless-runtime-service.js.map +1 -1
- package/dist/server/hosted-agent-runtime-progress.d.ts.map +1 -1
- package/dist/server/hosted-agent-runtime-progress.js +12 -3
- package/dist/server/hosted-agent-runtime-progress.js.map +1 -1
- package/dist/server/hosted-session-manager.d.ts +3 -0
- package/dist/server/hosted-session-manager.d.ts.map +1 -1
- package/dist/server/hosted-session-manager.js +26 -0
- package/dist/server/hosted-session-manager.js.map +1 -1
- package/dist/server/model-selection.d.ts +1 -0
- package/dist/server/model-selection.d.ts.map +1 -1
- package/dist/server/model-selection.js +4 -0
- package/dist/server/model-selection.js.map +1 -1
- package/dist/server/pending-request-payload.d.ts.map +1 -1
- package/dist/server/pending-request-payload.js +1 -3
- package/dist/server/pending-request-payload.js.map +1 -1
- package/dist/server/route-auth.d.ts.map +1 -1
- package/dist/server/route-auth.js +2 -0
- package/dist/server/route-auth.js.map +1 -1
- package/dist/server/session-serialization.d.ts.map +1 -1
- package/dist/server/session-serialization.js +4 -3
- package/dist/server/session-serialization.js.map +1 -1
- package/dist/server/session-timeline.d.ts.map +1 -1
- package/dist/server/session-timeline.js +1 -1
- package/dist/server/session-timeline.js.map +1 -1
- package/dist/server/sse-session.d.ts +2 -0
- package/dist/server/sse-session.d.ts.map +1 -1
- package/dist/server/sse-session.js +3 -0
- package/dist/server/sse-session.js.map +1 -1
- package/dist/server/stores/ui-store.d.ts +1 -1
- package/dist/server/stores/ui-store.d.ts.map +1 -1
- package/dist/server/stores/ui-store.js.map +1 -1
- package/dist/server/utils/token-estimator.d.ts +2 -2
- package/dist/server/utils/token-estimator.d.ts.map +1 -1
- package/dist/server/utils/token-estimator.js +2 -12
- package/dist/server/utils/token-estimator.js.map +1 -1
- package/dist/server/validation.d.ts +54 -0
- package/dist/server/validation.d.ts.map +1 -1
- package/dist/services/compliance/normalize.d.ts.map +1 -1
- package/dist/services/compliance/normalize.js +1 -3
- package/dist/services/compliance/normalize.js.map +1 -1
- package/dist/services/image-providers/cost.d.ts +70 -0
- package/dist/services/image-providers/cost.d.ts.map +1 -0
- package/dist/services/image-providers/cost.js +164 -0
- package/dist/services/image-providers/cost.js.map +1 -0
- package/dist/services/image-providers/flux.d.ts +40 -0
- package/dist/services/image-providers/flux.d.ts.map +1 -0
- package/dist/services/image-providers/flux.js +99 -0
- package/dist/services/image-providers/flux.js.map +1 -0
- package/dist/services/image-providers/index.d.ts +24 -0
- package/dist/services/image-providers/index.d.ts.map +1 -0
- package/dist/services/image-providers/index.js +27 -0
- package/dist/services/image-providers/index.js.map +1 -0
- package/dist/services/image-providers/masks.d.ts +51 -0
- package/dist/services/image-providers/masks.d.ts.map +1 -0
- package/dist/services/image-providers/masks.js +132 -0
- package/dist/services/image-providers/masks.js.map +1 -0
- package/dist/services/image-providers/openai.d.ts +35 -0
- package/dist/services/image-providers/openai.d.ts.map +1 -0
- package/dist/services/image-providers/openai.js +93 -0
- package/dist/services/image-providers/openai.js.map +1 -0
- package/dist/services/image-providers/types.d.ts +61 -0
- package/dist/services/image-providers/types.d.ts.map +1 -0
- package/dist/services/image-providers/types.js +17 -0
- package/dist/services/image-providers/types.js.map +1 -0
- package/dist/services/intelligent-router/index.d.ts +1 -0
- package/dist/services/intelligent-router/index.d.ts.map +1 -1
- package/dist/services/intelligent-router/index.js +1 -0
- package/dist/services/intelligent-router/index.js.map +1 -1
- package/dist/services/intelligent-router/normalize.d.ts +1 -0
- package/dist/services/intelligent-router/normalize.d.ts.map +1 -1
- package/dist/services/intelligent-router/normalize.js +18 -3
- package/dist/services/intelligent-router/normalize.js.map +1 -1
- package/dist/services/intelligent-router/outcome.d.ts +19 -0
- package/dist/services/intelligent-router/outcome.d.ts.map +1 -0
- package/dist/services/intelligent-router/outcome.js +51 -0
- package/dist/services/intelligent-router/outcome.js.map +1 -0
- package/dist/services/intelligent-router/recorder.d.ts +2 -0
- package/dist/services/intelligent-router/recorder.d.ts.map +1 -1
- package/dist/services/intelligent-router/recorder.js +72 -1
- package/dist/services/intelligent-router/recorder.js.map +1 -1
- package/dist/services/intelligent-router/service.d.ts +1 -0
- package/dist/services/intelligent-router/service.d.ts.map +1 -1
- package/dist/services/intelligent-router/service.js +60 -11
- package/dist/services/intelligent-router/service.js.map +1 -1
- package/dist/services/intelligent-router/types.d.ts +18 -0
- package/dist/services/intelligent-router/types.d.ts.map +1 -1
- package/dist/services/intelligent-router/types.js.map +1 -1
- package/dist/services/revenue-attribution/normalize.d.ts.map +1 -1
- package/dist/services/revenue-attribution/normalize.js +1 -3
- package/dist/services/revenue-attribution/normalize.js.map +1 -1
- package/dist/services/traces/normalize.d.ts.map +1 -1
- package/dist/services/traces/normalize.js +1 -3
- package/dist/services/traces/normalize.js.map +1 -1
- package/dist/services/workspace-config/middleware.d.ts +2 -0
- package/dist/services/workspace-config/middleware.d.ts.map +1 -1
- package/dist/services/workspace-config/middleware.js +25 -28
- package/dist/services/workspace-config/middleware.js.map +1 -1
- package/dist/services/workspace-config/normalize.d.ts.map +1 -1
- package/dist/services/workspace-config/normalize.js +1 -3
- package/dist/services/workspace-config/normalize.js.map +1 -1
- package/dist/session/agent-lineage-projection.d.ts +30 -0
- package/dist/session/agent-lineage-projection.d.ts.map +1 -0
- package/dist/session/agent-lineage-projection.js +109 -0
- package/dist/session/agent-lineage-projection.js.map +1 -0
- package/dist/session/manager.d.ts +3 -0
- package/dist/session/manager.d.ts.map +1 -1
- package/dist/session/manager.js +24 -0
- package/dist/session/manager.js.map +1 -1
- package/dist/session/session-graph-projection.d.ts +11 -0
- package/dist/session/session-graph-projection.d.ts.map +1 -1
- package/dist/session/session-graph-projection.js +28 -0
- package/dist/session/session-graph-projection.js.map +1 -1
- package/dist/session/types.d.ts +2 -0
- package/dist/session/types.d.ts.map +1 -1
- package/dist/session/types.js.map +1 -1
- package/dist/telemetry/agent-workforce-native-event.d.ts.map +1 -1
- package/dist/telemetry/agent-workforce-native-event.js +1 -3
- package/dist/telemetry/agent-workforce-native-event.js.map +1 -1
- package/dist/telemetry/maestro-event-bus.d.ts +1 -1
- package/dist/telemetry/maestro-event-bus.d.ts.map +1 -1
- package/dist/telemetry/maestro-event-bus.js +42 -81
- package/dist/telemetry/maestro-event-bus.js.map +1 -1
- package/dist/telemetry/maestro-platform-replay-fixture.d.ts.map +1 -1
- package/dist/telemetry/maestro-platform-replay-fixture.js +1 -3
- package/dist/telemetry/maestro-platform-replay-fixture.js.map +1 -1
- package/dist/telemetry/maestro-publisher-conformance-fixture.js.map +1 -1
- package/dist/telemetry/oracle-policy.d.ts +6 -0
- package/dist/telemetry/oracle-policy.d.ts.map +1 -0
- package/dist/telemetry/oracle-policy.js +17 -0
- package/dist/telemetry/oracle-policy.js.map +1 -0
- package/dist/telemetry/wide-events.d.ts +1 -1
- package/dist/telemetry/wide-events.d.ts.map +1 -1
- package/dist/telemetry/wide-events.js.map +1 -1
- package/dist/telemetry.d.ts.map +1 -1
- package/dist/telemetry.js +54 -43
- package/dist/telemetry.js.map +1 -1
- package/dist/theme/theme-loader.d.ts.map +1 -1
- package/dist/theme/theme-loader.js +1 -3
- package/dist/theme/theme-loader.js.map +1 -1
- package/dist/theme/theme.d.ts +2 -8
- package/dist/theme/theme.d.ts.map +1 -1
- package/dist/theme/theme.js +7 -0
- package/dist/theme/theme.js.map +1 -1
- package/dist/theme/tui-theme-helpers.d.ts +2 -1
- package/dist/theme/tui-theme-helpers.d.ts.map +1 -1
- package/dist/theme/tui-theme-helpers.js.map +1 -1
- package/dist/theme/tui-theme-types.d.ts +39 -0
- package/dist/theme/tui-theme-types.d.ts.map +1 -0
- package/dist/theme/tui-theme-types.js +10 -0
- package/dist/theme/tui-theme-types.js.map +1 -0
- package/dist/tools/apply-patch.d.ts.map +1 -1
- package/dist/tools/apply-patch.js +76 -8
- package/dist/tools/apply-patch.js.map +1 -1
- package/dist/tools/diff-preview.d.ts.map +1 -1
- package/dist/tools/diff-preview.js +10 -1
- package/dist/tools/diff-preview.js.map +1 -1
- package/dist/tools/edit.d.ts.map +1 -1
- package/dist/tools/edit.js +17 -0
- package/dist/tools/edit.js.map +1 -1
- package/dist/tools/index.d.ts +199 -160
- package/dist/tools/index.d.ts.map +1 -1
- package/dist/tools/index.js +4 -0
- package/dist/tools/index.js.map +1 -1
- package/dist/tools/lazy-registry.d.ts.map +1 -1
- package/dist/tools/lazy-registry.js +1 -0
- package/dist/tools/lazy-registry.js.map +1 -1
- package/dist/tools/oracle.d.ts +9 -0
- package/dist/tools/oracle.d.ts.map +1 -1
- package/dist/tools/oracle.js +26 -24
- package/dist/tools/oracle.js.map +1 -1
- package/dist/tools/painter.d.ts +73 -0
- package/dist/tools/painter.d.ts.map +1 -0
- package/dist/tools/painter.js +283 -0
- package/dist/tools/painter.js.map +1 -0
- package/dist/tools/typebox-tool.d.ts.map +1 -1
- package/dist/tools/typebox-tool.js +1 -1
- package/dist/tools/typebox-tool.js.map +1 -1
- package/dist/tools/write.d.ts.map +1 -1
- package/dist/tools/write.js +9 -0
- package/dist/tools/write.js.map +1 -1
- package/dist/undo/tracker.d.ts +5 -0
- package/dist/undo/tracker.d.ts.map +1 -1
- package/dist/undo/tracker.js +13 -0
- package/dist/undo/tracker.js.map +1 -1
- package/dist/utils/fs.d.ts +1 -1
- package/dist/utils/fs.d.ts.map +1 -1
- package/dist/utils/fs.js +29 -2
- package/dist/utils/fs.js.map +1 -1
- package/dist/utils/git-stash.d.ts.map +1 -1
- package/dist/utils/git-stash.js +15 -8
- package/dist/utils/git-stash.js.map +1 -1
- package/dist/utils/json.d.ts +11 -0
- package/dist/utils/json.d.ts.map +1 -1
- package/dist/utils/json.js +9 -0
- package/dist/utils/json.js.map +1 -1
- package/dist/utils/shell-env.d.ts.map +1 -1
- package/dist/utils/shell-env.js +2 -0
- package/dist/utils/shell-env.js.map +1 -1
- package/dist/utils/terminal-image.d.ts +52 -0
- package/dist/utils/terminal-image.d.ts.map +1 -0
- package/dist/utils/terminal-image.js +95 -0
- package/dist/utils/terminal-image.js.map +1 -0
- package/dist/utils/terminal-text.d.ts +11 -0
- package/dist/utils/terminal-text.d.ts.map +1 -0
- package/dist/utils/terminal-text.js +21 -0
- package/dist/utils/terminal-text.js.map +1 -0
- package/dist/utils/url-extractor-git.d.ts +26 -0
- package/dist/utils/url-extractor-git.d.ts.map +1 -0
- package/dist/utils/url-extractor-git.js +259 -0
- package/dist/utils/url-extractor-git.js.map +1 -0
- package/dist/utils/url-extractor.d.ts.map +1 -1
- package/dist/utils/url-extractor.js +23 -251
- package/dist/utils/url-extractor.js.map +1 -1
- package/dist/version.json +2 -2
- package/dist/web-server.d.ts.map +1 -1
- package/dist/web-server.js +24 -2
- package/dist/web-server.js.map +1 -1
- package/package.json +312 -306
- package/skills/incident-triage/SKILL.md +20 -1
- package/skills/install-code-review/SKILL.md +69 -0
- package/skills/security-review/SKILL.md +68 -0
- package/skills/security-review/reference/rubric.md +85 -0
- package/dist/cli/commands/agents.d.ts +0 -20
- package/dist/cli/commands/agents.d.ts.map +0 -1
- package/dist/cli/commands/agents.js +0 -280
- package/dist/cli/commands/agents.js.map +0 -1
- package/dist/cli/commands/anthropic.d.ts +0 -2
- package/dist/cli/commands/anthropic.d.ts.map +0 -1
- package/dist/cli/commands/anthropic.js +0 -6
- package/dist/cli/commands/anthropic.js.map +0 -1
- package/dist/cli/commands/cost.d.ts +0 -13
- package/dist/cli/commands/cost.d.ts.map +0 -1
- package/dist/cli/commands/cost.js +0 -143
- package/dist/cli/commands/cost.js.map +0 -1
- package/dist/cli/commands/exec-constants.d.ts +0 -3
- package/dist/cli/commands/exec-constants.d.ts.map +0 -1
- package/dist/cli/commands/exec-constants.js +0 -3
- package/dist/cli/commands/exec-constants.js.map +0 -1
- package/dist/cli/commands/exec.d.ts +0 -19
- package/dist/cli/commands/exec.d.ts.map +0 -1
- package/dist/cli/commands/exec.js +0 -207
- package/dist/cli/commands/exec.js.map +0 -1
- package/dist/cli/commands/hooks.d.ts +0 -2
- package/dist/cli/commands/hooks.d.ts.map +0 -1
- package/dist/cli/commands/hooks.js +0 -25
- package/dist/cli/commands/hooks.js.map +0 -1
- package/dist/cli/commands/hosted-runner.d.ts +0 -25
- package/dist/cli/commands/hosted-runner.d.ts.map +0 -1
- package/dist/cli/commands/hosted-runner.js +0 -278
- package/dist/cli/commands/hosted-runner.js.map +0 -1
- package/dist/cli/commands/memory.d.ts +0 -2
- package/dist/cli/commands/memory.d.ts.map +0 -1
- package/dist/cli/commands/memory.js +0 -208
- package/dist/cli/commands/memory.js.map +0 -1
- package/dist/cli/commands/models.d.ts +0 -3
- package/dist/cli/commands/models.d.ts.map +0 -1
- package/dist/cli/commands/models.js +0 -154
- package/dist/cli/commands/models.js.map +0 -1
- package/dist/cli/commands/modes.d.ts +0 -8
- package/dist/cli/commands/modes.d.ts.map +0 -1
- package/dist/cli/commands/modes.js +0 -151
- package/dist/cli/commands/modes.js.map +0 -1
- package/dist/cli/commands/openai.d.ts +0 -2
- package/dist/cli/commands/openai.d.ts.map +0 -1
- package/dist/cli/commands/openai.js +0 -116
- package/dist/cli/commands/openai.js.map +0 -1
- package/dist/cli/commands/session-transfer.d.ts +0 -5
- package/dist/cli/commands/session-transfer.d.ts.map +0 -1
- package/dist/cli/commands/session-transfer.js +0 -43
- package/dist/cli/commands/session-transfer.js.map +0 -1
- package/dist/cli/commands/sessions.d.ts +0 -8
- package/dist/cli/commands/sessions.d.ts.map +0 -1
- package/dist/cli/commands/sessions.js +0 -152
- package/dist/cli/commands/sessions.js.map +0 -1
- package/dist/cli/commands/skill.d.ts +0 -10
- package/dist/cli/commands/skill.d.ts.map +0 -1
- package/dist/cli/commands/skill.js +0 -303
- package/dist/cli/commands/skill.js.map +0 -1
- package/dist/cli/commands/stats.d.ts +0 -7
- package/dist/cli/commands/stats.d.ts.map +0 -1
- package/dist/cli/commands/stats.js +0 -167
- package/dist/cli/commands/stats.js.map +0 -1
- package/dist/cli/commands/status.d.ts +0 -2
- package/dist/cli/commands/status.d.ts.map +0 -1
- package/dist/cli/commands/status.js +0 -11
- package/dist/cli/commands/status.js.map +0 -1
- package/dist/cli/commands/update.d.ts +0 -12
- package/dist/cli/commands/update.d.ts.map +0 -1
- package/dist/cli/commands/update.js +0 -148
- package/dist/cli/commands/update.js.map +0 -1
- package/dist/cli-tui/about-view.d.ts +0 -48
- package/dist/cli-tui/about-view.d.ts.map +0 -1
- package/dist/cli-tui/about-view.js +0 -206
- package/dist/cli-tui/about-view.js.map +0 -1
- package/dist/cli-tui/agent-event-router.d.ts +0 -28
- package/dist/cli-tui/agent-event-router.d.ts.map +0 -1
- package/dist/cli-tui/agent-event-router.js +0 -126
- package/dist/cli-tui/agent-event-router.js.map +0 -1
- package/dist/cli-tui/approval/approval-controller.d.ts +0 -28
- package/dist/cli-tui/approval/approval-controller.d.ts.map +0 -1
- package/dist/cli-tui/approval/approval-controller.js +0 -99
- package/dist/cli-tui/approval/approval-controller.js.map +0 -1
- package/dist/cli-tui/approval/approval-modal.d.ts +0 -26
- package/dist/cli-tui/approval/approval-modal.d.ts.map +0 -1
- package/dist/cli-tui/approval/approval-modal.js +0 -143
- package/dist/cli-tui/approval/approval-modal.js.map +0 -1
- package/dist/cli-tui/assistant-message.d.ts +0 -41
- package/dist/cli-tui/assistant-message.d.ts.map +0 -1
- package/dist/cli-tui/assistant-message.js +0 -236
- package/dist/cli-tui/assistant-message.js.map +0 -1
- package/dist/cli-tui/auth-state.d.ts +0 -7
- package/dist/cli-tui/auth-state.d.ts.map +0 -1
- package/dist/cli-tui/auth-state.js +0 -46
- package/dist/cli-tui/auth-state.js.map +0 -1
- package/dist/cli-tui/background/background-tasks-controller.d.ts +0 -31
- package/dist/cli-tui/background/background-tasks-controller.d.ts.map +0 -1
- package/dist/cli-tui/background/background-tasks-controller.js +0 -84
- package/dist/cli-tui/background/background-tasks-controller.js.map +0 -1
- package/dist/cli-tui/base-view.d.ts +0 -111
- package/dist/cli-tui/base-view.d.ts.map +0 -1
- package/dist/cli-tui/base-view.js +0 -145
- package/dist/cli-tui/base-view.js.map +0 -1
- package/dist/cli-tui/bash/background-launcher.d.ts +0 -14
- package/dist/cli-tui/bash/background-launcher.d.ts.map +0 -1
- package/dist/cli-tui/bash/background-launcher.js +0 -50
- package/dist/cli-tui/bash/background-launcher.js.map +0 -1
- package/dist/cli-tui/bash/bash-autocomplete.d.ts +0 -40
- package/dist/cli-tui/bash/bash-autocomplete.d.ts.map +0 -1
- package/dist/cli-tui/bash/bash-autocomplete.js +0 -347
- package/dist/cli-tui/bash/bash-autocomplete.js.map +0 -1
- package/dist/cli-tui/bash/bash-history.d.ts +0 -21
- package/dist/cli-tui/bash/bash-history.d.ts.map +0 -1
- package/dist/cli-tui/bash/bash-history.js +0 -72
- package/dist/cli-tui/bash/bash-history.js.map +0 -1
- package/dist/cli-tui/bash/bash-syntax.d.ts +0 -5
- package/dist/cli-tui/bash/bash-syntax.d.ts.map +0 -1
- package/dist/cli-tui/bash/bash-syntax.js +0 -176
- package/dist/cli-tui/bash/bash-syntax.js.map +0 -1
- package/dist/cli-tui/bash/index.d.ts +0 -4
- package/dist/cli-tui/bash/index.d.ts.map +0 -1
- package/dist/cli-tui/bash/index.js +0 -4
- package/dist/cli-tui/bash/index.js.map +0 -1
- package/dist/cli-tui/bash-mode-view.d.ts +0 -86
- package/dist/cli-tui/bash-mode-view.d.ts.map +0 -1
- package/dist/cli-tui/bash-mode-view.js +0 -560
- package/dist/cli-tui/bash-mode-view.js.map +0 -1
- package/dist/cli-tui/bash-shell-block.d.ts +0 -50
- package/dist/cli-tui/bash-shell-block.d.ts.map +0 -1
- package/dist/cli-tui/bash-shell-block.js +0 -119
- package/dist/cli-tui/bash-shell-block.js.map +0 -1
- package/dist/cli-tui/changelog-view.d.ts +0 -13
- package/dist/cli-tui/changelog-view.d.ts.map +0 -1
- package/dist/cli-tui/changelog-view.js +0 -34
- package/dist/cli-tui/changelog-view.js.map +0 -1
- package/dist/cli-tui/clean-mode.d.ts +0 -13
- package/dist/cli-tui/clean-mode.d.ts.map +0 -1
- package/dist/cli-tui/clean-mode.js +0 -32
- package/dist/cli-tui/clean-mode.js.map +0 -1
- package/dist/cli-tui/client-tools/client-tool-controller.d.ts +0 -41
- package/dist/cli-tui/client-tools/client-tool-controller.d.ts.map +0 -1
- package/dist/cli-tui/client-tools/client-tool-controller.js +0 -862
- package/dist/cli-tui/client-tools/client-tool-controller.js.map +0 -1
- package/dist/cli-tui/client-tools/local-client-tool-service.d.ts +0 -33
- package/dist/cli-tui/client-tools/local-client-tool-service.d.ts.map +0 -1
- package/dist/cli-tui/client-tools/local-client-tool-service.js +0 -94
- package/dist/cli-tui/client-tools/local-client-tool-service.js.map +0 -1
- package/dist/cli-tui/commands/a2a-handlers.d.ts +0 -7
- package/dist/cli-tui/commands/a2a-handlers.d.ts.map +0 -1
- package/dist/cli-tui/commands/a2a-handlers.js +0 -215
- package/dist/cli-tui/commands/a2a-handlers.js.map +0 -1
- package/dist/cli-tui/commands/access-command.d.ts +0 -3
- package/dist/cli-tui/commands/access-command.d.ts.map +0 -1
- package/dist/cli-tui/commands/access-command.js +0 -89
- package/dist/cli-tui/commands/access-command.js.map +0 -1
- package/dist/cli-tui/commands/argument-parser.d.ts +0 -12
- package/dist/cli-tui/commands/argument-parser.d.ts.map +0 -1
- package/dist/cli-tui/commands/argument-parser.js +0 -135
- package/dist/cli-tui/commands/argument-parser.js.map +0 -1
- package/dist/cli-tui/commands/audit-command.d.ts +0 -5
- package/dist/cli-tui/commands/audit-command.d.ts.map +0 -1
- package/dist/cli-tui/commands/audit-command.js +0 -35
- package/dist/cli-tui/commands/audit-command.js.map +0 -1
- package/dist/cli-tui/commands/background-handlers.d.ts +0 -14
- package/dist/cli-tui/commands/background-handlers.d.ts.map +0 -1
- package/dist/cli-tui/commands/background-handlers.js +0 -115
- package/dist/cli-tui/commands/background-handlers.js.map +0 -1
- package/dist/cli-tui/commands/command-catalog.d.ts +0 -29
- package/dist/cli-tui/commands/command-catalog.d.ts.map +0 -1
- package/dist/cli-tui/commands/command-catalog.js +0 -666
- package/dist/cli-tui/commands/command-catalog.js.map +0 -1
- package/dist/cli-tui/commands/command-registry-adapter.d.ts +0 -12
- package/dist/cli-tui/commands/command-registry-adapter.d.ts.map +0 -1
- package/dist/cli-tui/commands/command-registry-adapter.js +0 -129
- package/dist/cli-tui/commands/command-registry-adapter.js.map +0 -1
- package/dist/cli-tui/commands/command-suite-catalog.d.ts +0 -14
- package/dist/cli-tui/commands/command-suite-catalog.d.ts.map +0 -1
- package/dist/cli-tui/commands/command-suite-catalog.js +0 -147
- package/dist/cli-tui/commands/command-suite-catalog.js.map +0 -1
- package/dist/cli-tui/commands/command-suite-handlers.d.ts +0 -111
- package/dist/cli-tui/commands/command-suite-handlers.d.ts.map +0 -1
- package/dist/cli-tui/commands/command-suite-handlers.js +0 -110
- package/dist/cli-tui/commands/command-suite-handlers.js.map +0 -1
- package/dist/cli-tui/commands/composer-handlers.d.ts +0 -8
- package/dist/cli-tui/commands/composer-handlers.d.ts.map +0 -1
- package/dist/cli-tui/commands/composer-handlers.js +0 -90
- package/dist/cli-tui/commands/composer-handlers.js.map +0 -1
- package/dist/cli-tui/commands/framework-handlers.d.ts +0 -18
- package/dist/cli-tui/commands/framework-handlers.d.ts.map +0 -1
- package/dist/cli-tui/commands/framework-handlers.js +0 -57
- package/dist/cli-tui/commands/framework-handlers.js.map +0 -1
- package/dist/cli-tui/commands/guardian-handlers.d.ts +0 -20
- package/dist/cli-tui/commands/guardian-handlers.d.ts.map +0 -1
- package/dist/cli-tui/commands/guardian-handlers.js +0 -48
- package/dist/cli-tui/commands/guardian-handlers.js.map +0 -1
- package/dist/cli-tui/commands/handlers/mode-handler.d.ts +0 -32
- package/dist/cli-tui/commands/handlers/mode-handler.d.ts.map +0 -1
- package/dist/cli-tui/commands/handlers/mode-handler.js +0 -153
- package/dist/cli-tui/commands/handlers/mode-handler.js.map +0 -1
- package/dist/cli-tui/commands/hotkeys-command.d.ts +0 -8
- package/dist/cli-tui/commands/hotkeys-command.d.ts.map +0 -1
- package/dist/cli-tui/commands/hotkeys-command.js +0 -61
- package/dist/cli-tui/commands/hotkeys-command.js.map +0 -1
- package/dist/cli-tui/commands/limits-command.d.ts +0 -3
- package/dist/cli-tui/commands/limits-command.d.ts.map +0 -1
- package/dist/cli-tui/commands/limits-command.js +0 -88
- package/dist/cli-tui/commands/limits-command.js.map +0 -1
- package/dist/cli-tui/commands/mcp-handlers.d.ts +0 -12
- package/dist/cli-tui/commands/mcp-handlers.d.ts.map +0 -1
- package/dist/cli-tui/commands/mcp-handlers.js +0 -1306
- package/dist/cli-tui/commands/mcp-handlers.js.map +0 -1
- package/dist/cli-tui/commands/memory-handlers.d.ts +0 -28
- package/dist/cli-tui/commands/memory-handlers.d.ts.map +0 -1
- package/dist/cli-tui/commands/memory-handlers.js +0 -414
- package/dist/cli-tui/commands/memory-handlers.js.map +0 -1
- package/dist/cli-tui/commands/otel-handlers.d.ts +0 -11
- package/dist/cli-tui/commands/otel-handlers.d.ts.map +0 -1
- package/dist/cli-tui/commands/otel-handlers.js +0 -20
- package/dist/cli-tui/commands/otel-handlers.js.map +0 -1
- package/dist/cli-tui/commands/package-handlers.d.ts +0 -30
- package/dist/cli-tui/commands/package-handlers.d.ts.map +0 -1
- package/dist/cli-tui/commands/package-handlers.js +0 -499
- package/dist/cli-tui/commands/package-handlers.js.map +0 -1
- package/dist/cli-tui/commands/pii-command.d.ts +0 -3
- package/dist/cli-tui/commands/pii-command.d.ts.map +0 -1
- package/dist/cli-tui/commands/pii-command.js +0 -54
- package/dist/cli-tui/commands/pii-command.js.map +0 -1
- package/dist/cli-tui/commands/registry.d.ts +0 -3
- package/dist/cli-tui/commands/registry.d.ts.map +0 -1
- package/dist/cli-tui/commands/registry.js +0 -36
- package/dist/cli-tui/commands/registry.js.map +0 -1
- package/dist/cli-tui/commands/safety-handlers.d.ts +0 -36
- package/dist/cli-tui/commands/safety-handlers.d.ts.map +0 -1
- package/dist/cli-tui/commands/safety-handlers.js +0 -62
- package/dist/cli-tui/commands/safety-handlers.js.map +0 -1
- package/dist/cli-tui/commands/subcommands/auth-commands.d.ts +0 -26
- package/dist/cli-tui/commands/subcommands/auth-commands.d.ts.map +0 -1
- package/dist/cli-tui/commands/subcommands/auth-commands.js +0 -79
- package/dist/cli-tui/commands/subcommands/auth-commands.js.map +0 -1
- package/dist/cli-tui/commands/subcommands/config-commands.d.ts +0 -23
- package/dist/cli-tui/commands/subcommands/config-commands.d.ts.map +0 -1
- package/dist/cli-tui/commands/subcommands/config-commands.js +0 -61
- package/dist/cli-tui/commands/subcommands/config-commands.js.map +0 -1
- package/dist/cli-tui/commands/subcommands/diag-commands.d.ts +0 -46
- package/dist/cli-tui/commands/subcommands/diag-commands.d.ts.map +0 -1
- package/dist/cli-tui/commands/subcommands/diag-commands.js +0 -163
- package/dist/cli-tui/commands/subcommands/diag-commands.js.map +0 -1
- package/dist/cli-tui/commands/subcommands/git-commands.d.ts +0 -18
- package/dist/cli-tui/commands/subcommands/git-commands.d.ts.map +0 -1
- package/dist/cli-tui/commands/subcommands/git-commands.js +0 -50
- package/dist/cli-tui/commands/subcommands/git-commands.js.map +0 -1
- package/dist/cli-tui/commands/subcommands/index.d.ts +0 -18
- package/dist/cli-tui/commands/subcommands/index.d.ts.map +0 -1
- package/dist/cli-tui/commands/subcommands/index.js +0 -18
- package/dist/cli-tui/commands/subcommands/index.js.map +0 -1
- package/dist/cli-tui/commands/subcommands/safety-commands.d.ts +0 -26
- package/dist/cli-tui/commands/subcommands/safety-commands.d.ts.map +0 -1
- package/dist/cli-tui/commands/subcommands/safety-commands.js +0 -149
- package/dist/cli-tui/commands/subcommands/safety-commands.js.map +0 -1
- package/dist/cli-tui/commands/subcommands/session-commands.d.ts +0 -36
- package/dist/cli-tui/commands/subcommands/session-commands.d.ts.map +0 -1
- package/dist/cli-tui/commands/subcommands/session-commands.js +0 -112
- package/dist/cli-tui/commands/subcommands/session-commands.js.map +0 -1
- package/dist/cli-tui/commands/subcommands/tools-commands.d.ts +0 -27
- package/dist/cli-tui/commands/subcommands/tools-commands.d.ts.map +0 -1
- package/dist/cli-tui/commands/subcommands/tools-commands.js +0 -80
- package/dist/cli-tui/commands/subcommands/tools-commands.js.map +0 -1
- package/dist/cli-tui/commands/subcommands/ui-commands.d.ts +0 -30
- package/dist/cli-tui/commands/subcommands/ui-commands.d.ts.map +0 -1
- package/dist/cli-tui/commands/subcommands/ui-commands.js +0 -74
- package/dist/cli-tui/commands/subcommands/ui-commands.js.map +0 -1
- package/dist/cli-tui/commands/subcommands/undo-commands.d.ts +0 -25
- package/dist/cli-tui/commands/subcommands/undo-commands.d.ts.map +0 -1
- package/dist/cli-tui/commands/subcommands/undo-commands.js +0 -74
- package/dist/cli-tui/commands/subcommands/undo-commands.js.map +0 -1
- package/dist/cli-tui/commands/subcommands/usage-commands.d.ts +0 -19
- package/dist/cli-tui/commands/subcommands/usage-commands.d.ts.map +0 -1
- package/dist/cli-tui/commands/subcommands/usage-commands.js +0 -63
- package/dist/cli-tui/commands/subcommands/usage-commands.js.map +0 -1
- package/dist/cli-tui/commands/subcommands/utils.d.ts +0 -127
- package/dist/cli-tui/commands/subcommands/utils.d.ts.map +0 -1
- package/dist/cli-tui/commands/subcommands/utils.js +0 -395
- package/dist/cli-tui/commands/subcommands/utils.js.map +0 -1
- package/dist/cli-tui/commands/types.d.ts +0 -105
- package/dist/cli-tui/commands/types.d.ts.map +0 -1
- package/dist/cli-tui/commands/types.js +0 -2
- package/dist/cli-tui/commands/types.js.map +0 -1
- package/dist/cli-tui/commands/undo-handlers.d.ts +0 -29
- package/dist/cli-tui/commands/undo-handlers.d.ts.map +0 -1
- package/dist/cli-tui/commands/undo-handlers.js +0 -300
- package/dist/cli-tui/commands/undo-handlers.js.map +0 -1
- package/dist/cli-tui/commands/utility-handlers.d.ts +0 -55
- package/dist/cli-tui/commands/utility-handlers.d.ts.map +0 -1
- package/dist/cli-tui/commands/utility-handlers.js +0 -137
- package/dist/cli-tui/commands/utility-handlers.js.map +0 -1
- package/dist/cli-tui/commands/workflow-handlers.d.ts +0 -22
- package/dist/cli-tui/commands/workflow-handlers.d.ts.map +0 -1
- package/dist/cli-tui/commands/workflow-handlers.js +0 -227
- package/dist/cli-tui/commands/workflow-handlers.js.map +0 -1
- package/dist/cli-tui/compact-boundary-message.d.ts +0 -9
- package/dist/cli-tui/compact-boundary-message.d.ts.map +0 -1
- package/dist/cli-tui/compact-boundary-message.js +0 -18
- package/dist/cli-tui/compact-boundary-message.js.map +0 -1
- package/dist/cli-tui/compaction-recovery.d.ts +0 -6
- package/dist/cli-tui/compaction-recovery.d.ts.map +0 -1
- package/dist/cli-tui/compaction-recovery.js +0 -13
- package/dist/cli-tui/compaction-recovery.js.map +0 -1
- package/dist/cli-tui/config-view.d.ts +0 -30
- package/dist/cli-tui/config-view.d.ts.map +0 -1
- package/dist/cli-tui/config-view.js +0 -255
- package/dist/cli-tui/config-view.js.map +0 -1
- package/dist/cli-tui/context-view.d.ts +0 -20
- package/dist/cli-tui/context-view.d.ts.map +0 -1
- package/dist/cli-tui/context-view.js +0 -191
- package/dist/cli-tui/context-view.js.map +0 -1
- package/dist/cli-tui/custom-editor.d.ts +0 -25
- package/dist/cli-tui/custom-editor.d.ts.map +0 -1
- package/dist/cli-tui/custom-editor.js +0 -241
- package/dist/cli-tui/custom-editor.js.map +0 -1
- package/dist/cli-tui/editor-view.d.ts +0 -34
- package/dist/cli-tui/editor-view.d.ts.map +0 -1
- package/dist/cli-tui/editor-view.js +0 -102
- package/dist/cli-tui/editor-view.js.map +0 -1
- package/dist/cli-tui/feedback-view.d.ts +0 -35
- package/dist/cli-tui/feedback-view.d.ts.map +0 -1
- package/dist/cli-tui/feedback-view.js +0 -271
- package/dist/cli-tui/feedback-view.js.map +0 -1
- package/dist/cli-tui/footer.d.ts +0 -56
- package/dist/cli-tui/footer.d.ts.map +0 -1
- package/dist/cli-tui/footer.js +0 -228
- package/dist/cli-tui/footer.js.map +0 -1
- package/dist/cli-tui/git/commit-modal.d.ts +0 -14
- package/dist/cli-tui/git/commit-modal.d.ts.map +0 -1
- package/dist/cli-tui/git/commit-modal.js +0 -56
- package/dist/cli-tui/git/commit-modal.js.map +0 -1
- package/dist/cli-tui/git/git-preview-modal.d.ts +0 -40
- package/dist/cli-tui/git/git-preview-modal.d.ts.map +0 -1
- package/dist/cli-tui/git/git-preview-modal.js +0 -123
- package/dist/cli-tui/git/git-preview-modal.js.map +0 -1
- package/dist/cli-tui/git/git-view.d.ts +0 -65
- package/dist/cli-tui/git/git-view.d.ts.map +0 -1
- package/dist/cli-tui/git/git-view.js +0 -529
- package/dist/cli-tui/git/git-view.js.map +0 -1
- package/dist/cli-tui/history/history-config.d.ts +0 -7
- package/dist/cli-tui/history/history-config.d.ts.map +0 -1
- package/dist/cli-tui/history/history-config.js +0 -49
- package/dist/cli-tui/history/history-config.js.map +0 -1
- package/dist/cli-tui/history/prompt-history.d.ts +0 -33
- package/dist/cli-tui/history/prompt-history.d.ts.map +0 -1
- package/dist/cli-tui/history/prompt-history.js +0 -185
- package/dist/cli-tui/history/prompt-history.js.map +0 -1
- package/dist/cli-tui/history/tool-history.d.ts +0 -50
- package/dist/cli-tui/history/tool-history.d.ts.map +0 -1
- package/dist/cli-tui/history/tool-history.js +0 -253
- package/dist/cli-tui/history/tool-history.js.map +0 -1
- package/dist/cli-tui/hook-message.d.ts +0 -13
- package/dist/cli-tui/hook-message.d.ts.map +0 -1
- package/dist/cli-tui/hook-message.js +0 -56
- package/dist/cli-tui/hook-message.js.map +0 -1
- package/dist/cli-tui/hooks/hook-input-modal.d.ts +0 -22
- package/dist/cli-tui/hooks/hook-input-modal.d.ts.map +0 -1
- package/dist/cli-tui/hooks/hook-input-modal.js +0 -63
- package/dist/cli-tui/hooks/hook-input-modal.js.map +0 -1
- package/dist/cli-tui/hotkeys-view.d.ts +0 -13
- package/dist/cli-tui/hotkeys-view.d.ts.map +0 -1
- package/dist/cli-tui/hotkeys-view.js +0 -96
- package/dist/cli-tui/hotkeys-view.js.map +0 -1
- package/dist/cli-tui/import-view.d.ts +0 -28
- package/dist/cli-tui/import-view.d.ts.map +0 -1
- package/dist/cli-tui/import-view.js +0 -184
- package/dist/cli-tui/import-view.js.map +0 -1
- package/dist/cli-tui/info-view.d.ts +0 -18
- package/dist/cli-tui/info-view.d.ts.map +0 -1
- package/dist/cli-tui/info-view.js +0 -107
- package/dist/cli-tui/info-view.js.map +0 -1
- package/dist/cli-tui/instruction-panel.d.ts +0 -11
- package/dist/cli-tui/instruction-panel.d.ts.map +0 -1
- package/dist/cli-tui/instruction-panel.js +0 -86
- package/dist/cli-tui/instruction-panel.js.map +0 -1
- package/dist/cli-tui/interrupt-controller.d.ts +0 -78
- package/dist/cli-tui/interrupt-controller.d.ts.map +0 -1
- package/dist/cli-tui/interrupt-controller.js +0 -104
- package/dist/cli-tui/interrupt-controller.js.map +0 -1
- package/dist/cli-tui/keybindings-config.d.ts +0 -27
- package/dist/cli-tui/keybindings-config.d.ts.map +0 -1
- package/dist/cli-tui/keybindings-config.js +0 -372
- package/dist/cli-tui/keybindings-config.js.map +0 -1
- package/dist/cli-tui/keybindings-watcher.d.ts +0 -8
- package/dist/cli-tui/keybindings-watcher.d.ts.map +0 -1
- package/dist/cli-tui/keybindings-watcher.js +0 -56
- package/dist/cli-tui/keybindings-watcher.js.map +0 -1
- package/dist/cli-tui/keybindings.d.ts +0 -13
- package/dist/cli-tui/keybindings.d.ts.map +0 -1
- package/dist/cli-tui/keybindings.js +0 -223
- package/dist/cli-tui/keybindings.js.map +0 -1
- package/dist/cli-tui/loader/loader-stage-manager.d.ts +0 -43
- package/dist/cli-tui/loader/loader-stage-manager.d.ts.map +0 -1
- package/dist/cli-tui/loader/loader-stage-manager.js +0 -241
- package/dist/cli-tui/loader/loader-stage-manager.js.map +0 -1
- package/dist/cli-tui/loader/loader-stage-telemetry.d.ts +0 -14
- package/dist/cli-tui/loader/loader-stage-telemetry.d.ts.map +0 -1
- package/dist/cli-tui/loader/loader-stage-telemetry.js +0 -34
- package/dist/cli-tui/loader/loader-stage-telemetry.js.map +0 -1
- package/dist/cli-tui/loader/loader-view.d.ts +0 -41
- package/dist/cli-tui/loader/loader-view.d.ts.map +0 -1
- package/dist/cli-tui/loader/loader-view.js +0 -162
- package/dist/cli-tui/loader/loader-view.js.map +0 -1
- package/dist/cli-tui/lsp-view.d.ts +0 -21
- package/dist/cli-tui/lsp-view.d.ts.map +0 -1
- package/dist/cli-tui/lsp-view.js +0 -183
- package/dist/cli-tui/lsp-view.js.map +0 -1
- package/dist/cli-tui/mermaid-renderer.d.ts +0 -2
- package/dist/cli-tui/mermaid-renderer.d.ts.map +0 -1
- package/dist/cli-tui/mermaid-renderer.js +0 -391
- package/dist/cli-tui/mermaid-renderer.js.map +0 -1
- package/dist/cli-tui/message-view.d.ts +0 -27
- package/dist/cli-tui/message-view.d.ts.map +0 -1
- package/dist/cli-tui/message-view.js +0 -169
- package/dist/cli-tui/message-view.js.map +0 -1
- package/dist/cli-tui/modal-manager.d.ts +0 -77
- package/dist/cli-tui/modal-manager.d.ts.map +0 -1
- package/dist/cli-tui/modal-manager.js +0 -131
- package/dist/cli-tui/modal-manager.js.map +0 -1
- package/dist/cli-tui/notification-view.d.ts +0 -16
- package/dist/cli-tui/notification-view.d.ts.map +0 -1
- package/dist/cli-tui/notification-view.js +0 -53
- package/dist/cli-tui/notification-view.js.map +0 -1
- package/dist/cli-tui/oauth/index.d.ts +0 -2
- package/dist/cli-tui/oauth/index.d.ts.map +0 -1
- package/dist/cli-tui/oauth/index.js +0 -2
- package/dist/cli-tui/oauth/index.js.map +0 -1
- package/dist/cli-tui/oauth/oauth-flow-controller.d.ts +0 -65
- package/dist/cli-tui/oauth/oauth-flow-controller.d.ts.map +0 -1
- package/dist/cli-tui/oauth/oauth-flow-controller.js +0 -400
- package/dist/cli-tui/oauth/oauth-flow-controller.js.map +0 -1
- package/dist/cli-tui/ollama-view.d.ts +0 -38
- package/dist/cli-tui/ollama-view.d.ts.map +0 -1
- package/dist/cli-tui/ollama-view.js +0 -395
- package/dist/cli-tui/ollama-view.js.map +0 -1
- package/dist/cli-tui/paste/index.d.ts +0 -2
- package/dist/cli-tui/paste/index.d.ts.map +0 -1
- package/dist/cli-tui/paste/index.js +0 -2
- package/dist/cli-tui/paste/index.js.map +0 -1
- package/dist/cli-tui/paste/paste-handler.d.ts +0 -54
- package/dist/cli-tui/paste/paste-handler.d.ts.map +0 -1
- package/dist/cli-tui/paste/paste-handler.js +0 -128
- package/dist/cli-tui/paste/paste-handler.js.map +0 -1
- package/dist/cli-tui/plan/plan-controller.d.ts +0 -28
- package/dist/cli-tui/plan/plan-controller.d.ts.map +0 -1
- package/dist/cli-tui/plan/plan-controller.js +0 -66
- package/dist/cli-tui/plan/plan-controller.js.map +0 -1
- package/dist/cli-tui/plan-panel-modal.d.ts +0 -28
- package/dist/cli-tui/plan-panel-modal.d.ts.map +0 -1
- package/dist/cli-tui/plan-panel-modal.js +0 -193
- package/dist/cli-tui/plan-panel-modal.js.map +0 -1
- package/dist/cli-tui/plan-view.d.ts +0 -57
- package/dist/cli-tui/plan-view.d.ts.map +0 -1
- package/dist/cli-tui/plan-view.js +0 -404
- package/dist/cli-tui/plan-view.js.map +0 -1
- package/dist/cli-tui/prompt-queue.d.ts.map +0 -1
- package/dist/cli-tui/prompt-queue.js.map +0 -1
- package/dist/cli-tui/queue/follow-up-shortcut.d.ts +0 -6
- package/dist/cli-tui/queue/follow-up-shortcut.d.ts.map +0 -1
- package/dist/cli-tui/queue/follow-up-shortcut.js +0 -12
- package/dist/cli-tui/queue/follow-up-shortcut.js.map +0 -1
- package/dist/cli-tui/queue/index.d.ts +0 -3
- package/dist/cli-tui/queue/index.d.ts.map +0 -1
- package/dist/cli-tui/queue/index.js +0 -3
- package/dist/cli-tui/queue/index.js.map +0 -1
- package/dist/cli-tui/queue/queue-controller.d.ts +0 -109
- package/dist/cli-tui/queue/queue-controller.d.ts.map +0 -1
- package/dist/cli-tui/queue/queue-controller.js +0 -327
- package/dist/cli-tui/queue/queue-controller.js.map +0 -1
- package/dist/cli-tui/queue/queue-panel-controller.d.ts +0 -34
- package/dist/cli-tui/queue/queue-panel-controller.d.ts.map +0 -1
- package/dist/cli-tui/queue/queue-panel-controller.js +0 -163
- package/dist/cli-tui/queue/queue-panel-controller.js.map +0 -1
- package/dist/cli-tui/queue/queued-follow-up-edit-binding.d.ts +0 -7
- package/dist/cli-tui/queue/queued-follow-up-edit-binding.d.ts.map +0 -1
- package/dist/cli-tui/queue/queued-follow-up-edit-binding.js +0 -14
- package/dist/cli-tui/queue/queued-follow-up-edit-binding.js.map +0 -1
- package/dist/cli-tui/queue-panel-modal.d.ts +0 -26
- package/dist/cli-tui/queue-panel-modal.d.ts.map +0 -1
- package/dist/cli-tui/queue-panel-modal.js +0 -159
- package/dist/cli-tui/queue-panel-modal.js.map +0 -1
- package/dist/cli-tui/run/run-command-view.d.ts +0 -17
- package/dist/cli-tui/run/run-command-view.d.ts.map +0 -1
- package/dist/cli-tui/run/run-command-view.js +0 -62
- package/dist/cli-tui/run/run-command-view.js.map +0 -1
- package/dist/cli-tui/run/run-controller.d.ts +0 -24
- package/dist/cli-tui/run/run-controller.d.ts.map +0 -1
- package/dist/cli-tui/run/run-controller.js +0 -38
- package/dist/cli-tui/run/run-controller.js.map +0 -1
- package/dist/cli-tui/run/run-shell-command.d.ts +0 -13
- package/dist/cli-tui/run/run-shell-command.d.ts.map +0 -1
- package/dist/cli-tui/run/run-shell-command.js +0 -51
- package/dist/cli-tui/run/run-shell-command.js.map +0 -1
- package/dist/cli-tui/run/streaming-shell-command.d.ts +0 -19
- package/dist/cli-tui/run/streaming-shell-command.d.ts.map +0 -1
- package/dist/cli-tui/run/streaming-shell-command.js +0 -107
- package/dist/cli-tui/run/streaming-shell-command.js.map +0 -1
- package/dist/cli-tui/search/file-search-view.d.ts +0 -22
- package/dist/cli-tui/search/file-search-view.d.ts.map +0 -1
- package/dist/cli-tui/search/file-search-view.js +0 -68
- package/dist/cli-tui/search/file-search-view.js.map +0 -1
- package/dist/cli-tui/search/file-search.d.ts +0 -13
- package/dist/cli-tui/search/file-search.d.ts.map +0 -1
- package/dist/cli-tui/search/file-search.js +0 -52
- package/dist/cli-tui/search/file-search.js.map +0 -1
- package/dist/cli-tui/security-status.d.ts +0 -83
- package/dist/cli-tui/security-status.d.ts.map +0 -1
- package/dist/cli-tui/security-status.js +0 -214
- package/dist/cli-tui/security-status.js.map +0 -1
- package/dist/cli-tui/selectors/base-selector.d.ts +0 -27
- package/dist/cli-tui/selectors/base-selector.d.ts.map +0 -1
- package/dist/cli-tui/selectors/base-selector.js +0 -47
- package/dist/cli-tui/selectors/base-selector.js.map +0 -1
- package/dist/cli-tui/selectors/branch-summary-modal.d.ts +0 -18
- package/dist/cli-tui/selectors/branch-summary-modal.d.ts.map +0 -1
- package/dist/cli-tui/selectors/branch-summary-modal.js +0 -24
- package/dist/cli-tui/selectors/branch-summary-modal.js.map +0 -1
- package/dist/cli-tui/selectors/model-selector-view.d.ts +0 -22
- package/dist/cli-tui/selectors/model-selector-view.d.ts.map +0 -1
- package/dist/cli-tui/selectors/model-selector-view.js +0 -31
- package/dist/cli-tui/selectors/model-selector-view.js.map +0 -1
- package/dist/cli-tui/selectors/model-selector.d.ts +0 -30
- package/dist/cli-tui/selectors/model-selector.d.ts.map +0 -1
- package/dist/cli-tui/selectors/model-selector.js +0 -218
- package/dist/cli-tui/selectors/model-selector.js.map +0 -1
- package/dist/cli-tui/selectors/oauth-selector-view.d.ts +0 -20
- package/dist/cli-tui/selectors/oauth-selector-view.d.ts.map +0 -1
- package/dist/cli-tui/selectors/oauth-selector-view.js +0 -28
- package/dist/cli-tui/selectors/oauth-selector-view.js.map +0 -1
- package/dist/cli-tui/selectors/oauth-selector.d.ts +0 -19
- package/dist/cli-tui/selectors/oauth-selector.d.ts.map +0 -1
- package/dist/cli-tui/selectors/oauth-selector.js +0 -120
- package/dist/cli-tui/selectors/oauth-selector.js.map +0 -1
- package/dist/cli-tui/selectors/queue-mode-selector-view.d.ts +0 -19
- package/dist/cli-tui/selectors/queue-mode-selector-view.d.ts.map +0 -1
- package/dist/cli-tui/selectors/queue-mode-selector-view.js +0 -29
- package/dist/cli-tui/selectors/queue-mode-selector-view.js.map +0 -1
- package/dist/cli-tui/selectors/queue-mode-selector.d.ts +0 -5
- package/dist/cli-tui/selectors/queue-mode-selector.d.ts.map +0 -1
- package/dist/cli-tui/selectors/queue-mode-selector.js +0 -34
- package/dist/cli-tui/selectors/queue-mode-selector.js.map +0 -1
- package/dist/cli-tui/selectors/report-selector-view.d.ts +0 -17
- package/dist/cli-tui/selectors/report-selector-view.d.ts.map +0 -1
- package/dist/cli-tui/selectors/report-selector-view.js +0 -29
- package/dist/cli-tui/selectors/report-selector-view.js.map +0 -1
- package/dist/cli-tui/selectors/report-selector.d.ts +0 -7
- package/dist/cli-tui/selectors/report-selector.d.ts.map +0 -1
- package/dist/cli-tui/selectors/report-selector.js +0 -31
- package/dist/cli-tui/selectors/report-selector.js.map +0 -1
- package/dist/cli-tui/selectors/theme-selector-view.d.ts +0 -19
- package/dist/cli-tui/selectors/theme-selector-view.d.ts.map +0 -1
- package/dist/cli-tui/selectors/theme-selector-view.js +0 -41
- package/dist/cli-tui/selectors/theme-selector-view.js.map +0 -1
- package/dist/cli-tui/selectors/theme-selector.d.ts +0 -14
- package/dist/cli-tui/selectors/theme-selector.d.ts.map +0 -1
- package/dist/cli-tui/selectors/theme-selector.js +0 -46
- package/dist/cli-tui/selectors/theme-selector.js.map +0 -1
- package/dist/cli-tui/selectors/thinking-selector-view.d.ts +0 -20
- package/dist/cli-tui/selectors/thinking-selector-view.d.ts.map +0 -1
- package/dist/cli-tui/selectors/thinking-selector-view.js +0 -31
- package/dist/cli-tui/selectors/thinking-selector-view.js.map +0 -1
- package/dist/cli-tui/selectors/thinking-selector.d.ts +0 -9
- package/dist/cli-tui/selectors/thinking-selector.d.ts.map +0 -1
- package/dist/cli-tui/selectors/thinking-selector.js +0 -47
- package/dist/cli-tui/selectors/thinking-selector.js.map +0 -1
- package/dist/cli-tui/selectors/tree-selector-view.d.ts +0 -32
- package/dist/cli-tui/selectors/tree-selector-view.d.ts.map +0 -1
- package/dist/cli-tui/selectors/tree-selector-view.js +0 -407
- package/dist/cli-tui/selectors/tree-selector-view.js.map +0 -1
- package/dist/cli-tui/selectors/tree-selector.d.ts +0 -27
- package/dist/cli-tui/selectors/tree-selector.d.ts.map +0 -1
- package/dist/cli-tui/selectors/tree-selector.js +0 -194
- package/dist/cli-tui/selectors/tree-selector.js.map +0 -1
- package/dist/cli-tui/selectors/user-message-selector-view.d.ts +0 -25
- package/dist/cli-tui/selectors/user-message-selector-view.d.ts.map +0 -1
- package/dist/cli-tui/selectors/user-message-selector-view.js +0 -101
- package/dist/cli-tui/selectors/user-message-selector-view.js.map +0 -1
- package/dist/cli-tui/selectors/user-message-selector.d.ts +0 -30
- package/dist/cli-tui/selectors/user-message-selector.d.ts.map +0 -1
- package/dist/cli-tui/selectors/user-message-selector.js +0 -114
- package/dist/cli-tui/selectors/user-message-selector.js.map +0 -1
- package/dist/cli-tui/session/branch-controller.d.ts +0 -65
- package/dist/cli-tui/session/branch-controller.d.ts.map +0 -1
- package/dist/cli-tui/session/branch-controller.js +0 -125
- package/dist/cli-tui/session/branch-controller.js.map +0 -1
- package/dist/cli-tui/session/conversation-compactor.d.ts +0 -64
- package/dist/cli-tui/session/conversation-compactor.d.ts.map +0 -1
- package/dist/cli-tui/session/conversation-compactor.js +0 -77
- package/dist/cli-tui/session/conversation-compactor.js.map +0 -1
- package/dist/cli-tui/session/session-context.d.ts +0 -59
- package/dist/cli-tui/session/session-context.d.ts.map +0 -1
- package/dist/cli-tui/session/session-context.js +0 -79
- package/dist/cli-tui/session/session-context.js.map +0 -1
- package/dist/cli-tui/session/session-data-provider.d.ts +0 -23
- package/dist/cli-tui/session/session-data-provider.d.ts.map +0 -1
- package/dist/cli-tui/session/session-data-provider.js +0 -22
- package/dist/cli-tui/session/session-data-provider.js.map +0 -1
- package/dist/cli-tui/session/session-list.d.ts +0 -18
- package/dist/cli-tui/session/session-list.d.ts.map +0 -1
- package/dist/cli-tui/session/session-list.js +0 -103
- package/dist/cli-tui/session/session-list.js.map +0 -1
- package/dist/cli-tui/session/session-selector.d.ts +0 -12
- package/dist/cli-tui/session/session-selector.d.ts.map +0 -1
- package/dist/cli-tui/session/session-selector.js +0 -37
- package/dist/cli-tui/session/session-selector.js.map +0 -1
- package/dist/cli-tui/session/session-summary-controller.d.ts +0 -24
- package/dist/cli-tui/session/session-summary-controller.d.ts.map +0 -1
- package/dist/cli-tui/session/session-summary-controller.js +0 -96
- package/dist/cli-tui/session/session-summary-controller.js.map +0 -1
- package/dist/cli-tui/session/session-switcher-view.d.ts +0 -20
- package/dist/cli-tui/session/session-switcher-view.d.ts.map +0 -1
- package/dist/cli-tui/session/session-switcher-view.js +0 -43
- package/dist/cli-tui/session/session-switcher-view.js.map +0 -1
- package/dist/cli-tui/session/session-switcher.d.ts +0 -38
- package/dist/cli-tui/session/session-switcher.d.ts.map +0 -1
- package/dist/cli-tui/session/session-switcher.js +0 -204
- package/dist/cli-tui/session/session-switcher.js.map +0 -1
- package/dist/cli-tui/session/session-view.d.ts +0 -46
- package/dist/cli-tui/session/session-view.d.ts.map +0 -1
- package/dist/cli-tui/session/session-view.js +0 -311
- package/dist/cli-tui/session/session-view.js.map +0 -1
- package/dist/cli-tui/slash/index.d.ts +0 -2
- package/dist/cli-tui/slash/index.d.ts.map +0 -1
- package/dist/cli-tui/slash/index.js +0 -2
- package/dist/cli-tui/slash/index.js.map +0 -1
- package/dist/cli-tui/slash/slash-command-matcher.d.ts +0 -55
- package/dist/cli-tui/slash/slash-command-matcher.d.ts.map +0 -1
- package/dist/cli-tui/slash/slash-command-matcher.js +0 -113
- package/dist/cli-tui/slash/slash-command-matcher.js.map +0 -1
- package/dist/cli-tui/smart-autocomplete-provider.d.ts +0 -5
- package/dist/cli-tui/smart-autocomplete-provider.d.ts.map +0 -1
- package/dist/cli-tui/smart-autocomplete-provider.js +0 -44
- package/dist/cli-tui/smart-autocomplete-provider.js.map +0 -1
- package/dist/cli-tui/startup-announcements.d.ts +0 -15
- package/dist/cli-tui/startup-announcements.d.ts.map +0 -1
- package/dist/cli-tui/startup-announcements.js +0 -75
- package/dist/cli-tui/startup-announcements.js.map +0 -1
- package/dist/cli-tui/status/cost-view.d.ts +0 -27
- package/dist/cli-tui/status/cost-view.d.ts.map +0 -1
- package/dist/cli-tui/status/cost-view.js +0 -212
- package/dist/cli-tui/status/cost-view.js.map +0 -1
- package/dist/cli-tui/status/diagnostics-templates.d.ts +0 -34
- package/dist/cli-tui/status/diagnostics-templates.d.ts.map +0 -1
- package/dist/cli-tui/status/diagnostics-templates.js +0 -167
- package/dist/cli-tui/status/diagnostics-templates.js.map +0 -1
- package/dist/cli-tui/status/diagnostics-view.d.ts +0 -48
- package/dist/cli-tui/status/diagnostics-view.d.ts.map +0 -1
- package/dist/cli-tui/status/diagnostics-view.js +0 -249
- package/dist/cli-tui/status/diagnostics-view.js.map +0 -1
- package/dist/cli-tui/status/diagnostics.d.ts +0 -39
- package/dist/cli-tui/status/diagnostics.d.ts.map +0 -1
- package/dist/cli-tui/status/diagnostics.js +0 -286
- package/dist/cli-tui/status/diagnostics.js.map +0 -1
- package/dist/cli-tui/status/health-snapshot.d.ts +0 -17
- package/dist/cli-tui/status/health-snapshot.d.ts.map +0 -1
- package/dist/cli-tui/status/health-snapshot.js +0 -28
- package/dist/cli-tui/status/health-snapshot.js.map +0 -1
- package/dist/cli-tui/status/quota-view.d.ts +0 -37
- package/dist/cli-tui/status/quota-view.d.ts.map +0 -1
- package/dist/cli-tui/status/quota-view.js +0 -309
- package/dist/cli-tui/status/quota-view.js.map +0 -1
- package/dist/cli-tui/status/telemetry-view.d.ts +0 -23
- package/dist/cli-tui/status/telemetry-view.d.ts.map +0 -1
- package/dist/cli-tui/status/telemetry-view.js +0 -77
- package/dist/cli-tui/status/telemetry-view.js.map +0 -1
- package/dist/cli-tui/status/training-view.d.ts +0 -23
- package/dist/cli-tui/status/training-view.d.ts.map +0 -1
- package/dist/cli-tui/status/training-view.js +0 -71
- package/dist/cli-tui/status/training-view.js.map +0 -1
- package/dist/cli-tui/streaming-view.d.ts +0 -43
- package/dist/cli-tui/streaming-view.d.ts.map +0 -1
- package/dist/cli-tui/streaming-view.js +0 -176
- package/dist/cli-tui/streaming-view.js.map +0 -1
- package/dist/cli-tui/terminal/index.d.ts +0 -2
- package/dist/cli-tui/terminal/index.d.ts.map +0 -1
- package/dist/cli-tui/terminal/index.js +0 -2
- package/dist/cli-tui/terminal/index.js.map +0 -1
- package/dist/cli-tui/terminal/terminal-utils.d.ts +0 -44
- package/dist/cli-tui/terminal/terminal-utils.d.ts.map +0 -1
- package/dist/cli-tui/terminal/terminal-utils.js +0 -145
- package/dist/cli-tui/terminal/terminal-utils.js.map +0 -1
- package/dist/cli-tui/tips/tip-scheduler.d.ts +0 -19
- package/dist/cli-tui/tips/tip-scheduler.d.ts.map +0 -1
- package/dist/cli-tui/tips/tip-scheduler.js +0 -135
- package/dist/cli-tui/tips/tip-scheduler.js.map +0 -1
- package/dist/cli-tui/tool-execution.d.ts +0 -76
- package/dist/cli-tui/tool-execution.d.ts.map +0 -1
- package/dist/cli-tui/tool-execution.js +0 -217
- package/dist/cli-tui/tool-execution.js.map +0 -1
- package/dist/cli-tui/tool-output-view.d.ts +0 -22
- package/dist/cli-tui/tool-output-view.d.ts.map +0 -1
- package/dist/cli-tui/tool-output-view.js +0 -71
- package/dist/cli-tui/tool-output-view.js.map +0 -1
- package/dist/cli-tui/tool-renderers/index.d.ts +0 -4
- package/dist/cli-tui/tool-renderers/index.d.ts.map +0 -1
- package/dist/cli-tui/tool-renderers/index.js +0 -19
- package/dist/cli-tui/tool-renderers/index.js.map +0 -1
- package/dist/cli-tui/tool-renderers/render-bash.d.ts +0 -6
- package/dist/cli-tui/tool-renderers/render-bash.d.ts.map +0 -1
- package/dist/cli-tui/tool-renderers/render-bash.js +0 -90
- package/dist/cli-tui/tool-renderers/render-bash.js.map +0 -1
- package/dist/cli-tui/tool-renderers/render-batch.d.ts +0 -12
- package/dist/cli-tui/tool-renderers/render-batch.d.ts.map +0 -1
- package/dist/cli-tui/tool-renderers/render-batch.js +0 -133
- package/dist/cli-tui/tool-renderers/render-batch.js.map +0 -1
- package/dist/cli-tui/tool-renderers/render-edit.d.ts +0 -6
- package/dist/cli-tui/tool-renderers/render-edit.d.ts.map +0 -1
- package/dist/cli-tui/tool-renderers/render-edit.js +0 -125
- package/dist/cli-tui/tool-renderers/render-edit.js.map +0 -1
- package/dist/cli-tui/tool-renderers/render-generic.d.ts +0 -6
- package/dist/cli-tui/tool-renderers/render-generic.d.ts.map +0 -1
- package/dist/cli-tui/tool-renderers/render-generic.js +0 -66
- package/dist/cli-tui/tool-renderers/render-generic.js.map +0 -1
- package/dist/cli-tui/tool-renderers/render-read.d.ts +0 -9
- package/dist/cli-tui/tool-renderers/render-read.d.ts.map +0 -1
- package/dist/cli-tui/tool-renderers/render-read.js +0 -108
- package/dist/cli-tui/tool-renderers/render-read.js.map +0 -1
- package/dist/cli-tui/tool-renderers/render-style.d.ts +0 -21
- package/dist/cli-tui/tool-renderers/render-style.d.ts.map +0 -1
- package/dist/cli-tui/tool-renderers/render-style.js +0 -51
- package/dist/cli-tui/tool-renderers/render-style.js.map +0 -1
- package/dist/cli-tui/tool-renderers/render-write.d.ts +0 -5
- package/dist/cli-tui/tool-renderers/render-write.d.ts.map +0 -1
- package/dist/cli-tui/tool-renderers/render-write.js +0 -60
- package/dist/cli-tui/tool-renderers/render-write.js.map +0 -1
- package/dist/cli-tui/tool-renderers/types.d.ts +0 -20
- package/dist/cli-tui/tool-renderers/types.d.ts.map +0 -1
- package/dist/cli-tui/tool-renderers/types.js +0 -2
- package/dist/cli-tui/tool-renderers/types.js.map +0 -1
- package/dist/cli-tui/tool-retry/tool-retry-controller.d.ts +0 -29
- package/dist/cli-tui/tool-retry/tool-retry-controller.d.ts.map +0 -1
- package/dist/cli-tui/tool-retry/tool-retry-controller.js +0 -110
- package/dist/cli-tui/tool-retry/tool-retry-controller.js.map +0 -1
- package/dist/cli-tui/tool-retry/tool-retry-modal.d.ts +0 -27
- package/dist/cli-tui/tool-retry/tool-retry-modal.d.ts.map +0 -1
- package/dist/cli-tui/tool-retry/tool-retry-modal.js +0 -118
- package/dist/cli-tui/tool-retry/tool-retry-modal.js.map +0 -1
- package/dist/cli-tui/tool-status-view.d.ts +0 -32
- package/dist/cli-tui/tool-status-view.d.ts.map +0 -1
- package/dist/cli-tui/tool-status-view.js +0 -86
- package/dist/cli-tui/tool-status-view.js.map +0 -1
- package/dist/cli-tui/tui-renderer/agent-event-bridge.d.ts +0 -59
- package/dist/cli-tui/tui-renderer/agent-event-bridge.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/agent-event-bridge.js +0 -129
- package/dist/cli-tui/tui-renderer/agent-event-bridge.js.map +0 -1
- package/dist/cli-tui/tui-renderer/approval-setup.d.ts +0 -13
- package/dist/cli-tui/tui-renderer/approval-setup.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/approval-setup.js +0 -5
- package/dist/cli-tui/tui-renderer/approval-setup.js.map +0 -1
- package/dist/cli-tui/tui-renderer/attachment-controller.d.ts +0 -54
- package/dist/cli-tui/tui-renderer/attachment-controller.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/attachment-controller.js +0 -160
- package/dist/cli-tui/tui-renderer/attachment-controller.js.map +0 -1
- package/dist/cli-tui/tui-renderer/background-tasks-setup.d.ts +0 -9
- package/dist/cli-tui/tui-renderer/background-tasks-setup.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/background-tasks-setup.js +0 -7
- package/dist/cli-tui/tui-renderer/background-tasks-setup.js.map +0 -1
- package/dist/cli-tui/tui-renderer/branch-controller.d.ts +0 -41
- package/dist/cli-tui/tui-renderer/branch-controller.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/branch-controller.js +0 -102
- package/dist/cli-tui/tui-renderer/branch-controller.js.map +0 -1
- package/dist/cli-tui/tui-renderer/clear-controller.d.ts +0 -75
- package/dist/cli-tui/tui-renderer/clear-controller.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/clear-controller.js +0 -75
- package/dist/cli-tui/tui-renderer/clear-controller.js.map +0 -1
- package/dist/cli-tui/tui-renderer/client-tools-setup.d.ts +0 -14
- package/dist/cli-tui/tui-renderer/client-tools-setup.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/client-tools-setup.js +0 -5
- package/dist/cli-tui/tui-renderer/client-tools-setup.js.map +0 -1
- package/dist/cli-tui/tui-renderer/command-registry-options.d.ts +0 -111
- package/dist/cli-tui/tui-renderer/command-registry-options.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/command-registry-options.js +0 -163
- package/dist/cli-tui/tui-renderer/command-registry-options.js.map +0 -1
- package/dist/cli-tui/tui-renderer/command-registry.d.ts +0 -16
- package/dist/cli-tui/tui-renderer/command-registry.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/command-registry.js +0 -23
- package/dist/cli-tui/tui-renderer/command-registry.js.map +0 -1
- package/dist/cli-tui/tui-renderer/command-suite-wiring.d.ts +0 -29
- package/dist/cli-tui/tui-renderer/command-suite-wiring.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/command-suite-wiring.js +0 -108
- package/dist/cli-tui/tui-renderer/command-suite-wiring.js.map +0 -1
- package/dist/cli-tui/tui-renderer/compaction-controller.d.ts +0 -100
- package/dist/cli-tui/tui-renderer/compaction-controller.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/compaction-controller.js +0 -160
- package/dist/cli-tui/tui-renderer/compaction-controller.js.map +0 -1
- package/dist/cli-tui/tui-renderer/custom-commands-controller.d.ts +0 -42
- package/dist/cli-tui/tui-renderer/custom-commands-controller.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/custom-commands-controller.js +0 -106
- package/dist/cli-tui/tui-renderer/custom-commands-controller.js.map +0 -1
- package/dist/cli-tui/tui-renderer/delegating-command-handlers.d.ts +0 -37
- package/dist/cli-tui/tui-renderer/delegating-command-handlers.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/delegating-command-handlers.js +0 -139
- package/dist/cli-tui/tui-renderer/delegating-command-handlers.js.map +0 -1
- package/dist/cli-tui/tui-renderer/editor-bindings.d.ts +0 -21
- package/dist/cli-tui/tui-renderer/editor-bindings.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/editor-bindings.js +0 -76
- package/dist/cli-tui/tui-renderer/editor-bindings.js.map +0 -1
- package/dist/cli-tui/tui-renderer/footer-hints-controller.d.ts +0 -90
- package/dist/cli-tui/tui-renderer/footer-hints-controller.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/footer-hints-controller.js +0 -152
- package/dist/cli-tui/tui-renderer/footer-hints-controller.js.map +0 -1
- package/dist/cli-tui/tui-renderer/history-controller.d.ts +0 -35
- package/dist/cli-tui/tui-renderer/history-controller.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/history-controller.js +0 -153
- package/dist/cli-tui/tui-renderer/history-controller.js.map +0 -1
- package/dist/cli-tui/tui-renderer/hook-ui-controller.d.ts +0 -83
- package/dist/cli-tui/tui-renderer/hook-ui-controller.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/hook-ui-controller.js +0 -309
- package/dist/cli-tui/tui-renderer/hook-ui-controller.js.map +0 -1
- package/dist/cli-tui/tui-renderer/initial-preferences.d.ts +0 -19
- package/dist/cli-tui/tui-renderer/initial-preferences.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/initial-preferences.js +0 -54
- package/dist/cli-tui/tui-renderer/initial-preferences.js.map +0 -1
- package/dist/cli-tui/tui-renderer/input-controller.d.ts +0 -56
- package/dist/cli-tui/tui-renderer/input-controller.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/input-controller.js +0 -104
- package/dist/cli-tui/tui-renderer/input-controller.js.map +0 -1
- package/dist/cli-tui/tui-renderer/interrupt-setup.d.ts +0 -19
- package/dist/cli-tui/tui-renderer/interrupt-setup.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/interrupt-setup.js +0 -18
- package/dist/cli-tui/tui-renderer/interrupt-setup.js.map +0 -1
- package/dist/cli-tui/tui-renderer/loader-setup.d.ts +0 -14
- package/dist/cli-tui/tui-renderer/loader-setup.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/loader-setup.js +0 -13
- package/dist/cli-tui/tui-renderer/loader-setup.js.map +0 -1
- package/dist/cli-tui/tui-renderer/mcp-events-setup.d.ts +0 -55
- package/dist/cli-tui/tui-renderer/mcp-events-setup.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/mcp-events-setup.js +0 -143
- package/dist/cli-tui/tui-renderer/mcp-events-setup.js.map +0 -1
- package/dist/cli-tui/tui-renderer/misc-handlers.d.ts +0 -59
- package/dist/cli-tui/tui-renderer/misc-handlers.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/misc-handlers.js +0 -143
- package/dist/cli-tui/tui-renderer/misc-handlers.js.map +0 -1
- package/dist/cli-tui/tui-renderer/oauth-setup.d.ts +0 -14
- package/dist/cli-tui/tui-renderer/oauth-setup.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/oauth-setup.js +0 -26
- package/dist/cli-tui/tui-renderer/oauth-setup.js.map +0 -1
- package/dist/cli-tui/tui-renderer/plan-setup.d.ts +0 -19
- package/dist/cli-tui/tui-renderer/plan-setup.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/plan-setup.js +0 -23
- package/dist/cli-tui/tui-renderer/plan-setup.js.map +0 -1
- package/dist/cli-tui/tui-renderer/prompt-template-slash-commands.d.ts +0 -21
- package/dist/cli-tui/tui-renderer/prompt-template-slash-commands.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/prompt-template-slash-commands.js +0 -64
- package/dist/cli-tui/tui-renderer/prompt-template-slash-commands.js.map +0 -1
- package/dist/cli-tui/tui-renderer/queue-setup.d.ts +0 -18
- package/dist/cli-tui/tui-renderer/queue-setup.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/queue-setup.js +0 -42
- package/dist/cli-tui/tui-renderer/queue-setup.js.map +0 -1
- package/dist/cli-tui/tui-renderer/quick-settings-controller.d.ts +0 -53
- package/dist/cli-tui/tui-renderer/quick-settings-controller.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/quick-settings-controller.js +0 -100
- package/dist/cli-tui/tui-renderer/quick-settings-controller.js.map +0 -1
- package/dist/cli-tui/tui-renderer/session-setup.d.ts +0 -31
- package/dist/cli-tui/tui-renderer/session-setup.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/session-setup.js +0 -45
- package/dist/cli-tui/tui-renderer/session-setup.js.map +0 -1
- package/dist/cli-tui/tui-renderer/session-state-controller.d.ts +0 -66
- package/dist/cli-tui/tui-renderer/session-state-controller.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/session-state-controller.js +0 -139
- package/dist/cli-tui/tui-renderer/session-state-controller.js.map +0 -1
- package/dist/cli-tui/tui-renderer/skills-controller.d.ts +0 -70
- package/dist/cli-tui/tui-renderer/skills-controller.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/skills-controller.js +0 -411
- package/dist/cli-tui/tui-renderer/skills-controller.js.map +0 -1
- package/dist/cli-tui/tui-renderer/slash-hint-controller.d.ts +0 -90
- package/dist/cli-tui/tui-renderer/slash-hint-controller.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/slash-hint-controller.js +0 -131
- package/dist/cli-tui/tui-renderer/slash-hint-controller.js.map +0 -1
- package/dist/cli-tui/tui-renderer/tool-retry-setup.d.ts +0 -13
- package/dist/cli-tui/tui-renderer/tool-retry-setup.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/tool-retry-setup.js +0 -5
- package/dist/cli-tui/tui-renderer/tool-retry-setup.js.map +0 -1
- package/dist/cli-tui/tui-renderer/tooling-views-setup.d.ts +0 -38
- package/dist/cli-tui/tui-renderer/tooling-views-setup.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/tooling-views-setup.js +0 -48
- package/dist/cli-tui/tui-renderer/tooling-views-setup.js.map +0 -1
- package/dist/cli-tui/tui-renderer/ui-state-controller.d.ts +0 -70
- package/dist/cli-tui/tui-renderer/ui-state-controller.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/ui-state-controller.js +0 -184
- package/dist/cli-tui/tui-renderer/ui-state-controller.js.map +0 -1
- package/dist/cli-tui/tui-renderer/ui-state-setup.d.ts +0 -13
- package/dist/cli-tui/tui-renderer/ui-state-setup.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/ui-state-setup.js +0 -11
- package/dist/cli-tui/tui-renderer/ui-state-setup.js.map +0 -1
- package/dist/cli-tui/tui-renderer/utility-views-setup.d.ts +0 -26
- package/dist/cli-tui/tui-renderer/utility-views-setup.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/utility-views-setup.js +0 -23
- package/dist/cli-tui/tui-renderer/utility-views-setup.js.map +0 -1
- package/dist/cli-tui/tui-renderer/viewport-controller.d.ts +0 -33
- package/dist/cli-tui/tui-renderer/viewport-controller.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/viewport-controller.js +0 -98
- package/dist/cli-tui/tui-renderer/viewport-controller.js.map +0 -1
- package/dist/cli-tui/tui-renderer.d.ts +0 -268
- package/dist/cli-tui/tui-renderer.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer.js +0 -2131
- package/dist/cli-tui/tui-renderer.js.map +0 -1
- package/dist/cli-tui/ui-state.d.ts +0 -27
- package/dist/cli-tui/ui-state.d.ts.map +0 -1
- package/dist/cli-tui/ui-state.js +0 -88
- package/dist/cli-tui/ui-state.js.map +0 -1
- package/dist/cli-tui/update-view.d.ts +0 -16
- package/dist/cli-tui/update-view.d.ts.map +0 -1
- package/dist/cli-tui/update-view.js +0 -45
- package/dist/cli-tui/update-view.js.map +0 -1
- package/dist/cli-tui/user-message.d.ts +0 -17
- package/dist/cli-tui/user-message.d.ts.map +0 -1
- package/dist/cli-tui/user-message.js +0 -83
- package/dist/cli-tui/user-message.js.map +0 -1
- package/dist/cli-tui/utils/borders.d.ts +0 -131
- package/dist/cli-tui/utils/borders.d.ts.map +0 -1
- package/dist/cli-tui/utils/borders.js +0 -254
- package/dist/cli-tui/utils/borders.js.map +0 -1
- package/dist/cli-tui/utils/commands/command-palette-view.d.ts +0 -22
- package/dist/cli-tui/utils/commands/command-palette-view.d.ts.map +0 -1
- package/dist/cli-tui/utils/commands/command-palette-view.js +0 -31
- package/dist/cli-tui/utils/commands/command-palette-view.js.map +0 -1
- package/dist/cli-tui/utils/commands/command-palette.d.ts +0 -29
- package/dist/cli-tui/utils/commands/command-palette.d.ts.map +0 -1
- package/dist/cli-tui/utils/commands/command-palette.js +0 -213
- package/dist/cli-tui/utils/commands/command-palette.js.map +0 -1
- package/dist/cli-tui/utils/commands/command-registry-builder.d.ts +0 -8
- package/dist/cli-tui/utils/commands/command-registry-builder.d.ts.map +0 -1
- package/dist/cli-tui/utils/commands/command-registry-builder.js +0 -9
- package/dist/cli-tui/utils/commands/command-registry-builder.js.map +0 -1
- package/dist/cli-tui/utils/commands/review-prompt.d.ts +0 -10
- package/dist/cli-tui/utils/commands/review-prompt.d.ts.map +0 -1
- package/dist/cli-tui/utils/commands/review-prompt.js +0 -90
- package/dist/cli-tui/utils/commands/review-prompt.js.map +0 -1
- package/dist/cli-tui/utils/commands/slash-hint-bar.d.ts +0 -15
- package/dist/cli-tui/utils/commands/slash-hint-bar.d.ts.map +0 -1
- package/dist/cli-tui/utils/commands/slash-hint-bar.js +0 -106
- package/dist/cli-tui/utils/commands/slash-hint-bar.js.map +0 -1
- package/dist/cli-tui/utils/env-detect.d.ts +0 -11
- package/dist/cli-tui/utils/env-detect.d.ts.map +0 -1
- package/dist/cli-tui/utils/env-detect.js +0 -107
- package/dist/cli-tui/utils/env-detect.js.map +0 -1
- package/dist/cli-tui/utils/external-editor.d.ts +0 -7
- package/dist/cli-tui/utils/external-editor.d.ts.map +0 -1
- package/dist/cli-tui/utils/external-editor.js +0 -53
- package/dist/cli-tui/utils/external-editor.js.map +0 -1
- package/dist/cli-tui/utils/footer-utils.d.ts +0 -169
- package/dist/cli-tui/utils/footer-utils.d.ts.map +0 -1
- package/dist/cli-tui/utils/footer-utils.js +0 -716
- package/dist/cli-tui/utils/footer-utils.js.map +0 -1
- package/dist/cli-tui/utils/footer-visual-widgets.d.ts +0 -38
- package/dist/cli-tui/utils/footer-visual-widgets.d.ts.map +0 -1
- package/dist/cli-tui/utils/footer-visual-widgets.js +0 -141
- package/dist/cli-tui/utils/footer-visual-widgets.js.map +0 -1
- package/dist/cli-tui/utils/git-branch-tracker.d.ts +0 -38
- package/dist/cli-tui/utils/git-branch-tracker.d.ts.map +0 -1
- package/dist/cli-tui/utils/git-branch-tracker.js +0 -90
- package/dist/cli-tui/utils/git-branch-tracker.js.map +0 -1
- package/dist/cli-tui/utils/glyphs.d.ts +0 -207
- package/dist/cli-tui/utils/glyphs.d.ts.map +0 -1
- package/dist/cli-tui/utils/glyphs.js +0 -249
- package/dist/cli-tui/utils/glyphs.js.map +0 -1
- package/dist/cli-tui/utils/layout.d.ts +0 -77
- package/dist/cli-tui/utils/layout.d.ts.map +0 -1
- package/dist/cli-tui/utils/layout.js +0 -83
- package/dist/cli-tui/utils/layout.js.map +0 -1
- package/dist/cli-tui/utils/links.d.ts +0 -2
- package/dist/cli-tui/utils/links.d.ts.map +0 -1
- package/dist/cli-tui/utils/links.js +0 -14
- package/dist/cli-tui/utils/links.js.map +0 -1
- package/dist/cli-tui/utils/motion.d.ts +0 -4
- package/dist/cli-tui/utils/motion.d.ts.map +0 -1
- package/dist/cli-tui/utils/motion.js +0 -28
- package/dist/cli-tui/utils/motion.js.map +0 -1
- package/dist/cli-tui/utils/runtime-badges.d.ts +0 -26
- package/dist/cli-tui/utils/runtime-badges.d.ts.map +0 -1
- package/dist/cli-tui/utils/runtime-badges.js +0 -178
- package/dist/cli-tui/utils/runtime-badges.js.map +0 -1
- package/dist/cli-tui/utils/shimmer.d.ts +0 -12
- package/dist/cli-tui/utils/shimmer.d.ts.map +0 -1
- package/dist/cli-tui/utils/shimmer.js +0 -57
- package/dist/cli-tui/utils/shimmer.js.map +0 -1
- package/dist/cli-tui/utils/stage-labels.d.ts +0 -9
- package/dist/cli-tui/utils/stage-labels.d.ts.map +0 -1
- package/dist/cli-tui/utils/stage-labels.js +0 -65
- package/dist/cli-tui/utils/stage-labels.js.map +0 -1
- package/dist/cli-tui/utils/text-formatting.d.ts +0 -13
- package/dist/cli-tui/utils/text-formatting.d.ts.map +0 -1
- package/dist/cli-tui/utils/text-formatting.js +0 -109
- package/dist/cli-tui/utils/text-formatting.js.map +0 -1
- package/dist/cli-tui/utils/text-preview.d.ts +0 -10
- package/dist/cli-tui/utils/text-preview.d.ts.map +0 -1
- package/dist/cli-tui/utils/text-preview.js +0 -26
- package/dist/cli-tui/utils/text-preview.js.map +0 -1
- package/dist/cli-tui/utils/tool-text-utils.d.ts +0 -42
- package/dist/cli-tui/utils/tool-text-utils.d.ts.map +0 -1
- package/dist/cli-tui/utils/tool-text-utils.js +0 -361
- package/dist/cli-tui/utils/tool-text-utils.js.map +0 -1
- package/dist/cli-tui/welcome-animation.d.ts +0 -24
- package/dist/cli-tui/welcome-animation.d.ts.map +0 -1
- package/dist/cli-tui/welcome-animation.js +0 -99
- package/dist/cli-tui/welcome-animation.js.map +0 -1
- package/dist/cli-tui/welcome-colors.d.ts +0 -3
- package/dist/cli-tui/welcome-colors.d.ts.map +0 -1
- package/dist/cli-tui/welcome-colors.js +0 -39
- package/dist/cli-tui/welcome-colors.js.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/autocomplete.d.ts +0 -304
- package/dist/node_modules/@evalops/tui/dist/autocomplete.d.ts.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/autocomplete.js +0 -712
- package/dist/node_modules/@evalops/tui/dist/autocomplete.js.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/components/editor.d.ts +0 -185
- package/dist/node_modules/@evalops/tui/dist/components/editor.d.ts.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/components/editor.js +0 -1460
- package/dist/node_modules/@evalops/tui/dist/components/editor.js.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/components/input.d.ts +0 -117
- package/dist/node_modules/@evalops/tui/dist/components/input.d.ts.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/components/input.js +0 -391
- package/dist/node_modules/@evalops/tui/dist/components/input.js.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/components/layout.d.ts +0 -256
- package/dist/node_modules/@evalops/tui/dist/components/layout.d.ts.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/components/layout.js +0 -478
- package/dist/node_modules/@evalops/tui/dist/components/layout.js.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/components/loader.d.ts +0 -199
- package/dist/node_modules/@evalops/tui/dist/components/loader.d.ts.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/components/loader.js +0 -374
- package/dist/node_modules/@evalops/tui/dist/components/loader.js.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/components/markdown.d.ts +0 -65
- package/dist/node_modules/@evalops/tui/dist/components/markdown.d.ts.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/components/markdown.js +0 -562
- package/dist/node_modules/@evalops/tui/dist/components/markdown.js.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/components/scroll-container.d.ts +0 -262
- package/dist/node_modules/@evalops/tui/dist/components/scroll-container.d.ts.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/components/scroll-container.js +0 -575
- package/dist/node_modules/@evalops/tui/dist/components/scroll-container.js.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/components/select-list.d.ts +0 -131
- package/dist/node_modules/@evalops/tui/dist/components/select-list.d.ts.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/components/select-list.js +0 -257
- package/dist/node_modules/@evalops/tui/dist/components/select-list.js.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/components/spacer.d.ts +0 -11
- package/dist/node_modules/@evalops/tui/dist/components/spacer.d.ts.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/components/spacer.js +0 -19
- package/dist/node_modules/@evalops/tui/dist/components/spacer.js.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/components/status-bar.d.ts +0 -22
- package/dist/node_modules/@evalops/tui/dist/components/status-bar.d.ts.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/components/status-bar.js +0 -44
- package/dist/node_modules/@evalops/tui/dist/components/status-bar.js.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/components/text.d.ts +0 -26
- package/dist/node_modules/@evalops/tui/dist/components/text.d.ts.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/components/text.js +0 -181
- package/dist/node_modules/@evalops/tui/dist/components/text.js.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/components/truncated-text.d.ts +0 -15
- package/dist/node_modules/@evalops/tui/dist/components/truncated-text.d.ts.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/components/truncated-text.js +0 -84
- package/dist/node_modules/@evalops/tui/dist/components/truncated-text.js.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/index.d.ts +0 -87
- package/dist/node_modules/@evalops/tui/dist/index.d.ts.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/index.js +0 -85
- package/dist/node_modules/@evalops/tui/dist/index.js.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/keymap.d.ts +0 -189
- package/dist/node_modules/@evalops/tui/dist/keymap.d.ts.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/keymap.js +0 -363
- package/dist/node_modules/@evalops/tui/dist/keymap.js.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/mermaid-renderer.d.ts +0 -25
- package/dist/node_modules/@evalops/tui/dist/mermaid-renderer.d.ts.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/mermaid-renderer.js +0 -828
- package/dist/node_modules/@evalops/tui/dist/mermaid-renderer.js.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/style/code-highlighter.d.ts +0 -40
- package/dist/node_modules/@evalops/tui/dist/style/code-highlighter.d.ts.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/style/code-highlighter.js +0 -474
- package/dist/node_modules/@evalops/tui/dist/style/code-highlighter.js.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/terminal.d.ts +0 -201
- package/dist/node_modules/@evalops/tui/dist/terminal.d.ts.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/terminal.js +0 -241
- package/dist/node_modules/@evalops/tui/dist/terminal.js.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/tui.d.ts +0 -263
- package/dist/node_modules/@evalops/tui/dist/tui.d.ts.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/tui.js +0 -694
- package/dist/node_modules/@evalops/tui/dist/tui.js.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/utils/terminal-features.d.ts +0 -14
- package/dist/node_modules/@evalops/tui/dist/utils/terminal-features.d.ts.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/utils/terminal-features.js +0 -44
- package/dist/node_modules/@evalops/tui/dist/utils/terminal-features.js.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/utils.d.ts +0 -32
- package/dist/node_modules/@evalops/tui/dist/utils.d.ts.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/utils.js +0 -556
- package/dist/node_modules/@evalops/tui/dist/utils.js.map +0 -1
- package/dist/node_modules/@evalops/tui/package.json +0 -58
- package/dist/skills/artifact-metadata.d.ts +0 -16
- package/dist/skills/artifact-metadata.d.ts.map +0 -1
- package/dist/skills/artifact-metadata.js +0 -86
- package/dist/skills/artifact-metadata.js.map +0 -1
- package/dist/skills/composer-diagnostics.d.ts +0 -69
- package/dist/skills/composer-diagnostics.d.ts.map +0 -1
- package/dist/skills/composer-diagnostics.js +0 -78
- package/dist/skills/composer-diagnostics.js.map +0 -1
- package/dist/skills/composer.d.ts +0 -19
- package/dist/skills/composer.d.ts.map +0 -1
- package/dist/skills/composer.js +0 -52
- package/dist/skills/composer.js.map +0 -1
- package/dist/skills/eval-harness.d.ts +0 -38
- package/dist/skills/eval-harness.d.ts.map +0 -1
- package/dist/skills/eval-harness.js +0 -112
- package/dist/skills/eval-harness.js.map +0 -1
- package/dist/skills/index.d.ts +0 -40
- package/dist/skills/index.d.ts.map +0 -1
- package/dist/skills/index.js +0 -40
- package/dist/skills/index.js.map +0 -1
- package/dist/skills/linter.d.ts +0 -36
- package/dist/skills/linter.d.ts.map +0 -1
- package/dist/skills/linter.js +0 -399
- package/dist/skills/linter.js.map +0 -1
- package/dist/skills/loader.d.ts +0 -252
- package/dist/skills/loader.d.ts.map +0 -1
- package/dist/skills/loader.js +0 -957
- package/dist/skills/loader.js.map +0 -1
- package/dist/skills/package-contract.d.ts +0 -45
- package/dist/skills/package-contract.d.ts.map +0 -1
- package/dist/skills/package-contract.js +0 -153
- package/dist/skills/package-contract.js.map +0 -1
- package/dist/skills/runtime-activation.d.ts +0 -68
- package/dist/skills/runtime-activation.d.ts.map +0 -1
- package/dist/skills/runtime-activation.js +0 -228
- package/dist/skills/runtime-activation.js.map +0 -1
- package/dist/skills/scaffold-from-template.d.ts +0 -58
- package/dist/skills/scaffold-from-template.d.ts.map +0 -1
- package/dist/skills/scaffold-from-template.js +0 -72
- package/dist/skills/scaffold-from-template.js.map +0 -1
- package/dist/skills/scaffolder.d.ts +0 -65
- package/dist/skills/scaffolder.d.ts.map +0 -1
- package/dist/skills/scaffolder.js +0 -167
- package/dist/skills/scaffolder.js.map +0 -1
- package/dist/skills/service-client.d.ts +0 -56
- package/dist/skills/service-client.d.ts.map +0 -1
- package/dist/skills/service-client.js +0 -266
- package/dist/skills/service-client.js.map +0 -1
- package/dist/skills/skill-templates.d.ts +0 -70
- package/dist/skills/skill-templates.d.ts.map +0 -1
- package/dist/skills/skill-templates.js +0 -154
- package/dist/skills/skill-templates.js.map +0 -1
- package/dist/skills/tool.d.ts +0 -21
- package/dist/skills/tool.d.ts.map +0 -1
- package/dist/skills/tool.js +0 -334
- package/dist/skills/tool.js.map +0 -1
- package/dist/skills/trust-cache.d.ts +0 -58
- package/dist/skills/trust-cache.d.ts.map +0 -1
- package/dist/skills/trust-cache.js +0 -130
- package/dist/skills/trust-cache.js.map +0 -1
- package/dist/skills/types.d.ts +0 -91
- package/dist/skills/types.d.ts.map +0 -1
- package/dist/skills/types.js +0 -8
- package/dist/skills/types.js.map +0 -1
- /package/dist/{cli-tui → runtime}/prompt-queue.d.ts +0 -0
- /package/dist/{cli-tui → runtime}/prompt-queue.js +0 -0
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"client-tools-setup.js","sourceRoot":"","sources":["../../../src/cli-tui/tui-renderer/client-tools-setup.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,oBAAoB,EAAE,MAAM,2CAA2C,CAAC;AAKjF,MAAM,UAAU,0BAA0B,CAAC,MAO1C;IACA,OAAO,IAAI,oBAAoB,CAAC,MAAM,CAAC,CAAC;AACzC,CAAC","sourcesContent":["import type { Container, TUI } from \"@evalops/tui\";\nimport { ClientToolController } from \"../client-tools/client-tool-controller.js\";\nimport type { TuiClientToolService } from \"../client-tools/local-client-tool-service.js\";\nimport type { CustomEditor } from \"../custom-editor.js\";\nimport type { NotificationView } from \"../notification-view.js\";\n\nexport function createClientToolController(params: {\n\tclientToolService: TuiClientToolService;\n\tui: TUI;\n\teditor: CustomEditor;\n\teditorContainer: Container;\n\tnotificationView: NotificationView;\n\tonPendingStatusChange?: (toolCallId: string, status: string | null) => void;\n}): ClientToolController {\n\treturn new ClientToolController(params);\n}\n"]}
|
|
@@ -1,111 +0,0 @@
|
|
|
1
|
-
import { type Container, type SlashCommand, type TUI } from "@evalops/tui";
|
|
2
|
-
import type { ActionApprovalService } from "../../agent/action-approval.js";
|
|
3
|
-
import type { AppMessage } from "../../agent/types.js";
|
|
4
|
-
import type { AboutView } from "../about-view.js";
|
|
5
|
-
import type { BackgroundTasksController } from "../background/background-tasks-controller.js";
|
|
6
|
-
import type { ChangelogView } from "../changelog-view.js";
|
|
7
|
-
import type { CommandExecutionContext, CommandRegistryOptions } from "../commands/types.js";
|
|
8
|
-
import type { ConfigView } from "../config-view.js";
|
|
9
|
-
import type { FeedbackView } from "../feedback-view.js";
|
|
10
|
-
import type { GitView } from "../git/git-view.js";
|
|
11
|
-
import type { HotkeysView } from "../hotkeys-view.js";
|
|
12
|
-
import type { ImportExportView } from "../import-view.js";
|
|
13
|
-
import type { InfoView } from "../info-view.js";
|
|
14
|
-
import type { LspView } from "../lsp-view.js";
|
|
15
|
-
import type { NotificationView } from "../notification-view.js";
|
|
16
|
-
import type { OAuthFlowController } from "../oauth/index.js";
|
|
17
|
-
import type { OllamaView } from "../ollama-view.js";
|
|
18
|
-
import type { PlanController } from "../plan/plan-controller.js";
|
|
19
|
-
import type { QueuePanelController } from "../queue/index.js";
|
|
20
|
-
import type { RunCommandView } from "../run/run-command-view.js";
|
|
21
|
-
import type { FileSearchView } from "../search/file-search-view.js";
|
|
22
|
-
import type { ModelSelectorView } from "../selectors/model-selector-view.js";
|
|
23
|
-
import type { ReportSelectorView } from "../selectors/report-selector-view.js";
|
|
24
|
-
import type { ThemeSelectorView } from "../selectors/theme-selector-view.js";
|
|
25
|
-
import type { ThinkingSelectorView } from "../selectors/thinking-selector-view.js";
|
|
26
|
-
import type { SessionView } from "../session/session-view.js";
|
|
27
|
-
import type { CostView } from "../status/cost-view.js";
|
|
28
|
-
import type { DiagnosticsView } from "../status/diagnostics-view.js";
|
|
29
|
-
import type { QuotaView } from "../status/quota-view.js";
|
|
30
|
-
import type { TelemetryView } from "../status/telemetry-view.js";
|
|
31
|
-
import type { TrainingView } from "../status/training-view.js";
|
|
32
|
-
import type { ToolStatusView } from "../tool-status-view.js";
|
|
33
|
-
import type { UpdateView } from "../update-view.js";
|
|
34
|
-
import type { BranchController } from "./branch-controller.js";
|
|
35
|
-
import type { ClearController } from "./clear-controller.js";
|
|
36
|
-
import { type CommandSuiteRuntimeDeps } from "./command-suite-wiring.js";
|
|
37
|
-
import type { CompactionController } from "./compaction-controller.js";
|
|
38
|
-
import type { CustomCommandsController } from "./custom-commands-controller.js";
|
|
39
|
-
import type { UiStateController } from "./ui-state-controller.js";
|
|
40
|
-
export interface TuiCommandRegistryDeps {
|
|
41
|
-
getRunCommandView: () => RunCommandView;
|
|
42
|
-
getToolStatusView: () => ToolStatusView;
|
|
43
|
-
sessionView: SessionView;
|
|
44
|
-
getClearController: () => ClearController;
|
|
45
|
-
getDiagnosticsView: () => DiagnosticsView;
|
|
46
|
-
planController?: PlanController;
|
|
47
|
-
gitView: GitView;
|
|
48
|
-
backgroundTasksController: BackgroundTasksController;
|
|
49
|
-
compactionController: CompactionController;
|
|
50
|
-
getCustomCommandsController: () => CustomCommandsController;
|
|
51
|
-
getBranchController: () => BranchController;
|
|
52
|
-
oauthFlowController: OAuthFlowController;
|
|
53
|
-
approvalService: ActionApprovalService;
|
|
54
|
-
notificationView: NotificationView;
|
|
55
|
-
chatContainer: Container;
|
|
56
|
-
ui: TUI;
|
|
57
|
-
uiStateController: UiStateController;
|
|
58
|
-
getImportExportView: () => ImportExportView;
|
|
59
|
-
getReportSelectorView: () => ReportSelectorView;
|
|
60
|
-
getFeedbackView: () => FeedbackView;
|
|
61
|
-
getAboutView: () => AboutView;
|
|
62
|
-
getInfoView: () => InfoView;
|
|
63
|
-
getUpdateView: () => UpdateView;
|
|
64
|
-
getChangelogView: () => ChangelogView;
|
|
65
|
-
getHotkeysView: () => HotkeysView;
|
|
66
|
-
getConfigView: () => ConfigView;
|
|
67
|
-
getCostView: () => CostView;
|
|
68
|
-
getQuotaView: () => QuotaView;
|
|
69
|
-
getTelemetryView: () => TelemetryView;
|
|
70
|
-
getTrainingView: () => TrainingView;
|
|
71
|
-
getOllamaView: () => OllamaView;
|
|
72
|
-
getThinkingSelectorView: () => ThinkingSelectorView;
|
|
73
|
-
getModelSelectorView: () => ModelSelectorView;
|
|
74
|
-
getThemeSelectorView: () => ThemeSelectorView;
|
|
75
|
-
getLspView: () => LspView;
|
|
76
|
-
getFileSearchView: () => FileSearchView;
|
|
77
|
-
getQueuePanelController: () => QueuePanelController | null;
|
|
78
|
-
getMessages: () => AppMessage[];
|
|
79
|
-
createCommandContext: (ctx: {
|
|
80
|
-
command: SlashCommand;
|
|
81
|
-
rawInput: string;
|
|
82
|
-
argumentText: string;
|
|
83
|
-
parsedArgs?: Record<string, unknown>;
|
|
84
|
-
}) => CommandExecutionContext;
|
|
85
|
-
handleReviewCommand: (context: CommandExecutionContext) => void;
|
|
86
|
-
handleHistoryCommand: (context: CommandExecutionContext) => void;
|
|
87
|
-
handleToolHistoryCommand: (context: CommandExecutionContext) => void;
|
|
88
|
-
handleSkillsCommand: (context: CommandExecutionContext) => void;
|
|
89
|
-
handleEnhancedUndoCommand: (context: CommandExecutionContext) => void;
|
|
90
|
-
handleFooterCommand: (context: CommandExecutionContext) => void;
|
|
91
|
-
handleCompactToolsCommand: (rawInput: string) => void;
|
|
92
|
-
handleSteerCommand: (context: CommandExecutionContext) => void;
|
|
93
|
-
handleStatsCommand: (context: CommandExecutionContext) => void;
|
|
94
|
-
handleNewChatCommand: (context: CommandExecutionContext) => void | Promise<void>;
|
|
95
|
-
handleTreeCommand: (context: CommandExecutionContext) => void;
|
|
96
|
-
handleMcpCommand: (context: CommandExecutionContext) => void;
|
|
97
|
-
handleComposerCommand: (context: CommandExecutionContext) => void;
|
|
98
|
-
handleContextCommand: (context: CommandExecutionContext) => void;
|
|
99
|
-
handleFrameworkCommand: (context: CommandExecutionContext) => void;
|
|
100
|
-
handleGuardianCommand: (context: CommandExecutionContext) => void;
|
|
101
|
-
handleWorkflowCommand: (context: CommandExecutionContext) => void;
|
|
102
|
-
handleChangesCommand: (context: CommandExecutionContext) => void;
|
|
103
|
-
handleCheckpointCommand: (context: CommandExecutionContext) => void;
|
|
104
|
-
handleMemoryCommand: (context: CommandExecutionContext) => void;
|
|
105
|
-
handleModeCommand: (context: CommandExecutionContext) => void;
|
|
106
|
-
commandSuite: CommandSuiteRuntimeDeps;
|
|
107
|
-
refreshFooterHint: () => void;
|
|
108
|
-
onQuit: () => Promise<void> | void;
|
|
109
|
-
}
|
|
110
|
-
export declare function buildTuiCommandRegistryOptions(deps: TuiCommandRegistryDeps): CommandRegistryOptions;
|
|
111
|
-
//# sourceMappingURL=command-registry-options.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"command-registry-options.d.ts","sourceRoot":"","sources":["../../../src/cli-tui/tui-renderer/command-registry-options.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,163 +0,0 @@
|
|
|
1
|
-
import { Spacer, Text, } from "@evalops/tui";
|
|
2
|
-
import { handleA2ATuiCommand } from "../commands/a2a-handlers.js";
|
|
3
|
-
import { handleAccessCommand } from "../commands/access-command.js";
|
|
4
|
-
import { handleAuditCommand } from "../commands/audit-command.js";
|
|
5
|
-
import { createHotkeysCommandHandler } from "../commands/hotkeys-command.js";
|
|
6
|
-
import { handleLimitsCommand } from "../commands/limits-command.js";
|
|
7
|
-
import { handleOtelCommand as otelHandler } from "../commands/otel-handlers.js";
|
|
8
|
-
import { createPackageCommandHandler } from "../commands/package-handlers.js";
|
|
9
|
-
import { handlePiiCommand } from "../commands/pii-command.js";
|
|
10
|
-
import { handleApprovalsCommand, handlePlanModeCommand, } from "../commands/safety-handlers.js";
|
|
11
|
-
import { handleCopyCommand, handleInitCommand, handleReportCommand, } from "../commands/utility-handlers.js";
|
|
12
|
-
import { buildCommandSuiteHandlers, } from "./command-suite-wiring.js";
|
|
13
|
-
export function buildTuiCommandRegistryOptions(deps) {
|
|
14
|
-
const addContent = (text) => {
|
|
15
|
-
deps.chatContainer.addChild(new Spacer(1));
|
|
16
|
-
deps.chatContainer.addChild(new Text(text, 1, 0));
|
|
17
|
-
};
|
|
18
|
-
const requestRender = () => {
|
|
19
|
-
deps.ui.requestRender();
|
|
20
|
-
};
|
|
21
|
-
const handlers = {
|
|
22
|
-
thinking: (_context) => deps.getThinkingSelectorView().show(),
|
|
23
|
-
model: (_context) => deps.getModelSelectorView().show(),
|
|
24
|
-
theme: (_context) => deps.getThemeSelectorView().show(),
|
|
25
|
-
exportSession: async (context) => deps.getImportExportView().handleExportCommand(context.rawInput),
|
|
26
|
-
shareSession: async (context) => deps.getImportExportView().handleShareCommand(context.rawInput),
|
|
27
|
-
tools: (context) => deps.getToolStatusView().handleToolsCommand(context.rawInput),
|
|
28
|
-
toolHistory: (context) => deps.handleToolHistoryCommand(context),
|
|
29
|
-
skills: (context) => deps.handleSkillsCommand(context),
|
|
30
|
-
importConfig: (context) => deps.getImportExportView().handleImportCommand(context.rawInput),
|
|
31
|
-
session: (context) => deps.sessionView.handleSessionCommand(context.rawInput),
|
|
32
|
-
sessions: (context) => deps.sessionView.handleSessionsCommand(context.rawInput),
|
|
33
|
-
report: (context) => handleReportCommand(context, {
|
|
34
|
-
showBugReport: () => deps.getFeedbackView().handleBugCommand(),
|
|
35
|
-
showFeedback: () => deps.getFeedbackView().handleFeedbackCommand(),
|
|
36
|
-
showReportSelector: () => deps.getReportSelectorView().show(),
|
|
37
|
-
}),
|
|
38
|
-
about: (_context) => deps.getAboutView().handleAboutCommand(),
|
|
39
|
-
history: (context) => deps.handleHistoryCommand(context),
|
|
40
|
-
clear: async (_context) => await deps.getClearController().handleClearCommand(),
|
|
41
|
-
status: (_context) => deps.getDiagnosticsView().handleStatusCommand(),
|
|
42
|
-
review: (context) => deps.handleReviewCommand(context),
|
|
43
|
-
undoChanges: (context) => deps.handleEnhancedUndoCommand(context),
|
|
44
|
-
mention: (context) => deps.getFileSearchView().handleMentionCommand(context.rawInput),
|
|
45
|
-
a2a: (context) => handleA2ATuiCommand(context, {
|
|
46
|
-
addContent,
|
|
47
|
-
requestRender,
|
|
48
|
-
}),
|
|
49
|
-
access: (context) => handleAccessCommand(context),
|
|
50
|
-
pii: (context) => handlePiiCommand(context),
|
|
51
|
-
audit: (context) => handleAuditCommand(context),
|
|
52
|
-
limits: (context) => handleLimitsCommand(context),
|
|
53
|
-
help: (_context) => deps.getInfoView().showHelp(),
|
|
54
|
-
update: (_context) => deps.getUpdateView().handleUpdateCommand(),
|
|
55
|
-
changelog: (_context) => deps.getChangelogView().handleChangelogCommand(),
|
|
56
|
-
hotkeys: (context) => createHotkeysCommandHandler({
|
|
57
|
-
showHotkeys: () => deps.getHotkeysView().handleHotkeysCommand(),
|
|
58
|
-
})(context),
|
|
59
|
-
package: (context) => createPackageCommandHandler({
|
|
60
|
-
cwd: process.cwd(),
|
|
61
|
-
addContent,
|
|
62
|
-
requestRender,
|
|
63
|
-
})(context),
|
|
64
|
-
config: (context) => deps.getConfigView().handleConfigCommand(context),
|
|
65
|
-
cost: (context) => deps.getCostView().handleCostCommand(context),
|
|
66
|
-
quota: (context) => deps.getQuotaView().handleQuotaCommand(context),
|
|
67
|
-
telemetry: (context) => deps.getTelemetryView().handleTelemetryCommand(context),
|
|
68
|
-
otel: (_context) => otelHandler({
|
|
69
|
-
showInfo: (msg) => deps.notificationView.showInfo(msg),
|
|
70
|
-
}),
|
|
71
|
-
training: (context) => deps.getTrainingView().handleTrainingCommand(context),
|
|
72
|
-
stats: (context) => deps.handleStatsCommand(context),
|
|
73
|
-
plan: (context) => {
|
|
74
|
-
if (deps.planController) {
|
|
75
|
-
deps.planController.handlePlanCommand(context);
|
|
76
|
-
return;
|
|
77
|
-
}
|
|
78
|
-
context.showInfo("Plan panel is not available.");
|
|
79
|
-
},
|
|
80
|
-
preview: (context) => deps.gitView.handlePreviewCommand(context.rawInput),
|
|
81
|
-
run: (context) => deps.getRunCommandView().handleRunCommand(context.rawInput),
|
|
82
|
-
ollama: (context) => deps.getOllamaView().handleOllamaCommand(context.rawInput),
|
|
83
|
-
diagnostics: (context) => deps.getDiagnosticsView().handleDiagnosticsCommand(context.rawInput),
|
|
84
|
-
background: (context) => deps.backgroundTasksController.handleBackgroundCommand(context),
|
|
85
|
-
compact: (context) => {
|
|
86
|
-
const customInstructions = context.rawInput
|
|
87
|
-
.replace(/^\/compact\s*/i, "")
|
|
88
|
-
.trim();
|
|
89
|
-
return deps.compactionController.handleCompactCommand(customInstructions || undefined);
|
|
90
|
-
},
|
|
91
|
-
autocompact: (context) => deps.compactionController.handleAutocompactCommand(context.rawInput),
|
|
92
|
-
footer: (context) => deps.handleFooterCommand(context),
|
|
93
|
-
compactTools: (context) => deps.handleCompactToolsCommand(context.rawInput),
|
|
94
|
-
steer: (context) => deps.handleSteerCommand(context),
|
|
95
|
-
commands: (context) => deps.getCustomCommandsController().handleCommandsCommand(context),
|
|
96
|
-
queue: (context) => {
|
|
97
|
-
const queuePanelController = deps.getQueuePanelController();
|
|
98
|
-
if (queuePanelController) {
|
|
99
|
-
queuePanelController.handleQueueCommand(context);
|
|
100
|
-
return;
|
|
101
|
-
}
|
|
102
|
-
context.showInfo("Prompt queue is not available.");
|
|
103
|
-
},
|
|
104
|
-
branch: (context) => deps.getBranchController().handleBranchCommand(context),
|
|
105
|
-
tree: (context) => deps.handleTreeCommand(context),
|
|
106
|
-
quit: async (_context) => {
|
|
107
|
-
await deps.onQuit();
|
|
108
|
-
},
|
|
109
|
-
approvals: (context) => handleApprovalsCommand(context, deps.approvalService, {
|
|
110
|
-
showToast: (msg, type) => deps.notificationView.showToast(msg, type),
|
|
111
|
-
refreshFooterHint: () => deps.refreshFooterHint(),
|
|
112
|
-
addContent,
|
|
113
|
-
requestRender,
|
|
114
|
-
}),
|
|
115
|
-
planMode: (context) => handlePlanModeCommand(context, {
|
|
116
|
-
showToast: (msg, type) => deps.notificationView.showToast(msg, type),
|
|
117
|
-
refreshFooterHint: () => deps.refreshFooterHint(),
|
|
118
|
-
addContent,
|
|
119
|
-
requestRender,
|
|
120
|
-
}),
|
|
121
|
-
newChat: (context) => deps.handleNewChatCommand(context),
|
|
122
|
-
initAgents: (context) => handleInitCommand(context, {
|
|
123
|
-
showSuccess: (msg) => deps.notificationView.showToast(msg, "success"),
|
|
124
|
-
showError: (msg) => context.showError(msg),
|
|
125
|
-
addContent,
|
|
126
|
-
requestRender,
|
|
127
|
-
}),
|
|
128
|
-
mcp: (context) => deps.handleMcpCommand(context),
|
|
129
|
-
composer: (context) => deps.handleComposerCommand(context),
|
|
130
|
-
login: (context) => deps.oauthFlowController.handleLoginCommand(context.argumentText, (msg) => context.showError(msg)),
|
|
131
|
-
logout: (context) => deps.oauthFlowController.handleLogoutCommand(context.argumentText, (msg) => context.showError(msg), (msg) => context.showInfo(msg)),
|
|
132
|
-
zen: (context) => deps.uiStateController.handleZenCommand(context),
|
|
133
|
-
context: (context) => deps.handleContextCommand(context),
|
|
134
|
-
lsp: (context) => deps.getLspView().handleLspCommand(context.rawInput),
|
|
135
|
-
framework: (context) => deps.handleFrameworkCommand(context),
|
|
136
|
-
clean: (context) => deps.uiStateController.handleCleanCommand(context),
|
|
137
|
-
guardian: (context) => deps.handleGuardianCommand(context),
|
|
138
|
-
workflow: (context) => deps.handleWorkflowCommand(context),
|
|
139
|
-
changes: (context) => deps.handleChangesCommand(context),
|
|
140
|
-
checkpoint: (context) => deps.handleCheckpointCommand(context),
|
|
141
|
-
memory: (context) => deps.handleMemoryCommand(context),
|
|
142
|
-
mode: (context) => deps.handleModeCommand(context),
|
|
143
|
-
prompts: (context) => deps.getCustomCommandsController().handlePromptsCommand(context),
|
|
144
|
-
copy: (context) => handleCopyCommand(context, { getMessages: () => deps.getMessages() }, {
|
|
145
|
-
showInfo: (msg) => context.showInfo(msg),
|
|
146
|
-
showError: (msg) => context.showError(msg),
|
|
147
|
-
}),
|
|
148
|
-
};
|
|
149
|
-
let commandSuiteHandlers = null;
|
|
150
|
-
return {
|
|
151
|
-
getRunScriptCompletions: (prefix) => deps.getRunCommandView().getRunScriptCompletions(prefix),
|
|
152
|
-
createContext: (ctx) => deps.createCommandContext(ctx),
|
|
153
|
-
handlers,
|
|
154
|
-
getCommandSuiteHandlers: () => {
|
|
155
|
-
commandSuiteHandlers ??= buildCommandSuiteHandlers({
|
|
156
|
-
handlers,
|
|
157
|
-
...deps.commandSuite,
|
|
158
|
-
});
|
|
159
|
-
return commandSuiteHandlers;
|
|
160
|
-
},
|
|
161
|
-
};
|
|
162
|
-
}
|
|
163
|
-
//# sourceMappingURL=command-registry-options.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"command-registry-options.js","sourceRoot":"","sources":["../../../src/cli-tui/tui-renderer/command-registry-options.ts"],"names":[],"mappings":"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","sourcesContent":["import {\n\ttype Container,\n\ttype SlashCommand,\n\tSpacer,\n\ttype TUI,\n\tText,\n} from \"@evalops/tui\";\nimport type { ActionApprovalService } from \"../../agent/action-approval.js\";\nimport type { AppMessage } from \"../../agent/types.js\";\nimport type { AboutView } from \"../about-view.js\";\nimport type { BackgroundTasksController } from \"../background/background-tasks-controller.js\";\nimport type { ChangelogView } from \"../changelog-view.js\";\nimport { handleA2ATuiCommand } from \"../commands/a2a-handlers.js\";\nimport { handleAccessCommand } from \"../commands/access-command.js\";\nimport { handleAuditCommand } from \"../commands/audit-command.js\";\nimport { createHotkeysCommandHandler } from \"../commands/hotkeys-command.js\";\nimport { handleLimitsCommand } from \"../commands/limits-command.js\";\nimport { handleOtelCommand as otelHandler } from \"../commands/otel-handlers.js\";\nimport { createPackageCommandHandler } from \"../commands/package-handlers.js\";\nimport { handlePiiCommand } from \"../commands/pii-command.js\";\nimport {\n\thandleApprovalsCommand,\n\thandlePlanModeCommand,\n} from \"../commands/safety-handlers.js\";\nimport type {\n\tCommandExecutionContext,\n\tCommandHandlers,\n\tCommandRegistryOptions,\n} from \"../commands/types.js\";\nimport {\n\thandleCopyCommand,\n\thandleInitCommand,\n\thandleReportCommand,\n} from \"../commands/utility-handlers.js\";\nimport type { ConfigView } from \"../config-view.js\";\nimport type { FeedbackView } from \"../feedback-view.js\";\nimport type { GitView } from \"../git/git-view.js\";\nimport type { HotkeysView } from \"../hotkeys-view.js\";\nimport type { ImportExportView } from \"../import-view.js\";\nimport type { InfoView } from \"../info-view.js\";\nimport type { LspView } from \"../lsp-view.js\";\nimport type { NotificationView } from \"../notification-view.js\";\nimport type { OAuthFlowController } from \"../oauth/index.js\";\nimport type { OllamaView } from \"../ollama-view.js\";\nimport type { PlanController } from \"../plan/plan-controller.js\";\nimport type { QueuePanelController } from \"../queue/index.js\";\nimport type { RunCommandView } from \"../run/run-command-view.js\";\nimport type { FileSearchView } from \"../search/file-search-view.js\";\nimport type { ModelSelectorView } from \"../selectors/model-selector-view.js\";\nimport type { ReportSelectorView } from \"../selectors/report-selector-view.js\";\nimport type { ThemeSelectorView } from \"../selectors/theme-selector-view.js\";\nimport type { ThinkingSelectorView } from \"../selectors/thinking-selector-view.js\";\nimport type { SessionView } from \"../session/session-view.js\";\nimport type { CostView } from \"../status/cost-view.js\";\nimport type { DiagnosticsView } from \"../status/diagnostics-view.js\";\nimport type { QuotaView } from \"../status/quota-view.js\";\nimport type { TelemetryView } from \"../status/telemetry-view.js\";\nimport type { TrainingView } from \"../status/training-view.js\";\nimport type { ToolStatusView } from \"../tool-status-view.js\";\nimport type { UpdateView } from \"../update-view.js\";\nimport type { BranchController } from \"./branch-controller.js\";\nimport type { ClearController } from \"./clear-controller.js\";\nimport {\n\ttype CommandSuiteRuntimeDeps,\n\tbuildCommandSuiteHandlers,\n} from \"./command-suite-wiring.js\";\nimport type { CompactionController } from \"./compaction-controller.js\";\nimport type { CustomCommandsController } from \"./custom-commands-controller.js\";\nimport type { UiStateController } from \"./ui-state-controller.js\";\n\nexport interface TuiCommandRegistryDeps {\n\tgetRunCommandView: () => RunCommandView;\n\tgetToolStatusView: () => ToolStatusView;\n\tsessionView: SessionView;\n\tgetClearController: () => ClearController;\n\tgetDiagnosticsView: () => DiagnosticsView;\n\tplanController?: PlanController;\n\tgitView: GitView;\n\tbackgroundTasksController: BackgroundTasksController;\n\tcompactionController: CompactionController;\n\tgetCustomCommandsController: () => CustomCommandsController;\n\tgetBranchController: () => BranchController;\n\toauthFlowController: OAuthFlowController;\n\tapprovalService: ActionApprovalService;\n\tnotificationView: NotificationView;\n\tchatContainer: Container;\n\tui: TUI;\n\tuiStateController: UiStateController;\n\tgetImportExportView: () => ImportExportView;\n\tgetReportSelectorView: () => ReportSelectorView;\n\tgetFeedbackView: () => FeedbackView;\n\tgetAboutView: () => AboutView;\n\tgetInfoView: () => InfoView;\n\tgetUpdateView: () => UpdateView;\n\tgetChangelogView: () => ChangelogView;\n\tgetHotkeysView: () => HotkeysView;\n\tgetConfigView: () => ConfigView;\n\tgetCostView: () => CostView;\n\tgetQuotaView: () => QuotaView;\n\tgetTelemetryView: () => TelemetryView;\n\tgetTrainingView: () => TrainingView;\n\tgetOllamaView: () => OllamaView;\n\tgetThinkingSelectorView: () => ThinkingSelectorView;\n\tgetModelSelectorView: () => ModelSelectorView;\n\tgetThemeSelectorView: () => ThemeSelectorView;\n\tgetLspView: () => LspView;\n\tgetFileSearchView: () => FileSearchView;\n\tgetQueuePanelController: () => QueuePanelController | null;\n\tgetMessages: () => AppMessage[];\n\tcreateCommandContext: (ctx: {\n\t\tcommand: SlashCommand;\n\t\trawInput: string;\n\t\targumentText: string;\n\t\tparsedArgs?: Record<string, unknown>;\n\t}) => CommandExecutionContext;\n\thandleReviewCommand: (context: CommandExecutionContext) => void;\n\thandleHistoryCommand: (context: CommandExecutionContext) => void;\n\thandleToolHistoryCommand: (context: CommandExecutionContext) => void;\n\thandleSkillsCommand: (context: CommandExecutionContext) => void;\n\thandleEnhancedUndoCommand: (context: CommandExecutionContext) => void;\n\thandleFooterCommand: (context: CommandExecutionContext) => void;\n\thandleCompactToolsCommand: (rawInput: string) => void;\n\thandleSteerCommand: (context: CommandExecutionContext) => void;\n\thandleStatsCommand: (context: CommandExecutionContext) => void;\n\thandleNewChatCommand: (\n\t\tcontext: CommandExecutionContext,\n\t) => void | Promise<void>;\n\thandleTreeCommand: (context: CommandExecutionContext) => void;\n\thandleMcpCommand: (context: CommandExecutionContext) => void;\n\thandleComposerCommand: (context: CommandExecutionContext) => void;\n\thandleContextCommand: (context: CommandExecutionContext) => void;\n\thandleFrameworkCommand: (context: CommandExecutionContext) => void;\n\thandleGuardianCommand: (context: CommandExecutionContext) => void;\n\thandleWorkflowCommand: (context: CommandExecutionContext) => void;\n\thandleChangesCommand: (context: CommandExecutionContext) => void;\n\thandleCheckpointCommand: (context: CommandExecutionContext) => void;\n\thandleMemoryCommand: (context: CommandExecutionContext) => void;\n\thandleModeCommand: (context: CommandExecutionContext) => void;\n\tcommandSuite: CommandSuiteRuntimeDeps;\n\trefreshFooterHint: () => void;\n\tonQuit: () => Promise<void> | void;\n}\n\nexport function buildTuiCommandRegistryOptions(\n\tdeps: TuiCommandRegistryDeps,\n): CommandRegistryOptions {\n\tconst addContent = (text: string): void => {\n\t\tdeps.chatContainer.addChild(new Spacer(1));\n\t\tdeps.chatContainer.addChild(new Text(text, 1, 0));\n\t};\n\n\tconst requestRender = (): void => {\n\t\tdeps.ui.requestRender();\n\t};\n\n\tconst handlers: CommandHandlers = {\n\t\tthinking: (_context) => deps.getThinkingSelectorView().show(),\n\t\tmodel: (_context) => deps.getModelSelectorView().show(),\n\t\ttheme: (_context) => deps.getThemeSelectorView().show(),\n\t\texportSession: async (context) =>\n\t\t\tdeps.getImportExportView().handleExportCommand(context.rawInput),\n\t\tshareSession: async (context) =>\n\t\t\tdeps.getImportExportView().handleShareCommand(context.rawInput),\n\t\ttools: (context) =>\n\t\t\tdeps.getToolStatusView().handleToolsCommand(context.rawInput),\n\t\ttoolHistory: (context) => deps.handleToolHistoryCommand(context),\n\t\tskills: (context) => deps.handleSkillsCommand(context),\n\t\timportConfig: (context) =>\n\t\t\tdeps.getImportExportView().handleImportCommand(context.rawInput),\n\t\tsession: (context) =>\n\t\t\tdeps.sessionView.handleSessionCommand(context.rawInput),\n\t\tsessions: (context) =>\n\t\t\tdeps.sessionView.handleSessionsCommand(context.rawInput),\n\t\treport: (context) =>\n\t\t\thandleReportCommand(context, {\n\t\t\t\tshowBugReport: () => deps.getFeedbackView().handleBugCommand(),\n\t\t\t\tshowFeedback: () => deps.getFeedbackView().handleFeedbackCommand(),\n\t\t\t\tshowReportSelector: () => deps.getReportSelectorView().show(),\n\t\t\t}),\n\t\tabout: (_context) => deps.getAboutView().handleAboutCommand(),\n\t\thistory: (context) => deps.handleHistoryCommand(context),\n\t\tclear: async (_context) =>\n\t\t\tawait deps.getClearController().handleClearCommand(),\n\t\tstatus: (_context) => deps.getDiagnosticsView().handleStatusCommand(),\n\t\treview: (context) => deps.handleReviewCommand(context),\n\t\tundoChanges: (context) => deps.handleEnhancedUndoCommand(context),\n\t\tmention: (context) =>\n\t\t\tdeps.getFileSearchView().handleMentionCommand(context.rawInput),\n\t\ta2a: (context) =>\n\t\t\thandleA2ATuiCommand(context, {\n\t\t\t\taddContent,\n\t\t\t\trequestRender,\n\t\t\t}),\n\t\taccess: (context) => handleAccessCommand(context),\n\t\tpii: (context) => handlePiiCommand(context),\n\t\taudit: (context) => handleAuditCommand(context),\n\t\tlimits: (context) => handleLimitsCommand(context),\n\t\thelp: (_context) => deps.getInfoView().showHelp(),\n\t\tupdate: (_context) => deps.getUpdateView().handleUpdateCommand(),\n\t\tchangelog: (_context) => deps.getChangelogView().handleChangelogCommand(),\n\t\thotkeys: (context) =>\n\t\t\tcreateHotkeysCommandHandler({\n\t\t\t\tshowHotkeys: () => deps.getHotkeysView().handleHotkeysCommand(),\n\t\t\t})(context),\n\t\tpackage: (context) =>\n\t\t\tcreatePackageCommandHandler({\n\t\t\t\tcwd: process.cwd(),\n\t\t\t\taddContent,\n\t\t\t\trequestRender,\n\t\t\t})(context),\n\t\tconfig: (context) => deps.getConfigView().handleConfigCommand(context),\n\t\tcost: (context) => deps.getCostView().handleCostCommand(context),\n\t\tquota: (context) => deps.getQuotaView().handleQuotaCommand(context),\n\t\ttelemetry: (context) =>\n\t\t\tdeps.getTelemetryView().handleTelemetryCommand(context),\n\t\totel: (_context) =>\n\t\t\totelHandler({\n\t\t\t\tshowInfo: (msg) => deps.notificationView.showInfo(msg),\n\t\t\t}),\n\t\ttraining: (context) =>\n\t\t\tdeps.getTrainingView().handleTrainingCommand(context),\n\t\tstats: (context) => deps.handleStatsCommand(context),\n\t\tplan: (context) => {\n\t\t\tif (deps.planController) {\n\t\t\t\tdeps.planController.handlePlanCommand(context);\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tcontext.showInfo(\"Plan panel is not available.\");\n\t\t},\n\t\tpreview: (context) => deps.gitView.handlePreviewCommand(context.rawInput),\n\t\trun: (context) =>\n\t\t\tdeps.getRunCommandView().handleRunCommand(context.rawInput),\n\t\tollama: (context) =>\n\t\t\tdeps.getOllamaView().handleOllamaCommand(context.rawInput),\n\t\tdiagnostics: (context) =>\n\t\t\tdeps.getDiagnosticsView().handleDiagnosticsCommand(context.rawInput),\n\t\tbackground: (context) =>\n\t\t\tdeps.backgroundTasksController.handleBackgroundCommand(context),\n\t\tcompact: (context) => {\n\t\t\tconst customInstructions = context.rawInput\n\t\t\t\t.replace(/^\\/compact\\s*/i, \"\")\n\t\t\t\t.trim();\n\t\t\treturn deps.compactionController.handleCompactCommand(\n\t\t\t\tcustomInstructions || undefined,\n\t\t\t);\n\t\t},\n\t\tautocompact: (context) =>\n\t\t\tdeps.compactionController.handleAutocompactCommand(context.rawInput),\n\t\tfooter: (context) => deps.handleFooterCommand(context),\n\t\tcompactTools: (context) => deps.handleCompactToolsCommand(context.rawInput),\n\t\tsteer: (context) => deps.handleSteerCommand(context),\n\t\tcommands: (context) =>\n\t\t\tdeps.getCustomCommandsController().handleCommandsCommand(context),\n\t\tqueue: (context) => {\n\t\t\tconst queuePanelController = deps.getQueuePanelController();\n\t\t\tif (queuePanelController) {\n\t\t\t\tqueuePanelController.handleQueueCommand(context);\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tcontext.showInfo(\"Prompt queue is not available.\");\n\t\t},\n\t\tbranch: (context) =>\n\t\t\tdeps.getBranchController().handleBranchCommand(context),\n\t\ttree: (context) => deps.handleTreeCommand(context),\n\t\tquit: async (_context) => {\n\t\t\tawait deps.onQuit();\n\t\t},\n\t\tapprovals: (context) =>\n\t\t\thandleApprovalsCommand(context, deps.approvalService, {\n\t\t\t\tshowToast: (msg, type) => deps.notificationView.showToast(msg, type),\n\t\t\t\trefreshFooterHint: () => deps.refreshFooterHint(),\n\t\t\t\taddContent,\n\t\t\t\trequestRender,\n\t\t\t}),\n\t\tplanMode: (context) =>\n\t\t\thandlePlanModeCommand(context, {\n\t\t\t\tshowToast: (msg, type) => deps.notificationView.showToast(msg, type),\n\t\t\t\trefreshFooterHint: () => deps.refreshFooterHint(),\n\t\t\t\taddContent,\n\t\t\t\trequestRender,\n\t\t\t}),\n\t\tnewChat: (context) => deps.handleNewChatCommand(context),\n\t\tinitAgents: (context) =>\n\t\t\thandleInitCommand(context, {\n\t\t\t\tshowSuccess: (msg) => deps.notificationView.showToast(msg, \"success\"),\n\t\t\t\tshowError: (msg) => context.showError(msg),\n\t\t\t\taddContent,\n\t\t\t\trequestRender,\n\t\t\t}),\n\t\tmcp: (context) => deps.handleMcpCommand(context),\n\t\tcomposer: (context) => deps.handleComposerCommand(context),\n\t\tlogin: (context) =>\n\t\t\tdeps.oauthFlowController.handleLoginCommand(context.argumentText, (msg) =>\n\t\t\t\tcontext.showError(msg),\n\t\t\t),\n\t\tlogout: (context) =>\n\t\t\tdeps.oauthFlowController.handleLogoutCommand(\n\t\t\t\tcontext.argumentText,\n\t\t\t\t(msg) => context.showError(msg),\n\t\t\t\t(msg) => context.showInfo(msg),\n\t\t\t),\n\t\tzen: (context) => deps.uiStateController.handleZenCommand(context),\n\t\tcontext: (context) => deps.handleContextCommand(context),\n\t\tlsp: (context) => deps.getLspView().handleLspCommand(context.rawInput),\n\t\tframework: (context) => deps.handleFrameworkCommand(context),\n\t\tclean: (context) => deps.uiStateController.handleCleanCommand(context),\n\t\tguardian: (context) => deps.handleGuardianCommand(context),\n\t\tworkflow: (context) => deps.handleWorkflowCommand(context),\n\t\tchanges: (context) => deps.handleChangesCommand(context),\n\t\tcheckpoint: (context) => deps.handleCheckpointCommand(context),\n\t\tmemory: (context) => deps.handleMemoryCommand(context),\n\t\tmode: (context) => deps.handleModeCommand(context),\n\t\tprompts: (context) =>\n\t\t\tdeps.getCustomCommandsController().handlePromptsCommand(context),\n\t\tcopy: (context) =>\n\t\t\thandleCopyCommand(\n\t\t\t\tcontext,\n\t\t\t\t{ getMessages: () => deps.getMessages() },\n\t\t\t\t{\n\t\t\t\t\tshowInfo: (msg) => context.showInfo(msg),\n\t\t\t\t\tshowError: (msg) => context.showError(msg),\n\t\t\t\t},\n\t\t\t),\n\t};\n\tlet commandSuiteHandlers: ReturnType<\n\t\ttypeof buildCommandSuiteHandlers\n\t> | null = null;\n\n\treturn {\n\t\tgetRunScriptCompletions: (prefix) =>\n\t\t\tdeps.getRunCommandView().getRunScriptCompletions(prefix),\n\t\tcreateContext: (ctx) => deps.createCommandContext(ctx),\n\t\thandlers,\n\t\tgetCommandSuiteHandlers: () => {\n\t\t\tcommandSuiteHandlers ??= buildCommandSuiteHandlers({\n\t\t\t\thandlers,\n\t\t\t\t...deps.commandSuite,\n\t\t\t});\n\t\t\treturn commandSuiteHandlers;\n\t\t},\n\t};\n}\n"]}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import type { SlashCommand } from "@evalops/tui";
|
|
2
|
-
import type { CommandEntry, CommandExecutionContext } from "../commands/types.js";
|
|
3
|
-
import { buildCommandRegistry } from "../utils/commands/command-registry-builder.js";
|
|
4
|
-
type CommandRegistryOptions = Parameters<typeof buildCommandRegistry>[0];
|
|
5
|
-
export type CommandRegistryResult = {
|
|
6
|
-
entries: CommandEntry[];
|
|
7
|
-
commands: SlashCommand[];
|
|
8
|
-
};
|
|
9
|
-
export declare function buildTuiCommandRegistry({ cwd, registryOptions, executePromptTemplate, logDebug, }: {
|
|
10
|
-
cwd: string;
|
|
11
|
-
registryOptions: CommandRegistryOptions;
|
|
12
|
-
executePromptTemplate: (promptName: string, userArgumentText: string, context: CommandExecutionContext) => void;
|
|
13
|
-
logDebug?: (message: string, meta?: Record<string, unknown>) => void;
|
|
14
|
-
}): CommandRegistryResult;
|
|
15
|
-
export {};
|
|
16
|
-
//# sourceMappingURL=command-registry.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"command-registry.d.ts","sourceRoot":"","sources":["../../../src/cli-tui/tui-renderer/command-registry.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAEjD,OAAO,KAAK,EACX,YAAY,EACZ,uBAAuB,EACvB,MAAM,sBAAsB,CAAC;AAC9B,OAAO,EAAE,oBAAoB,EAAE,MAAM,+CAA+C,CAAC;AAGrF,KAAK,sBAAsB,GAAG,UAAU,CAAC,OAAO,oBAAoB,CAAC,CAAC,CAAC,CAAC,CAAC;AAEzE,MAAM,MAAM,qBAAqB,GAAG;IACnC,OAAO,EAAE,YAAY,EAAE,CAAC;IACxB,QAAQ,EAAE,YAAY,EAAE,CAAC;CACzB,CAAC;AAEF,wBAAgB,uBAAuB,CAAC,EACvC,GAAG,EACH,eAAe,EACf,qBAAqB,EACrB,QAAQ,GACR,EAAE;IACF,GAAG,EAAE,MAAM,CAAC;IACZ,eAAe,EAAE,sBAAsB,CAAC;IACxC,qBAAqB,EAAE,CACtB,UAAU,EAAE,MAAM,EAClB,gBAAgB,EAAE,MAAM,EACxB,OAAO,EAAE,uBAAuB,KAC5B,IAAI,CAAC;IACV,QAAQ,CAAC,EAAE,CAAC,OAAO,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAAK,IAAI,CAAC;CACrE,GAAG,qBAAqB,CAkBxB"}
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import { loadPrompts } from "../../commands/catalog.js";
|
|
2
|
-
import { buildCommandRegistry } from "../utils/commands/command-registry-builder.js";
|
|
3
|
-
import { buildPromptTemplateSlashCommands } from "./prompt-template-slash-commands.js";
|
|
4
|
-
export function buildTuiCommandRegistry({ cwd, registryOptions, executePromptTemplate, logDebug, }) {
|
|
5
|
-
const registry = buildCommandRegistry(registryOptions);
|
|
6
|
-
const promptTemplates = loadPrompts(cwd);
|
|
7
|
-
const promptTemplateCommands = buildPromptTemplateSlashCommands({
|
|
8
|
-
prompts: promptTemplates,
|
|
9
|
-
existingCommands: registry.commands,
|
|
10
|
-
createContext: registryOptions.createContext,
|
|
11
|
-
executePromptTemplate,
|
|
12
|
-
});
|
|
13
|
-
if (promptTemplateCommands.commands.length > 0) {
|
|
14
|
-
registry.entries.push(...promptTemplateCommands.entries);
|
|
15
|
-
registry.commands.push(...promptTemplateCommands.commands);
|
|
16
|
-
logDebug?.("Registered prompt templates as slash commands", {
|
|
17
|
-
added: promptTemplateCommands.commands.length,
|
|
18
|
-
skipped: promptTemplateCommands.skipped,
|
|
19
|
-
});
|
|
20
|
-
}
|
|
21
|
-
return registry;
|
|
22
|
-
}
|
|
23
|
-
//# sourceMappingURL=command-registry.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"command-registry.js","sourceRoot":"","sources":["../../../src/cli-tui/tui-renderer/command-registry.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,EAAE,MAAM,2BAA2B,CAAC;AAKxD,OAAO,EAAE,oBAAoB,EAAE,MAAM,+CAA+C,CAAC;AACrF,OAAO,EAAE,gCAAgC,EAAE,MAAM,qCAAqC,CAAC;AASvF,MAAM,UAAU,uBAAuB,CAAC,EACvC,GAAG,EACH,eAAe,EACf,qBAAqB,EACrB,QAAQ,GAUR;IACA,MAAM,QAAQ,GAAG,oBAAoB,CAAC,eAAe,CAAC,CAAC;IACvD,MAAM,eAAe,GAAG,WAAW,CAAC,GAAG,CAAC,CAAC;IACzC,MAAM,sBAAsB,GAAG,gCAAgC,CAAC;QAC/D,OAAO,EAAE,eAAe;QACxB,gBAAgB,EAAE,QAAQ,CAAC,QAAQ;QACnC,aAAa,EAAE,eAAe,CAAC,aAAa;QAC5C,qBAAqB;KACrB,CAAC,CAAC;IACH,IAAI,sBAAsB,CAAC,QAAQ,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;QAChD,QAAQ,CAAC,OAAO,CAAC,IAAI,CAAC,GAAG,sBAAsB,CAAC,OAAO,CAAC,CAAC;QACzD,QAAQ,CAAC,QAAQ,CAAC,IAAI,CAAC,GAAG,sBAAsB,CAAC,QAAQ,CAAC,CAAC;QAC3D,QAAQ,EAAE,CAAC,+CAA+C,EAAE;YAC3D,KAAK,EAAE,sBAAsB,CAAC,QAAQ,CAAC,MAAM;YAC7C,OAAO,EAAE,sBAAsB,CAAC,OAAO;SACvC,CAAC,CAAC;IACJ,CAAC;IACD,OAAO,QAAQ,CAAC;AACjB,CAAC","sourcesContent":["import type { SlashCommand } from \"@evalops/tui\";\nimport { loadPrompts } from \"../../commands/catalog.js\";\nimport type {\n\tCommandEntry,\n\tCommandExecutionContext,\n} from \"../commands/types.js\";\nimport { buildCommandRegistry } from \"../utils/commands/command-registry-builder.js\";\nimport { buildPromptTemplateSlashCommands } from \"./prompt-template-slash-commands.js\";\n\ntype CommandRegistryOptions = Parameters<typeof buildCommandRegistry>[0];\n\nexport type CommandRegistryResult = {\n\tentries: CommandEntry[];\n\tcommands: SlashCommand[];\n};\n\nexport function buildTuiCommandRegistry({\n\tcwd,\n\tregistryOptions,\n\texecutePromptTemplate,\n\tlogDebug,\n}: {\n\tcwd: string;\n\tregistryOptions: CommandRegistryOptions;\n\texecutePromptTemplate: (\n\t\tpromptName: string,\n\t\tuserArgumentText: string,\n\t\tcontext: CommandExecutionContext,\n\t) => void;\n\tlogDebug?: (message: string, meta?: Record<string, unknown>) => void;\n}): CommandRegistryResult {\n\tconst registry = buildCommandRegistry(registryOptions);\n\tconst promptTemplates = loadPrompts(cwd);\n\tconst promptTemplateCommands = buildPromptTemplateSlashCommands({\n\t\tprompts: promptTemplates,\n\t\texistingCommands: registry.commands,\n\t\tcreateContext: registryOptions.createContext,\n\t\texecutePromptTemplate,\n\t});\n\tif (promptTemplateCommands.commands.length > 0) {\n\t\tregistry.entries.push(...promptTemplateCommands.entries);\n\t\tregistry.commands.push(...promptTemplateCommands.commands);\n\t\tlogDebug?.(\"Registered prompt templates as slash commands\", {\n\t\t\tadded: promptTemplateCommands.commands.length,\n\t\t\tskipped: promptTemplateCommands.skipped,\n\t\t});\n\t}\n\treturn registry;\n}\n"]}
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* CommandSuiteWiring adapts top-level command handlers into parent command
|
|
3
|
-
* suites such as /ss, /diag, /cfg, and /tools.
|
|
4
|
-
*/
|
|
5
|
-
import { type CommandSuiteHandlers } from "../commands/command-suite-handlers.js";
|
|
6
|
-
import type { AuthState } from "../commands/subcommands/auth-commands.js";
|
|
7
|
-
import type { CommandExecutionContext, CommandHandlers } from "../commands/types.js";
|
|
8
|
-
type SuiteHandlerKey = "about" | "approvals" | "background" | "branch" | "changes" | "checkpoint" | "clean" | "clear" | "commands" | "compactTools" | "composer" | "config" | "context" | "cost" | "diagnostics" | "exportSession" | "footer" | "framework" | "guardian" | "importConfig" | "initAgents" | "login" | "logout" | "lsp" | "mcp" | "newChat" | "otel" | "planMode" | "preview" | "quota" | "queue" | "review" | "run" | "session" | "sessions" | "shareSession" | "stats" | "status" | "telemetry" | "theme" | "training" | "tree" | "tools" | "undoChanges" | "workflow" | "zen";
|
|
9
|
-
export type CommandSuiteBaseHandlers = Pick<CommandHandlers, SuiteHandlerKey>;
|
|
10
|
-
export interface CommandSuiteRuntimeDeps {
|
|
11
|
-
getUiState: () => {
|
|
12
|
-
zenMode: boolean;
|
|
13
|
-
cleanMode: string;
|
|
14
|
-
footerMode: string;
|
|
15
|
-
compactTools: boolean;
|
|
16
|
-
};
|
|
17
|
-
getAuthState: () => AuthState | Promise<AuthState>;
|
|
18
|
-
handleSessionRecoverCommand: (ctx: CommandExecutionContext) => void | Promise<void>;
|
|
19
|
-
handleSessionCleanupCommand: (ctx: CommandExecutionContext) => void | Promise<void>;
|
|
20
|
-
handleSourcesCommand: (ctx: CommandExecutionContext) => void | Promise<void>;
|
|
21
|
-
handlePerfCommand: () => void | Promise<void>;
|
|
22
|
-
handleAuthSourceOfTruthCommand: (argumentText: string, showError: (msg: string) => void, showInfo: (msg: string) => void) => void | Promise<void>;
|
|
23
|
-
}
|
|
24
|
-
export interface CommandSuiteWiringDeps extends CommandSuiteRuntimeDeps {
|
|
25
|
-
handlers: CommandSuiteBaseHandlers;
|
|
26
|
-
}
|
|
27
|
-
export declare function buildCommandSuiteHandlers(deps: CommandSuiteWiringDeps): CommandSuiteHandlers;
|
|
28
|
-
export {};
|
|
29
|
-
//# sourceMappingURL=command-suite-wiring.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"command-suite-wiring.d.ts","sourceRoot":"","sources":["../../../src/cli-tui/tui-renderer/command-suite-wiring.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EACN,KAAK,oBAAoB,EAGzB,MAAM,uCAAuC,CAAC;AAC/C,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,0CAA0C,CAAC;AAC1E,OAAO,KAAK,EACX,uBAAuB,EACvB,eAAe,EACf,MAAM,sBAAsB,CAAC;AAE9B,KAAK,eAAe,GACjB,OAAO,GACP,WAAW,GACX,YAAY,GACZ,QAAQ,GACR,SAAS,GACT,YAAY,GACZ,OAAO,GACP,OAAO,GACP,UAAU,GACV,cAAc,GACd,UAAU,GACV,QAAQ,GACR,SAAS,GACT,MAAM,GACN,aAAa,GACb,eAAe,GACf,QAAQ,GACR,WAAW,GACX,UAAU,GACV,cAAc,GACd,YAAY,GACZ,OAAO,GACP,QAAQ,GACR,KAAK,GACL,KAAK,GACL,SAAS,GACT,MAAM,GACN,UAAU,GACV,SAAS,GACT,OAAO,GACP,OAAO,GACP,QAAQ,GACR,KAAK,GACL,SAAS,GACT,UAAU,GACV,cAAc,GACd,OAAO,GACP,QAAQ,GACR,WAAW,GACX,OAAO,GACP,UAAU,GACV,MAAM,GACN,OAAO,GACP,aAAa,GACb,UAAU,GACV,KAAK,CAAC;AAET,MAAM,MAAM,wBAAwB,GAAG,IAAI,CAAC,eAAe,EAAE,eAAe,CAAC,CAAC;AAE9E,MAAM,WAAW,uBAAuB;IACvC,UAAU,EAAE,MAAM;QACjB,OAAO,EAAE,OAAO,CAAC;QACjB,SAAS,EAAE,MAAM,CAAC;QAClB,UAAU,EAAE,MAAM,CAAC;QACnB,YAAY,EAAE,OAAO,CAAC;KACtB,CAAC;IACF,YAAY,EAAE,MAAM,SAAS,GAAG,OAAO,CAAC,SAAS,CAAC,CAAC;IACnD,2BAA2B,EAAE,CAC5B,GAAG,EAAE,uBAAuB,KACxB,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAC1B,2BAA2B,EAAE,CAC5B,GAAG,EAAE,uBAAuB,KACxB,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAC1B,oBAAoB,EAAE,CAAC,GAAG,EAAE,uBAAuB,KAAK,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAC7E,iBAAiB,EAAE,MAAM,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAC9C,8BAA8B,EAAE,CAC/B,YAAY,EAAE,MAAM,EACpB,SAAS,EAAE,CAAC,GAAG,EAAE,MAAM,KAAK,IAAI,EAChC,QAAQ,EAAE,CAAC,GAAG,EAAE,MAAM,KAAK,IAAI,KAC3B,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;CAC1B;AAED,MAAM,WAAW,sBAAuB,SAAQ,uBAAuB;IACtE,QAAQ,EAAE,wBAAwB,CAAC;CACnC;AAED,wBAAgB,yBAAyB,CACxC,IAAI,EAAE,sBAAsB,GAC1B,oBAAoB,CAiGtB"}
|
|
@@ -1,108 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* CommandSuiteWiring adapts top-level command handlers into parent command
|
|
3
|
-
* suites such as /ss, /diag, /cfg, and /tools.
|
|
4
|
-
*/
|
|
5
|
-
import { CommandSuiteKey, createCommandSuiteHandlers, } from "../commands/command-suite-handlers.js";
|
|
6
|
-
export function buildCommandSuiteHandlers(deps) {
|
|
7
|
-
const { handlers } = deps;
|
|
8
|
-
return createCommandSuiteHandlers({
|
|
9
|
-
[CommandSuiteKey.Session]: {
|
|
10
|
-
handleNewChat: (ctx) => handlers.newChat(ctx),
|
|
11
|
-
handleClear: () => handlers.clear(commandContext("/clear")),
|
|
12
|
-
handleSessionInfo: (ctx) => handlers.session(ctx),
|
|
13
|
-
handleSessionsList: (ctx) => handlers.sessions(ctx),
|
|
14
|
-
handleBranch: (ctx) => handlers.branch(ctx),
|
|
15
|
-
handleTree: (ctx) => handlers.tree(ctx),
|
|
16
|
-
handleQueue: (ctx) => handlers.queue(ctx),
|
|
17
|
-
handleExport: (ctx) => handlers.exportSession(ctx),
|
|
18
|
-
handleShare: (ctx) => handlers.shareSession(ctx),
|
|
19
|
-
handleRecover: (ctx) => deps.handleSessionRecoverCommand(ctx),
|
|
20
|
-
handleCleanup: (ctx) => deps.handleSessionCleanupCommand(ctx),
|
|
21
|
-
},
|
|
22
|
-
[CommandSuiteKey.Diag]: {
|
|
23
|
-
handleStatus: () => handlers.status(commandContext("/status")),
|
|
24
|
-
handleAbout: () => handlers.about(commandContext("/about")),
|
|
25
|
-
handleContext: (ctx) => handlers.context(ctx),
|
|
26
|
-
handleStats: (ctx) => handlers.stats(ctx),
|
|
27
|
-
handleBackground: (ctx) => handlers.background(ctx),
|
|
28
|
-
handleDiagnostics: (ctx) => handlers.diagnostics(ctx),
|
|
29
|
-
handleTelemetry: (ctx) => handlers.telemetry(ctx),
|
|
30
|
-
handleTraining: (ctx) => handlers.training(ctx),
|
|
31
|
-
handleOtel: (ctx) => handlers.otel(ctx),
|
|
32
|
-
handleConfig: (ctx) => handlers.config(ctx),
|
|
33
|
-
handleLsp: (ctx) => handlers.lsp(ctx),
|
|
34
|
-
handleMcp: (ctx) => handlers.mcp(ctx),
|
|
35
|
-
handleSources: (ctx) => deps.handleSourcesCommand(ctx),
|
|
36
|
-
handlePerf: () => deps.handlePerfCommand(),
|
|
37
|
-
},
|
|
38
|
-
[CommandSuiteKey.Ui]: {
|
|
39
|
-
showTheme: () => handlers.theme(commandContext("/theme")),
|
|
40
|
-
handleClean: (ctx) => handlers.clean(ctx),
|
|
41
|
-
handleFooter: (ctx) => handlers.footer(ctx),
|
|
42
|
-
handleZen: (ctx) => handlers.zen(ctx),
|
|
43
|
-
handleCompactTools: (ctx) => handlers.compactTools(ctx),
|
|
44
|
-
getUiState: () => deps.getUiState(),
|
|
45
|
-
},
|
|
46
|
-
[CommandSuiteKey.Safety]: {
|
|
47
|
-
handleApprovals: (ctx) => handlers.approvals(ctx),
|
|
48
|
-
handlePlanMode: (ctx) => handlers.planMode(ctx),
|
|
49
|
-
handleGuardian: (ctx) => handlers.guardian(ctx),
|
|
50
|
-
getSafetyState: () => ({
|
|
51
|
-
approvalMode: process.env.MAESTRO_APPROVALS ?? "prompt",
|
|
52
|
-
planMode: process.env.MAESTRO_PLAN_MODE === "1",
|
|
53
|
-
guardianEnabled: true,
|
|
54
|
-
}),
|
|
55
|
-
},
|
|
56
|
-
[CommandSuiteKey.Git]: {
|
|
57
|
-
handleDiff: (ctx) => handlers.preview(ctx),
|
|
58
|
-
handleReview: (ctx) => handlers.review(ctx),
|
|
59
|
-
},
|
|
60
|
-
[CommandSuiteKey.Auth]: {
|
|
61
|
-
handleLogin: (ctx) => handlers.login(ctx),
|
|
62
|
-
handleLogout: (ctx) => handlers.logout(ctx),
|
|
63
|
-
handleSourceOfTruthPolicy: (ctx) => deps.handleAuthSourceOfTruthCommand(ctx.argumentText, (msg) => ctx.showError(msg), (msg) => ctx.showInfo(msg)),
|
|
64
|
-
getAuthState: () => deps.getAuthState(),
|
|
65
|
-
},
|
|
66
|
-
[CommandSuiteKey.Usage]: {
|
|
67
|
-
handleCost: (ctx) => handlers.cost(ctx),
|
|
68
|
-
handleQuota: (ctx) => handlers.quota(ctx),
|
|
69
|
-
handleStats: (ctx) => handlers.stats(ctx),
|
|
70
|
-
},
|
|
71
|
-
[CommandSuiteKey.Undo]: {
|
|
72
|
-
handleUndo: (ctx) => handlers.undoChanges(ctx),
|
|
73
|
-
handleCheckpoint: (ctx) => handlers.checkpoint(ctx),
|
|
74
|
-
handleChanges: (ctx) => handlers.changes(ctx),
|
|
75
|
-
getUndoState: () => ({
|
|
76
|
-
canUndo: true,
|
|
77
|
-
undoCount: 0,
|
|
78
|
-
checkpoints: [],
|
|
79
|
-
}),
|
|
80
|
-
},
|
|
81
|
-
[CommandSuiteKey.Config]: {
|
|
82
|
-
handleConfig: (ctx) => handlers.config(ctx),
|
|
83
|
-
handleImport: (ctx) => handlers.importConfig(ctx),
|
|
84
|
-
handleFramework: (ctx) => handlers.framework(ctx),
|
|
85
|
-
handleComposer: (ctx) => handlers.composer(ctx),
|
|
86
|
-
handleInit: (ctx) => handlers.initAgents(ctx),
|
|
87
|
-
},
|
|
88
|
-
[CommandSuiteKey.Tools]: {
|
|
89
|
-
handleTools: (ctx) => handlers.tools(ctx),
|
|
90
|
-
handleMcp: (ctx) => handlers.mcp(ctx),
|
|
91
|
-
handleLsp: (ctx) => handlers.lsp(ctx),
|
|
92
|
-
handleWorkflow: (ctx) => handlers.workflow(ctx),
|
|
93
|
-
handleRun: (ctx) => handlers.run(ctx),
|
|
94
|
-
handleCommands: (ctx) => handlers.commands(ctx),
|
|
95
|
-
},
|
|
96
|
-
});
|
|
97
|
-
}
|
|
98
|
-
function commandContext(rawInput) {
|
|
99
|
-
return {
|
|
100
|
-
command: { name: rawInput.replace(/^\//, ""), description: "" },
|
|
101
|
-
rawInput,
|
|
102
|
-
argumentText: "",
|
|
103
|
-
showInfo: () => undefined,
|
|
104
|
-
showError: () => undefined,
|
|
105
|
-
renderHelp: () => undefined,
|
|
106
|
-
};
|
|
107
|
-
}
|
|
108
|
-
//# sourceMappingURL=command-suite-wiring.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"command-suite-wiring.js","sourceRoot":"","sources":["../../../src/cli-tui/tui-renderer/command-suite-wiring.ts"],"names":[],"mappings":"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","sourcesContent":["/**\n * CommandSuiteWiring adapts top-level command handlers into parent command\n * suites such as /ss, /diag, /cfg, and /tools.\n */\n\nimport {\n\ttype CommandSuiteHandlers,\n\tCommandSuiteKey,\n\tcreateCommandSuiteHandlers,\n} from \"../commands/command-suite-handlers.js\";\nimport type { AuthState } from \"../commands/subcommands/auth-commands.js\";\nimport type {\n\tCommandExecutionContext,\n\tCommandHandlers,\n} from \"../commands/types.js\";\n\ntype SuiteHandlerKey =\n\t| \"about\"\n\t| \"approvals\"\n\t| \"background\"\n\t| \"branch\"\n\t| \"changes\"\n\t| \"checkpoint\"\n\t| \"clean\"\n\t| \"clear\"\n\t| \"commands\"\n\t| \"compactTools\"\n\t| \"composer\"\n\t| \"config\"\n\t| \"context\"\n\t| \"cost\"\n\t| \"diagnostics\"\n\t| \"exportSession\"\n\t| \"footer\"\n\t| \"framework\"\n\t| \"guardian\"\n\t| \"importConfig\"\n\t| \"initAgents\"\n\t| \"login\"\n\t| \"logout\"\n\t| \"lsp\"\n\t| \"mcp\"\n\t| \"newChat\"\n\t| \"otel\"\n\t| \"planMode\"\n\t| \"preview\"\n\t| \"quota\"\n\t| \"queue\"\n\t| \"review\"\n\t| \"run\"\n\t| \"session\"\n\t| \"sessions\"\n\t| \"shareSession\"\n\t| \"stats\"\n\t| \"status\"\n\t| \"telemetry\"\n\t| \"theme\"\n\t| \"training\"\n\t| \"tree\"\n\t| \"tools\"\n\t| \"undoChanges\"\n\t| \"workflow\"\n\t| \"zen\";\n\nexport type CommandSuiteBaseHandlers = Pick<CommandHandlers, SuiteHandlerKey>;\n\nexport interface CommandSuiteRuntimeDeps {\n\tgetUiState: () => {\n\t\tzenMode: boolean;\n\t\tcleanMode: string;\n\t\tfooterMode: string;\n\t\tcompactTools: boolean;\n\t};\n\tgetAuthState: () => AuthState | Promise<AuthState>;\n\thandleSessionRecoverCommand: (\n\t\tctx: CommandExecutionContext,\n\t) => void | Promise<void>;\n\thandleSessionCleanupCommand: (\n\t\tctx: CommandExecutionContext,\n\t) => void | Promise<void>;\n\thandleSourcesCommand: (ctx: CommandExecutionContext) => void | Promise<void>;\n\thandlePerfCommand: () => void | Promise<void>;\n\thandleAuthSourceOfTruthCommand: (\n\t\targumentText: string,\n\t\tshowError: (msg: string) => void,\n\t\tshowInfo: (msg: string) => void,\n\t) => void | Promise<void>;\n}\n\nexport interface CommandSuiteWiringDeps extends CommandSuiteRuntimeDeps {\n\thandlers: CommandSuiteBaseHandlers;\n}\n\nexport function buildCommandSuiteHandlers(\n\tdeps: CommandSuiteWiringDeps,\n): CommandSuiteHandlers {\n\tconst { handlers } = deps;\n\n\treturn createCommandSuiteHandlers({\n\t\t[CommandSuiteKey.Session]: {\n\t\t\thandleNewChat: (ctx) => handlers.newChat(ctx),\n\t\t\thandleClear: () => handlers.clear(commandContext(\"/clear\")),\n\t\t\thandleSessionInfo: (ctx) => handlers.session(ctx),\n\t\t\thandleSessionsList: (ctx) => handlers.sessions(ctx),\n\t\t\thandleBranch: (ctx) => handlers.branch(ctx),\n\t\t\thandleTree: (ctx) => handlers.tree(ctx),\n\t\t\thandleQueue: (ctx) => handlers.queue(ctx),\n\t\t\thandleExport: (ctx) => handlers.exportSession(ctx),\n\t\t\thandleShare: (ctx) => handlers.shareSession(ctx),\n\t\t\thandleRecover: (ctx) => deps.handleSessionRecoverCommand(ctx),\n\t\t\thandleCleanup: (ctx) => deps.handleSessionCleanupCommand(ctx),\n\t\t},\n\t\t[CommandSuiteKey.Diag]: {\n\t\t\thandleStatus: () => handlers.status(commandContext(\"/status\")),\n\t\t\thandleAbout: () => handlers.about(commandContext(\"/about\")),\n\t\t\thandleContext: (ctx) => handlers.context(ctx),\n\t\t\thandleStats: (ctx) => handlers.stats(ctx),\n\t\t\thandleBackground: (ctx) => handlers.background(ctx),\n\t\t\thandleDiagnostics: (ctx) => handlers.diagnostics(ctx),\n\t\t\thandleTelemetry: (ctx) => handlers.telemetry(ctx),\n\t\t\thandleTraining: (ctx) => handlers.training(ctx),\n\t\t\thandleOtel: (ctx) => handlers.otel(ctx),\n\t\t\thandleConfig: (ctx) => handlers.config(ctx),\n\t\t\thandleLsp: (ctx) => handlers.lsp(ctx),\n\t\t\thandleMcp: (ctx) => handlers.mcp(ctx),\n\t\t\thandleSources: (ctx) => deps.handleSourcesCommand(ctx),\n\t\t\thandlePerf: () => deps.handlePerfCommand(),\n\t\t},\n\t\t[CommandSuiteKey.Ui]: {\n\t\t\tshowTheme: () => handlers.theme(commandContext(\"/theme\")),\n\t\t\thandleClean: (ctx) => handlers.clean(ctx),\n\t\t\thandleFooter: (ctx) => handlers.footer(ctx),\n\t\t\thandleZen: (ctx) => handlers.zen(ctx),\n\t\t\thandleCompactTools: (ctx) => handlers.compactTools(ctx),\n\t\t\tgetUiState: () => deps.getUiState(),\n\t\t},\n\t\t[CommandSuiteKey.Safety]: {\n\t\t\thandleApprovals: (ctx) => handlers.approvals(ctx),\n\t\t\thandlePlanMode: (ctx) => handlers.planMode(ctx),\n\t\t\thandleGuardian: (ctx) => handlers.guardian(ctx),\n\t\t\tgetSafetyState: () => ({\n\t\t\t\tapprovalMode: process.env.MAESTRO_APPROVALS ?? \"prompt\",\n\t\t\t\tplanMode: process.env.MAESTRO_PLAN_MODE === \"1\",\n\t\t\t\tguardianEnabled: true,\n\t\t\t}),\n\t\t},\n\t\t[CommandSuiteKey.Git]: {\n\t\t\thandleDiff: (ctx) => handlers.preview(ctx),\n\t\t\thandleReview: (ctx) => handlers.review(ctx),\n\t\t},\n\t\t[CommandSuiteKey.Auth]: {\n\t\t\thandleLogin: (ctx) => handlers.login(ctx),\n\t\t\thandleLogout: (ctx) => handlers.logout(ctx),\n\t\t\thandleSourceOfTruthPolicy: (ctx) =>\n\t\t\t\tdeps.handleAuthSourceOfTruthCommand(\n\t\t\t\t\tctx.argumentText,\n\t\t\t\t\t(msg) => ctx.showError(msg),\n\t\t\t\t\t(msg) => ctx.showInfo(msg),\n\t\t\t\t),\n\t\t\tgetAuthState: () => deps.getAuthState(),\n\t\t},\n\t\t[CommandSuiteKey.Usage]: {\n\t\t\thandleCost: (ctx) => handlers.cost(ctx),\n\t\t\thandleQuota: (ctx) => handlers.quota(ctx),\n\t\t\thandleStats: (ctx) => handlers.stats(ctx),\n\t\t},\n\t\t[CommandSuiteKey.Undo]: {\n\t\t\thandleUndo: (ctx) => handlers.undoChanges(ctx),\n\t\t\thandleCheckpoint: (ctx) => handlers.checkpoint(ctx),\n\t\t\thandleChanges: (ctx) => handlers.changes(ctx),\n\t\t\tgetUndoState: () => ({\n\t\t\t\tcanUndo: true,\n\t\t\t\tundoCount: 0,\n\t\t\t\tcheckpoints: [],\n\t\t\t}),\n\t\t},\n\t\t[CommandSuiteKey.Config]: {\n\t\t\thandleConfig: (ctx) => handlers.config(ctx),\n\t\t\thandleImport: (ctx) => handlers.importConfig(ctx),\n\t\t\thandleFramework: (ctx) => handlers.framework(ctx),\n\t\t\thandleComposer: (ctx) => handlers.composer(ctx),\n\t\t\thandleInit: (ctx) => handlers.initAgents(ctx),\n\t\t},\n\t\t[CommandSuiteKey.Tools]: {\n\t\t\thandleTools: (ctx) => handlers.tools(ctx),\n\t\t\thandleMcp: (ctx) => handlers.mcp(ctx),\n\t\t\thandleLsp: (ctx) => handlers.lsp(ctx),\n\t\t\thandleWorkflow: (ctx) => handlers.workflow(ctx),\n\t\t\thandleRun: (ctx) => handlers.run(ctx),\n\t\t\thandleCommands: (ctx) => handlers.commands(ctx),\n\t\t},\n\t});\n}\n\nfunction commandContext(rawInput: string): CommandExecutionContext {\n\treturn {\n\t\tcommand: { name: rawInput.replace(/^\\//, \"\"), description: \"\" },\n\t\trawInput,\n\t\targumentText: \"\",\n\t\tshowInfo: () => undefined,\n\t\tshowError: () => undefined,\n\t\trenderHelp: () => undefined,\n\t};\n}\n"]}
|