@bastani/atomic 0.9.5-alpha.9 → 0.9.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +106 -0
- package/README.md +2 -2
- package/dist/builtin/cursor/CHANGELOG.md +12 -0
- package/dist/builtin/cursor/package.json +3 -3
- package/dist/builtin/cursor/src/model-mapper.ts +6 -3
- package/dist/builtin/intercom/CHANGELOG.md +37 -0
- package/dist/builtin/intercom/README.md +4 -2
- package/dist/builtin/intercom/broker/broker.ts +6 -114
- package/dist/builtin/intercom/broker/client.ts +29 -54
- package/dist/builtin/intercom/broker/delivered-message-cache.ts +44 -0
- package/dist/builtin/intercom/broker/pending-send-registry.ts +142 -0
- package/dist/builtin/intercom/broker/send-handler.ts +106 -0
- package/dist/builtin/intercom/broker/send-signature.ts +37 -0
- package/dist/builtin/intercom/foreground-detach-handoff.ts +136 -0
- package/dist/builtin/intercom/index-heavy.ts +49 -53
- package/dist/builtin/intercom/index.ts +278 -262
- package/dist/builtin/intercom/lazy-heavy-proxy.ts +114 -0
- package/dist/builtin/intercom/lazy-subagent-ack.ts +20 -0
- package/dist/builtin/intercom/lazy-tool-execution.ts +39 -0
- package/dist/builtin/intercom/lifecycle-lease.ts +51 -0
- package/dist/builtin/intercom/lifecycle.ts +37 -20
- package/dist/builtin/intercom/package.json +3 -6
- package/dist/builtin/intercom/reply-routing.ts +17 -0
- package/dist/builtin/intercom/subagent-relay.ts +58 -12
- package/dist/builtin/intercom/types.ts +3 -3
- package/dist/builtin/mcp/CHANGELOG.md +27 -0
- package/dist/builtin/mcp/OAUTH.md +1 -0
- package/dist/builtin/mcp/README.md +4 -0
- package/dist/builtin/mcp/apps-cancellation.ts +32 -0
- package/dist/builtin/mcp/call-tool-result.ts +9 -0
- package/dist/builtin/mcp/caller-wait.ts +50 -0
- package/dist/builtin/mcp/command-registration.ts +82 -0
- package/dist/builtin/mcp/direct-tool-executor.ts +279 -0
- package/dist/builtin/mcp/direct-tools.ts +6 -239
- package/dist/builtin/mcp/host-html-template.ts +4 -2
- package/dist/builtin/mcp/index.ts +258 -250
- package/dist/builtin/mcp/init.ts +96 -87
- package/dist/builtin/mcp/mcp-auth-flow.ts +247 -237
- package/dist/builtin/mcp/mcp-callback-server.ts +89 -68
- package/dist/builtin/mcp/mcp-oauth-provider.ts +23 -1
- package/dist/builtin/mcp/metadata-hydration.ts +21 -6
- package/dist/builtin/mcp/package.json +3 -3
- package/dist/builtin/mcp/proxy-auth.ts +4 -4
- package/dist/builtin/mcp/proxy-call.ts +111 -40
- package/dist/builtin/mcp/proxy-connect.ts +35 -15
- package/dist/builtin/mcp/proxy-info-modes.ts +49 -19
- package/dist/builtin/mcp/proxy-modes.ts +3 -3
- package/dist/builtin/mcp/session-cleanup-barrier.ts +43 -0
- package/dist/builtin/mcp/state-lease.ts +12 -0
- package/dist/builtin/mcp/ui-server.ts +8 -8
- package/dist/builtin/mcp/ui-session.ts +9 -18
- package/dist/builtin/subagents/CHANGELOG.md +66 -0
- package/dist/builtin/subagents/README.md +30 -29
- package/dist/builtin/subagents/agents/code-simplifier.md +2 -2
- package/dist/builtin/subagents/agents/codebase-analyzer.md +2 -2
- package/dist/builtin/subagents/agents/codebase-locator.md +2 -2
- package/dist/builtin/subagents/agents/codebase-online-researcher.md +2 -2
- package/dist/builtin/subagents/agents/codebase-pattern-finder.md +2 -2
- package/dist/builtin/subagents/agents/codebase-research-analyzer.md +2 -2
- package/dist/builtin/subagents/agents/codebase-research-locator.md +2 -2
- package/dist/builtin/subagents/agents/debugger.md +2 -2
- package/dist/builtin/subagents/agents/worker.md +2 -2
- package/dist/builtin/subagents/package.json +5 -5
- package/dist/builtin/subagents/prompts/review-loop.md +1 -1
- package/dist/builtin/subagents/skills/subagent/SKILL.md +37 -36
- package/dist/builtin/subagents/src/extension/api-lifecycle.ts +64 -0
- package/dist/builtin/subagents/src/extension/fanout-child.ts +44 -51
- package/dist/builtin/subagents/src/extension/index.ts +287 -307
- package/dist/builtin/subagents/src/extension/prompt-guidance.ts +7 -10
- package/dist/builtin/subagents/src/extension/schemas.ts +22 -5
- package/dist/builtin/subagents/src/extension/tool-description.ts +29 -0
- package/dist/builtin/subagents/src/intercom/intercom-bridge.ts +13 -2
- package/dist/builtin/subagents/src/intercom/result-intercom.ts +4 -4
- package/dist/builtin/subagents/src/runs/background/async-event-journal.ts +106 -0
- package/dist/builtin/subagents/src/runs/background/async-execution-common.ts +3 -2
- package/dist/builtin/subagents/src/runs/background/async-execution-single.ts +13 -2
- package/dist/builtin/subagents/src/runs/background/async-execution-types.ts +3 -0
- package/dist/builtin/subagents/src/runs/background/async-job-tracker.ts +1 -1
- package/dist/builtin/subagents/src/runs/background/completion-claims.ts +189 -0
- package/dist/builtin/subagents/src/runs/background/completion-dedupe.ts +44 -7
- package/dist/builtin/subagents/src/runs/background/completion-notification.ts +34 -0
- package/dist/builtin/subagents/src/runs/background/notify.ts +72 -22
- package/dist/builtin/subagents/src/runs/background/result-delivery-processor.ts +232 -0
- package/dist/builtin/subagents/src/runs/background/result-file-claims.ts +151 -0
- package/dist/builtin/subagents/src/runs/background/result-quarantine.ts +72 -0
- package/dist/builtin/subagents/src/runs/background/result-retry-scheduler.ts +48 -0
- package/dist/builtin/subagents/src/runs/background/result-status.ts +81 -0
- package/dist/builtin/subagents/src/runs/background/result-watcher-data.ts +59 -0
- package/dist/builtin/subagents/src/runs/background/result-watcher.ts +172 -238
- package/dist/builtin/subagents/src/runs/background/run-id-resolver.ts +3 -2
- package/dist/builtin/subagents/src/runs/background/stale-run-reconciler.ts +73 -14
- package/dist/builtin/subagents/src/runs/background/subagent-runner-streaming.ts +17 -13
- package/dist/builtin/subagents/src/runs/background/top-level-async.ts +1 -2
- package/dist/builtin/subagents/src/runs/foreground/chain-execution-dynamic-step.ts +1 -0
- package/dist/builtin/subagents/src/runs/foreground/chain-execution-parallel-runner.ts +1 -0
- package/dist/builtin/subagents/src/runs/foreground/chain-execution-parallel-step.ts +1 -0
- package/dist/builtin/subagents/src/runs/foreground/chain-execution-sequential-step.ts +7 -9
- package/dist/builtin/subagents/src/runs/foreground/chain-execution-types.ts +3 -13
- package/dist/builtin/subagents/src/runs/foreground/chain-execution.ts +2 -15
- package/dist/builtin/subagents/src/runs/foreground/execution-attempt-finalize.ts +2 -2
- package/dist/builtin/subagents/src/runs/foreground/execution-attempt.ts +53 -44
- package/dist/builtin/subagents/src/runs/foreground/execution-detach-reservations.ts +48 -0
- package/dist/builtin/subagents/src/runs/foreground/execution-detach-route.ts +17 -0
- package/dist/builtin/subagents/src/runs/foreground/execution-run-sync.ts +39 -26
- package/dist/builtin/subagents/src/runs/foreground/subagent-executor-async.ts +3 -1
- package/dist/builtin/subagents/src/runs/foreground/subagent-executor-chain.ts +3 -51
- package/dist/builtin/subagents/src/runs/foreground/subagent-executor-context.ts +6 -11
- package/dist/builtin/subagents/src/runs/foreground/subagent-executor-input.ts +11 -2
- package/dist/builtin/subagents/src/runs/foreground/subagent-executor-parallel-task.ts +2 -0
- package/dist/builtin/subagents/src/runs/foreground/subagent-executor-parallel.ts +5 -112
- package/dist/builtin/subagents/src/runs/foreground/subagent-executor-resume.ts +2 -0
- package/dist/builtin/subagents/src/runs/foreground/subagent-executor-single.ts +68 -118
- package/dist/builtin/subagents/src/runs/foreground/subagent-executor-status.ts +79 -7
- package/dist/builtin/subagents/src/runs/foreground/subagent-executor-types.ts +2 -2
- package/dist/builtin/subagents/src/runs/foreground/subagent-executor.ts +3 -0
- package/dist/builtin/subagents/src/runs/shared/pi-args.ts +2 -2
- package/dist/builtin/subagents/src/runs/shared/pi-spawn.ts +27 -11
- package/dist/builtin/subagents/src/shared/artifacts.ts +22 -11
- package/dist/builtin/subagents/src/shared/event-jsonl-writer.ts +294 -0
- package/dist/builtin/subagents/src/shared/exclusive-file-publication.ts +44 -0
- package/dist/builtin/subagents/src/shared/jsonl-writer.ts +1 -0
- package/dist/builtin/subagents/src/shared/model-info.ts +2 -2
- package/dist/builtin/subagents/src/shared/settings.ts +20 -10
- package/dist/builtin/subagents/src/shared/types-async.ts +3 -1
- package/dist/builtin/subagents/src/shared/types-config.ts +2 -0
- package/dist/builtin/subagents/src/shared/types-runtime.ts +3 -2
- package/dist/builtin/subagents/src/slash/slash-commands.ts +9 -12
- package/dist/builtin/subagents/src/slash/slash-live-state.ts +63 -32
- package/dist/builtin/subagents/src/tui/render-result.ts +7 -0
- package/dist/builtin/subagents/src/tui/render-stable-output.ts +1 -0
- package/dist/builtin/subagents/src/tui/render-widget.ts +128 -89
- package/dist/builtin/web-access/CHANGELOG.md +28 -0
- package/dist/builtin/web-access/README.md +4 -0
- package/dist/builtin/web-access/content-tools.ts +8 -3
- package/dist/builtin/web-access/index-heavy.ts +1 -1
- package/dist/builtin/web-access/index.ts +190 -46
- package/dist/builtin/web-access/lifecycle-lease.ts +38 -0
- package/dist/builtin/web-access/package.json +2 -2
- package/dist/builtin/web-access/result-renderers.ts +1 -1
- package/dist/builtin/web-access/summary-review.ts +1 -1
- package/dist/builtin/web-access/web-search-activity.ts +1 -1
- package/dist/builtin/web-access/web-search-return.ts +7 -0
- package/dist/builtin/web-access/web-search-summary.ts +1 -1
- package/dist/builtin/web-access/web-search-tool.ts +4 -2
- package/dist/builtin/workflows/CHANGELOG.md +68 -0
- package/dist/builtin/workflows/README.md +4 -4
- package/dist/builtin/workflows/builtin/deep-research-codebase-utils.ts +27 -4
- package/dist/builtin/workflows/builtin/goal-runner.ts +47 -26
- package/dist/builtin/workflows/builtin/open-claude-design-runner.ts +10 -0
- package/dist/builtin/workflows/builtin/ralph-core.ts +9 -9
- package/dist/builtin/workflows/builtin/ralph-models.ts +71 -36
- package/dist/builtin/workflows/builtin/ralph-runner.ts +20 -31
- package/dist/builtin/workflows/package.json +2 -2
- package/dist/builtin/workflows/src/durable/stage-primitive.ts +2 -1
- package/dist/builtin/workflows/src/engine/primitives/task.ts +2 -1
- package/dist/builtin/workflows/src/extension/workflow-prompts.ts +17 -22
- package/dist/builtin/workflows/src/extension/workflow-schema.ts +15 -2
- package/dist/builtin/workflows/src/runs/foreground/executor-hil.ts +1 -2
- package/dist/builtin/workflows/src/runs/shared/model-fallback-candidates.ts +1 -1
- package/dist/builtin/workflows/src/shared/authoring-contract-stage.d.ts +2 -2
- package/dist/builtin/workflows/src/shared/authoring-contract-stage.ts +2 -2
- package/dist/builtin/workflows/src/shared/resume-continuation.ts +2 -0
- package/dist/builtin/workflows/src/tui/stage-chat-view-archive-history.ts +1 -23
- package/dist/builtin/workflows/src/tui/stage-chat-view-footer-status.ts +54 -9
- package/dist/builtin/workflows/src/tui/stage-chat-view.ts +5 -2
- package/dist/cli/args.d.ts.map +1 -1
- package/dist/cli/args.js +2 -2
- package/dist/cli/args.js.map +1 -1
- package/dist/core/agent-session-events.d.ts.map +1 -1
- package/dist/core/agent-session-events.js +2 -1
- package/dist/core/agent-session-events.js.map +1 -1
- package/dist/core/agent-session-message-queue.d.ts.map +1 -1
- package/dist/core/agent-session-message-queue.js +1 -1
- package/dist/core/agent-session-message-queue.js.map +1 -1
- package/dist/core/agent-session-prompt.d.ts.map +1 -1
- package/dist/core/agent-session-prompt.js +1 -1
- package/dist/core/agent-session-prompt.js.map +1 -1
- package/dist/core/agent-session-retry.d.ts.map +1 -1
- package/dist/core/agent-session-retry.js +1 -1
- package/dist/core/agent-session-retry.js.map +1 -1
- package/dist/core/agent-session-services.d.ts.map +1 -1
- package/dist/core/agent-session-services.js +3 -2
- package/dist/core/agent-session-services.js.map +1 -1
- package/dist/core/agent-session-types.d.ts.map +1 -1
- package/dist/core/agent-session-types.js +1 -1
- package/dist/core/agent-session-types.js.map +1 -1
- package/dist/core/anthropic-thinking-guard.d.ts +5 -5
- package/dist/core/anthropic-thinking-guard.d.ts.map +1 -1
- package/dist/core/anthropic-thinking-guard.js +42 -32
- package/dist/core/anthropic-thinking-guard.js.map +1 -1
- package/dist/core/atomic-guide-command.d.ts.map +1 -1
- package/dist/core/atomic-guide-command.js +15 -15
- package/dist/core/atomic-guide-command.js.map +1 -1
- package/dist/core/auth-storage.d.ts.map +1 -1
- package/dist/core/auth-storage.js +14 -9
- package/dist/core/auth-storage.js.map +1 -1
- package/dist/core/compaction/compaction.d.ts +2 -0
- package/dist/core/compaction/compaction.d.ts.map +1 -1
- package/dist/core/compaction/compaction.js +79 -46
- package/dist/core/compaction/compaction.js.map +1 -1
- package/dist/core/compaction/context-assistant-turns.d.ts +42 -0
- package/dist/core/compaction/context-assistant-turns.d.ts.map +1 -0
- package/dist/core/compaction/context-assistant-turns.js +87 -0
- package/dist/core/compaction/context-assistant-turns.js.map +1 -0
- package/dist/core/compaction/context-compaction-critical.d.ts +1 -1
- package/dist/core/compaction/context-compaction-critical.d.ts.map +1 -1
- package/dist/core/compaction/context-compaction-critical.js +2 -2
- package/dist/core/compaction/context-compaction-critical.js.map +1 -1
- package/dist/core/compaction/context-compaction-eviction-alternates.d.ts +18 -0
- package/dist/core/compaction/context-compaction-eviction-alternates.d.ts.map +1 -0
- package/dist/core/compaction/context-compaction-eviction-alternates.js +186 -0
- package/dist/core/compaction/context-compaction-eviction-alternates.js.map +1 -0
- package/dist/core/compaction/context-compaction-eviction.d.ts +10 -2
- package/dist/core/compaction/context-compaction-eviction.d.ts.map +1 -1
- package/dist/core/compaction/context-compaction-eviction.js +196 -146
- package/dist/core/compaction/context-compaction-eviction.js.map +1 -1
- package/dist/core/compaction/context-compaction-prompt.d.ts.map +1 -1
- package/dist/core/compaction/context-compaction-prompt.js +1 -1
- package/dist/core/compaction/context-compaction-prompt.js.map +1 -1
- package/dist/core/compaction/context-compaction-types.d.ts +2 -0
- package/dist/core/compaction/context-compaction-types.d.ts.map +1 -1
- package/dist/core/compaction/context-compaction-types.js.map +1 -1
- package/dist/core/compaction/context-deletion-application.d.ts +5 -4
- package/dist/core/compaction/context-deletion-application.d.ts.map +1 -1
- package/dist/core/compaction/context-deletion-application.js +17 -15
- package/dist/core/compaction/context-deletion-application.js.map +1 -1
- package/dist/core/compaction/context-deletion-store.d.ts.map +1 -1
- package/dist/core/compaction/context-deletion-store.js +1 -1
- package/dist/core/compaction/context-deletion-store.js.map +1 -1
- package/dist/core/compaction/context-deletion-targets.d.ts +2 -1
- package/dist/core/compaction/context-deletion-targets.d.ts.map +1 -1
- package/dist/core/compaction/context-deletion-targets.js +36 -31
- package/dist/core/compaction/context-deletion-targets.js.map +1 -1
- package/dist/core/compaction/context-deletion-tool-helpers.d.ts.map +1 -1
- package/dist/core/compaction/context-deletion-tool-helpers.js +116 -43
- package/dist/core/compaction/context-deletion-tool-helpers.js.map +1 -1
- package/dist/core/compaction/context-transcript-analysis.d.ts +1 -2
- package/dist/core/compaction/context-transcript-analysis.d.ts.map +1 -1
- package/dist/core/compaction/context-transcript-analysis.js +33 -37
- package/dist/core/compaction/context-transcript-analysis.js.map +1 -1
- package/dist/core/copilot-model-synthesis.d.ts.map +1 -1
- package/dist/core/copilot-model-synthesis.js +3 -1
- package/dist/core/copilot-model-synthesis.js.map +1 -1
- package/dist/core/extensions/provider-types.d.ts +2 -7
- package/dist/core/extensions/provider-types.d.ts.map +1 -1
- package/dist/core/extensions/provider-types.js.map +1 -1
- package/dist/core/messages.d.ts +9 -0
- package/dist/core/messages.d.ts.map +1 -1
- package/dist/core/messages.js +100 -18
- package/dist/core/messages.js.map +1 -1
- package/dist/core/model-registry-builtins.d.ts.map +1 -1
- package/dist/core/model-registry-builtins.js +5 -0
- package/dist/core/model-registry-builtins.js.map +1 -1
- package/dist/core/model-registry-custom-loader.d.ts.map +1 -1
- package/dist/core/model-registry-custom-loader.js +49 -8
- package/dist/core/model-registry-custom-loader.js.map +1 -1
- package/dist/core/model-registry-dynamic.d.ts.map +1 -1
- package/dist/core/model-registry-dynamic.js +11 -5
- package/dist/core/model-registry-dynamic.js.map +1 -1
- package/dist/core/model-registry-loader.d.ts.map +1 -1
- package/dist/core/model-registry-loader.js +8 -0
- package/dist/core/model-registry-loader.js.map +1 -1
- package/dist/core/model-registry-schemas.d.ts +93 -8
- package/dist/core/model-registry-schemas.d.ts.map +1 -1
- package/dist/core/model-registry-schemas.js +24 -12
- package/dist/core/model-registry-schemas.js.map +1 -1
- package/dist/core/model-registry-types.d.ts +7 -6
- package/dist/core/model-registry-types.d.ts.map +1 -1
- package/dist/core/model-registry-types.js.map +1 -1
- package/dist/core/model-registry.d.ts +5 -0
- package/dist/core/model-registry.d.ts.map +1 -1
- package/dist/core/model-registry.js +23 -0
- package/dist/core/model-registry.js.map +1 -1
- package/dist/core/model-resolver-cli.d.ts.map +1 -1
- package/dist/core/model-resolver-cli.js +33 -5
- package/dist/core/model-resolver-cli.js.map +1 -1
- package/dist/core/model-resolver-initial.d.ts +6 -1
- package/dist/core/model-resolver-initial.d.ts.map +1 -1
- package/dist/core/model-resolver-initial.js +12 -7
- package/dist/core/model-resolver-initial.js.map +1 -1
- package/dist/core/model-resolver.d.ts +1 -1
- package/dist/core/model-resolver.d.ts.map +1 -1
- package/dist/core/model-resolver.js +1 -1
- package/dist/core/model-resolver.js.map +1 -1
- package/dist/core/resource-loader-context-files.d.ts +1 -0
- package/dist/core/resource-loader-context-files.d.ts.map +1 -1
- package/dist/core/resource-loader-context-files.js +13 -10
- package/dist/core/resource-loader-context-files.js.map +1 -1
- package/dist/core/sdk.d.ts.map +1 -1
- package/dist/core/sdk.js +2 -2
- package/dist/core/sdk.js.map +1 -1
- package/dist/core/session-entry-normalization.d.ts +7 -0
- package/dist/core/session-entry-normalization.d.ts.map +1 -0
- package/dist/core/session-entry-normalization.js +14 -0
- package/dist/core/session-entry-normalization.js.map +1 -0
- package/dist/core/session-manager-core.d.ts.map +1 -1
- package/dist/core/session-manager-core.js +1 -0
- package/dist/core/session-manager-core.js.map +1 -1
- package/dist/core/session-manager-history.d.ts +2 -2
- package/dist/core/session-manager-history.d.ts.map +1 -1
- package/dist/core/session-manager-history.js +127 -108
- package/dist/core/session-manager-history.js.map +1 -1
- package/dist/core/settings-manager-basic-accessors.d.ts +2 -2
- package/dist/core/settings-manager-basic-accessors.d.ts.map +1 -1
- package/dist/core/settings-manager-basic-accessors.js.map +1 -1
- package/dist/core/settings-types.d.ts +1 -1
- package/dist/core/settings-types.d.ts.map +1 -1
- package/dist/core/settings-types.js.map +1 -1
- package/dist/core/tools/bash.d.ts.map +1 -1
- package/dist/core/tools/bash.js +11 -8
- package/dist/core/tools/bash.js.map +1 -1
- package/dist/main-session.d.ts.map +1 -1
- package/dist/main-session.js +1 -0
- package/dist/main-session.js.map +1 -1
- package/dist/modes/interactive/components/settings-selector-options.d.ts.map +1 -1
- package/dist/modes/interactive/components/settings-selector-options.js +3 -1
- package/dist/modes/interactive/components/settings-selector-options.js.map +1 -1
- package/dist/modes/interactive/components/thinking-selector.d.ts.map +1 -1
- package/dist/modes/interactive/components/thinking-selector.js +2 -1
- package/dist/modes/interactive/components/thinking-selector.js.map +1 -1
- package/dist/modes/interactive/interactive-agent-events.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-agent-events.js +2 -1
- package/dist/modes/interactive/interactive-agent-events.js.map +1 -1
- package/dist/modes/interactive/interactive-child-ordering.d.ts +7 -0
- package/dist/modes/interactive/interactive-child-ordering.d.ts.map +1 -0
- package/dist/modes/interactive/interactive-child-ordering.js +26 -0
- package/dist/modes/interactive/interactive-child-ordering.js.map +1 -0
- package/dist/modes/interactive/interactive-deferred-startup.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-deferred-startup.js +2 -2
- package/dist/modes/interactive/interactive-deferred-startup.js.map +1 -1
- package/dist/modes/interactive/interactive-mode-deps.d.ts +1 -1
- package/dist/modes/interactive/interactive-mode-deps.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-mode-deps.js +1 -1
- package/dist/modes/interactive/interactive-mode-deps.js.map +1 -1
- package/dist/modes/interactive/interactive-model-routing.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-model-routing.js +8 -3
- package/dist/modes/interactive/interactive-model-routing.js.map +1 -1
- package/dist/modes/interactive/theme/theme-class.d.ts +1 -1
- package/dist/modes/interactive/theme/theme-class.d.ts.map +1 -1
- package/dist/modes/interactive/theme/theme-class.js +2 -0
- package/dist/modes/interactive/theme/theme-class.js.map +1 -1
- package/dist/utils/clipboard-image.d.ts.map +1 -1
- package/dist/utils/clipboard-image.js +3 -0
- package/dist/utils/clipboard-image.js.map +1 -1
- package/docs/changelog.mdx +19 -0
- package/docs/compaction.md +55 -48
- package/docs/custom-provider.md +18 -5
- package/docs/extensions.md +7 -3
- package/docs/models.md +69 -10
- package/docs/providers.md +1 -1
- package/docs/quickstart.md +11 -7
- package/docs/rpc.md +2 -2
- package/docs/sdk.md +1 -1
- package/docs/settings.md +3 -3
- package/docs/subagents.md +36 -5
- package/docs/tools.md +1 -1
- package/docs/usage.md +4 -2
- package/docs/workflows.md +26 -43
- package/examples/extensions/preset.ts +2 -2
- package/examples/extensions/subagent/README.md +2 -2
- package/examples/extensions/subagent/index.ts +1 -2
- package/examples/extensions/subagent/schemas.ts +4 -1
- package/examples/sdk/12-full-control.ts +1 -1
- package/npm-shrinkwrap.json +48 -51
- package/package.json +7 -7
- package/dist/builtin/subagents/src/runs/foreground/chain-clarify-behavior.ts +0 -75
- package/dist/builtin/subagents/src/runs/foreground/chain-clarify-component.ts +0 -202
- package/dist/builtin/subagents/src/runs/foreground/chain-clarify-edit.ts +0 -97
- package/dist/builtin/subagents/src/runs/foreground/chain-clarify-editor.ts +0 -160
- package/dist/builtin/subagents/src/runs/foreground/chain-clarify-frame.ts +0 -72
- package/dist/builtin/subagents/src/runs/foreground/chain-clarify-render-modes.ts +0 -161
- package/dist/builtin/subagents/src/runs/foreground/chain-clarify-render-selectors.ts +0 -203
- package/dist/builtin/subagents/src/runs/foreground/chain-clarify-selectors.ts +0 -234
- package/dist/builtin/subagents/src/runs/foreground/chain-clarify-state.ts +0 -103
- package/dist/builtin/subagents/src/runs/foreground/chain-clarify-types.ts +0 -29
- package/dist/builtin/subagents/src/runs/foreground/chain-clarify.ts +0 -9
- package/dist/builtin/subagents/src/runs/foreground/chain-execution-clarify.ts +0 -117
|
@@ -1,160 +0,0 @@
|
|
|
1
|
-
import { matchesKey, visibleWidth } from "@earendil-works/pi-tui";
|
|
2
|
-
|
|
3
|
-
export interface TextEditorState {
|
|
4
|
-
buffer: string;
|
|
5
|
-
cursor: number;
|
|
6
|
-
viewportOffset: number;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
export function createEditorState(initial = ""): TextEditorState {
|
|
10
|
-
return { buffer: initial, cursor: 0, viewportOffset: 0 };
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
export function wrapText(text: string, width: number): { lines: string[]; starts: number[] } {
|
|
14
|
-
if (width <= 0) return { lines: [text], starts: [0] };
|
|
15
|
-
if (text.length === 0) return { lines: [""], starts: [0] };
|
|
16
|
-
|
|
17
|
-
const lines: string[] = [];
|
|
18
|
-
const starts: number[] = [];
|
|
19
|
-
let offset = 0;
|
|
20
|
-
const segments = text.split("\n");
|
|
21
|
-
for (const [index, segment] of segments.entries()) {
|
|
22
|
-
if (segment.length === 0) {
|
|
23
|
-
starts.push(offset);
|
|
24
|
-
lines.push("");
|
|
25
|
-
} else {
|
|
26
|
-
let lineStart = 0;
|
|
27
|
-
let pos = 0;
|
|
28
|
-
let lineWidth = 0;
|
|
29
|
-
while (pos < segment.length) {
|
|
30
|
-
const char = String.fromCodePoint(segment.codePointAt(pos)!);
|
|
31
|
-
const charWidth = visibleWidth(char);
|
|
32
|
-
if (lineWidth > 0 && lineWidth + charWidth > width) {
|
|
33
|
-
starts.push(offset + lineStart);
|
|
34
|
-
lines.push(segment.slice(lineStart, pos));
|
|
35
|
-
lineStart = pos;
|
|
36
|
-
lineWidth = 0;
|
|
37
|
-
continue;
|
|
38
|
-
}
|
|
39
|
-
pos += char.length;
|
|
40
|
-
lineWidth += charWidth;
|
|
41
|
-
}
|
|
42
|
-
starts.push(offset + lineStart);
|
|
43
|
-
lines.push(segment.slice(lineStart));
|
|
44
|
-
}
|
|
45
|
-
offset += segment.length + (index < segments.length - 1 ? 1 : 0);
|
|
46
|
-
}
|
|
47
|
-
if (!text.endsWith("\n") && text.length > 0 && visibleWidth(lines[lines.length - 1] ?? "") === width) {
|
|
48
|
-
starts.push(text.length);
|
|
49
|
-
lines.push("");
|
|
50
|
-
}
|
|
51
|
-
return { lines, starts };
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
export function getCursorDisplayPos(cursor: number, starts: number[]): { line: number; col: number } {
|
|
55
|
-
for (let i = starts.length - 1; i >= 0; i--) {
|
|
56
|
-
if (cursor >= starts[i]!) return { line: i, col: cursor - starts[i]! };
|
|
57
|
-
}
|
|
58
|
-
return { line: 0, col: 0 };
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
export function ensureCursorVisible(cursorLine: number, viewportHeight: number, currentOffset: number): number {
|
|
62
|
-
if (cursorLine < currentOffset) return Math.max(0, cursorLine);
|
|
63
|
-
if (cursorLine >= currentOffset + viewportHeight) return Math.max(0, cursorLine - viewportHeight + 1);
|
|
64
|
-
return Math.max(0, currentOffset);
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
function isWordChar(ch: string): boolean {
|
|
68
|
-
const code = ch.charCodeAt(0);
|
|
69
|
-
return (code >= 48 && code <= 57) || (code >= 65 && code <= 90) || (code >= 97 && code <= 122) || code === 95;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
function wordBackward(buffer: string, cursor: number): number {
|
|
73
|
-
let pos = cursor;
|
|
74
|
-
while (pos > 0 && !isWordChar(buffer[pos - 1]!)) pos--;
|
|
75
|
-
while (pos > 0 && isWordChar(buffer[pos - 1]!)) pos--;
|
|
76
|
-
return pos;
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
function wordForward(buffer: string, cursor: number): number {
|
|
80
|
-
let pos = cursor;
|
|
81
|
-
while (pos < buffer.length && isWordChar(buffer[pos]!)) pos++;
|
|
82
|
-
while (pos < buffer.length && !isWordChar(buffer[pos]!)) pos++;
|
|
83
|
-
return pos;
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
function normalizeInsertText(data: string): string | null {
|
|
87
|
-
let text = data.split("\x1b[200~").join("").split("\x1b[201~").join("");
|
|
88
|
-
text = text.replace(/\r\n/g, "\n").replace(/\r/g, "\n");
|
|
89
|
-
const newline = text.indexOf("\n");
|
|
90
|
-
if (newline !== -1) text = text.slice(0, newline);
|
|
91
|
-
text = text.replace(/\t/g, " ");
|
|
92
|
-
if (text.length === 0) return null;
|
|
93
|
-
for (let i = 0; i < text.length; i++) {
|
|
94
|
-
if (text.charCodeAt(i) < 32) return null;
|
|
95
|
-
}
|
|
96
|
-
return text;
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
export function handleEditorInput(state: TextEditorState, data: string, textWidth: number): TextEditorState | null {
|
|
100
|
-
if (matchesKey(data, "escape") || matchesKey(data, "ctrl+c") || matchesKey(data, "return")) return null;
|
|
101
|
-
|
|
102
|
-
const { lines: wrapped, starts } = wrapText(state.buffer, textWidth);
|
|
103
|
-
const cursorPos = getCursorDisplayPos(state.cursor, starts);
|
|
104
|
-
|
|
105
|
-
if (matchesKey(data, "alt+left") || matchesKey(data, "ctrl+left")) return { ...state, cursor: wordBackward(state.buffer, state.cursor) };
|
|
106
|
-
if (matchesKey(data, "alt+right") || matchesKey(data, "ctrl+right")) return { ...state, cursor: wordForward(state.buffer, state.cursor) };
|
|
107
|
-
if (matchesKey(data, "left")) return state.cursor > 0 ? { ...state, cursor: state.cursor - 1 } : state;
|
|
108
|
-
if (matchesKey(data, "right")) return state.cursor < state.buffer.length ? { ...state, cursor: state.cursor + 1 } : state;
|
|
109
|
-
if (matchesKey(data, "up") && cursorPos.line > 0) {
|
|
110
|
-
const targetLine = cursorPos.line - 1;
|
|
111
|
-
return { ...state, cursor: starts[targetLine]! + Math.min(cursorPos.col, wrapped[targetLine]?.length ?? 0) };
|
|
112
|
-
}
|
|
113
|
-
if (matchesKey(data, "down") && cursorPos.line < wrapped.length - 1) {
|
|
114
|
-
const targetLine = cursorPos.line + 1;
|
|
115
|
-
return { ...state, cursor: starts[targetLine]! + Math.min(cursorPos.col, wrapped[targetLine]?.length ?? 0) };
|
|
116
|
-
}
|
|
117
|
-
if (matchesKey(data, "home")) return { ...state, cursor: starts[cursorPos.line]! };
|
|
118
|
-
if (matchesKey(data, "end")) return { ...state, cursor: starts[cursorPos.line]! + (wrapped[cursorPos.line]?.length ?? 0) };
|
|
119
|
-
if (matchesKey(data, "ctrl+home")) return { ...state, cursor: 0 };
|
|
120
|
-
if (matchesKey(data, "ctrl+end")) return { ...state, cursor: state.buffer.length };
|
|
121
|
-
if (matchesKey(data, "alt+backspace")) {
|
|
122
|
-
const target = wordBackward(state.buffer, state.cursor);
|
|
123
|
-
return target === state.cursor ? state : { ...state, buffer: state.buffer.slice(0, target) + state.buffer.slice(state.cursor), cursor: target };
|
|
124
|
-
}
|
|
125
|
-
if (matchesKey(data, "backspace")) {
|
|
126
|
-
return state.cursor > 0
|
|
127
|
-
? { ...state, buffer: state.buffer.slice(0, state.cursor - 1) + state.buffer.slice(state.cursor), cursor: state.cursor - 1 }
|
|
128
|
-
: state;
|
|
129
|
-
}
|
|
130
|
-
if (matchesKey(data, "delete")) {
|
|
131
|
-
return state.cursor < state.buffer.length
|
|
132
|
-
? { ...state, buffer: state.buffer.slice(0, state.cursor) + state.buffer.slice(state.cursor + 1) }
|
|
133
|
-
: state;
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
const insert = normalizeInsertText(data);
|
|
137
|
-
return insert
|
|
138
|
-
? { ...state, buffer: state.buffer.slice(0, state.cursor) + insert + state.buffer.slice(state.cursor), cursor: state.cursor + insert.length }
|
|
139
|
-
: null;
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
function renderWithCursor(text: string, cursorPos: number): string {
|
|
143
|
-
const before = text.slice(0, cursorPos);
|
|
144
|
-
const cursorChar = text[cursorPos] ?? " ";
|
|
145
|
-
const after = text.slice(cursorPos + 1);
|
|
146
|
-
return `${before}\x1b[7m${cursorChar}\x1b[27m${after}`;
|
|
147
|
-
}
|
|
148
|
-
|
|
149
|
-
export function renderEditor(state: TextEditorState, width: number, viewportHeight: number): string[] {
|
|
150
|
-
const { lines: wrapped, starts } = wrapText(state.buffer, width);
|
|
151
|
-
const cursorPos = getCursorDisplayPos(state.cursor, starts);
|
|
152
|
-
const lines: string[] = [];
|
|
153
|
-
for (let i = 0; i < viewportHeight; i++) {
|
|
154
|
-
const lineIdx = state.viewportOffset + i;
|
|
155
|
-
let content = lineIdx < wrapped.length ? wrapped[lineIdx] ?? "" : "";
|
|
156
|
-
if (lineIdx === cursorPos.line) content = renderWithCursor(content, cursorPos.col);
|
|
157
|
-
lines.push(content);
|
|
158
|
-
}
|
|
159
|
-
return lines;
|
|
160
|
-
}
|
|
@@ -1,72 +0,0 @@
|
|
|
1
|
-
import { visibleWidth } from "@earendil-works/pi-tui";
|
|
2
|
-
import { disposeNoticeTimer, type ChainClarifyState } from "./chain-clarify-state.ts";
|
|
3
|
-
|
|
4
|
-
export function padVisible(s: string, len: number): string {
|
|
5
|
-
const vis = visibleWidth(s);
|
|
6
|
-
return s + " ".repeat(Math.max(0, len - vis));
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
export function row(state: ChainClarifyState, content: string): string {
|
|
10
|
-
const innerW = state.width - 2;
|
|
11
|
-
return state.theme.fg("border", "│") + padVisible(content, innerW) + state.theme.fg("border", "│");
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
export function renderHeader(state: ChainClarifyState, text: string): string {
|
|
15
|
-
const innerW = state.width - 2;
|
|
16
|
-
const padLen = Math.max(0, innerW - visibleWidth(text));
|
|
17
|
-
const padLeft = Math.floor(padLen / 2);
|
|
18
|
-
const padRight = padLen - padLeft;
|
|
19
|
-
return (
|
|
20
|
-
state.theme.fg("border", "╭" + "─".repeat(padLeft)) +
|
|
21
|
-
state.theme.fg("accent", text) +
|
|
22
|
-
state.theme.fg("border", "─".repeat(padRight) + "╮")
|
|
23
|
-
);
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
export function renderFooter(state: ChainClarifyState, text: string): string {
|
|
27
|
-
const innerW = state.width - 2;
|
|
28
|
-
const padLen = Math.max(0, innerW - visibleWidth(text));
|
|
29
|
-
const padLeft = Math.floor(padLen / 2);
|
|
30
|
-
const padRight = padLen - padLeft;
|
|
31
|
-
return (
|
|
32
|
-
state.theme.fg("border", "╰" + "─".repeat(padLeft)) +
|
|
33
|
-
state.theme.fg("dim", text) +
|
|
34
|
-
state.theme.fg("border", "─".repeat(padRight) + "╯")
|
|
35
|
-
);
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
export function getStepLabel(state: ChainClarifyState, stepIndex: number): string {
|
|
39
|
-
const agentName = state.agentConfigs[stepIndex]?.name ?? "unknown";
|
|
40
|
-
if (state.mode === "single") return agentName;
|
|
41
|
-
if (state.mode === "parallel") return `Task ${stepIndex + 1}: ${agentName}`;
|
|
42
|
-
return `Step ${stepIndex + 1}: ${agentName}`;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
export function getFooterText(state: ChainClarifyState): string {
|
|
46
|
-
const bgLabel = state.runInBackground ? "[b]g:ON" : "[b]g";
|
|
47
|
-
switch (state.mode) {
|
|
48
|
-
case "single":
|
|
49
|
-
return ` [Enter] Run • [Esc] Cancel • e m t w s ${bgLabel} `;
|
|
50
|
-
case "parallel":
|
|
51
|
-
return ` [Enter] Run • [Esc] Cancel • e m t s ${bgLabel} • ↑↓ Nav `;
|
|
52
|
-
case "chain":
|
|
53
|
-
return ` [Enter] Run • [Esc] Cancel • e m t w r p s ${bgLabel} • ↑↓ Nav `;
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
export function appendNotice(state: ChainClarifyState, lines: string[]): void {
|
|
58
|
-
if (!state.noticeMessage) return;
|
|
59
|
-
const color = state.noticeMessage.type === "error" ? "error" : "success";
|
|
60
|
-
lines.push(row(state, ` ${state.theme.fg(color, state.noticeMessage.text)}`));
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
export function showNotice(state: ChainClarifyState, text: string, type: "info" | "error"): void {
|
|
64
|
-
state.noticeMessage = { text, type };
|
|
65
|
-
disposeNoticeTimer(state);
|
|
66
|
-
state.noticeMessageTimer = setTimeout(() => {
|
|
67
|
-
state.noticeMessage = null;
|
|
68
|
-
state.noticeMessageTimer = null;
|
|
69
|
-
state.tui.requestRender();
|
|
70
|
-
}, 2000);
|
|
71
|
-
state.tui.requestRender();
|
|
72
|
-
}
|
|
@@ -1,161 +0,0 @@
|
|
|
1
|
-
import { truncateToWidth } from "@earendil-works/pi-tui";
|
|
2
|
-
import { getEffectiveBehavior, getEffectiveModel } from "./chain-clarify-behavior.ts";
|
|
3
|
-
import { appendNotice, getFooterText, renderFooter, renderHeader, row } from "./chain-clarify-frame.ts";
|
|
4
|
-
import type { ChainClarifyState } from "./chain-clarify-state.ts";
|
|
5
|
-
|
|
6
|
-
export function renderSingleMode(state: ChainClarifyState): string[] {
|
|
7
|
-
const innerW = state.width - 2;
|
|
8
|
-
const th = state.theme;
|
|
9
|
-
const lines: string[] = [];
|
|
10
|
-
|
|
11
|
-
const agentName = state.agentConfigs[0]?.name ?? "unknown";
|
|
12
|
-
const maxHeaderLen = innerW - 4;
|
|
13
|
-
const headerText = ` Agent: ${truncateToWidth(agentName, maxHeaderLen - 9)} `;
|
|
14
|
-
lines.push(renderHeader(state, headerText));
|
|
15
|
-
lines.push(row(state, ""));
|
|
16
|
-
|
|
17
|
-
const config = state.agentConfigs[0]!;
|
|
18
|
-
const behavior = getEffectiveBehavior(state, 0);
|
|
19
|
-
lines.push(row(state, ` ${th.fg("accent", "▶ " + config.name)}`));
|
|
20
|
-
|
|
21
|
-
const template = (state.templates[0] ?? "").split("\n")[0] ?? "";
|
|
22
|
-
lines.push(row(state, ` ${th.fg("dim", "task: ")}${truncateToWidth(template, innerW - 12)}`));
|
|
23
|
-
lines.push(row(state, ` ${th.fg("dim", "model: ")}${truncateToWidth(formatModelValue(state, 0), innerW - 13)}`));
|
|
24
|
-
|
|
25
|
-
const writesValue = behavior.output === false
|
|
26
|
-
? th.fg("dim", "(disabled)")
|
|
27
|
-
: (behavior.output || th.fg("dim", "(none)"));
|
|
28
|
-
lines.push(row(state, ` ${th.fg("dim", "writes: ")}${truncateToWidth(writesValue, innerW - 14)}`));
|
|
29
|
-
lines.push(row(state, ` ${th.fg("dim", "skills: ")}${truncateToWidth(formatSkillsValue(state, behavior.skills), innerW - 14)}`));
|
|
30
|
-
lines.push(row(state, ""));
|
|
31
|
-
|
|
32
|
-
appendNotice(state, lines);
|
|
33
|
-
lines.push(renderFooter(state, getFooterText(state)));
|
|
34
|
-
return lines;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
export function renderParallelMode(state: ChainClarifyState): string[] {
|
|
38
|
-
const innerW = state.width - 2;
|
|
39
|
-
const th = state.theme;
|
|
40
|
-
const lines: string[] = [];
|
|
41
|
-
|
|
42
|
-
lines.push(renderHeader(state, ` Parallel Tasks (${state.agentConfigs.length}) `));
|
|
43
|
-
lines.push(row(state, ""));
|
|
44
|
-
|
|
45
|
-
for (let i = 0; i < state.agentConfigs.length; i++) {
|
|
46
|
-
const config = state.agentConfigs[i]!;
|
|
47
|
-
const isSelected = i === state.selectedStep;
|
|
48
|
-
const color = isSelected ? "accent" : "dim";
|
|
49
|
-
const prefix = isSelected ? "▶ " : " ";
|
|
50
|
-
const taskPrefix = `Task ${i + 1}: `;
|
|
51
|
-
const maxNameLen = innerW - 4 - prefix.length - taskPrefix.length;
|
|
52
|
-
const agentName = config.name.length > maxNameLen
|
|
53
|
-
? config.name.slice(0, maxNameLen - 1) + "…"
|
|
54
|
-
: config.name;
|
|
55
|
-
lines.push(row(state, ` ${th.fg(color, prefix + taskPrefix + agentName)}`));
|
|
56
|
-
|
|
57
|
-
const template = (state.templates[i] ?? "").split("\n")[0] ?? "";
|
|
58
|
-
lines.push(row(state, ` ${th.fg("dim", "task: ")}${truncateToWidth(template, innerW - 12)}`));
|
|
59
|
-
lines.push(row(state, ` ${th.fg("dim", "model: ")}${truncateToWidth(formatModelValue(state, i), innerW - 13)}`));
|
|
60
|
-
|
|
61
|
-
const behavior = getEffectiveBehavior(state, i);
|
|
62
|
-
lines.push(row(state, ` ${th.fg("dim", "skills: ")}${truncateToWidth(formatSkillsValue(state, behavior.skills), innerW - 14)}`));
|
|
63
|
-
lines.push(row(state, ""));
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
appendNotice(state, lines);
|
|
67
|
-
lines.push(renderFooter(state, getFooterText(state)));
|
|
68
|
-
return lines;
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
export function renderChainMode(state: ChainClarifyState): string[] {
|
|
72
|
-
const innerW = state.width - 2;
|
|
73
|
-
const th = state.theme;
|
|
74
|
-
const lines: string[] = [];
|
|
75
|
-
|
|
76
|
-
const chainLabel = state.agentConfigs.map((c) => c.name).join(" → ");
|
|
77
|
-
const maxHeaderLen = innerW - 4;
|
|
78
|
-
lines.push(renderHeader(state, ` Chain: ${truncateToWidth(chainLabel, maxHeaderLen - 9)} `));
|
|
79
|
-
lines.push(row(state, ""));
|
|
80
|
-
lines.push(row(state, ` Original Task: ${truncateToWidth(state.originalTask, innerW - 16)}`));
|
|
81
|
-
const chainDirPreview = truncateToWidth(state.chainDir ?? "", innerW - 12);
|
|
82
|
-
lines.push(row(state, ` Chain Dir: ${th.fg("dim", chainDirPreview)}`));
|
|
83
|
-
|
|
84
|
-
const progressEnabled = state.agentConfigs.some((_, i) => getEffectiveBehavior(state, i).progress);
|
|
85
|
-
const progressValue = progressEnabled ? th.fg("success", "enabled") : th.fg("dim", "disabled");
|
|
86
|
-
lines.push(row(state, ` Progress: ${progressValue} ${th.fg("dim", "(press [p] to toggle)")}`));
|
|
87
|
-
lines.push(row(state, ""));
|
|
88
|
-
|
|
89
|
-
for (let i = 0; i < state.agentConfigs.length; i++) {
|
|
90
|
-
renderChainStep(state, lines, i, progressEnabled);
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
appendNotice(state, lines);
|
|
94
|
-
lines.push(renderFooter(state, getFooterText(state)));
|
|
95
|
-
return lines;
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
function renderChainStep(state: ChainClarifyState, lines: string[], index: number, progressEnabled: boolean): void {
|
|
99
|
-
const innerW = state.width - 2;
|
|
100
|
-
const th = state.theme;
|
|
101
|
-
const config = state.agentConfigs[index]!;
|
|
102
|
-
const isSelected = index === state.selectedStep;
|
|
103
|
-
const behavior = getEffectiveBehavior(state, index);
|
|
104
|
-
const color = isSelected ? "accent" : "dim";
|
|
105
|
-
const prefix = isSelected ? "▶ " : " ";
|
|
106
|
-
const stepPrefix = `Step ${index + 1}: `;
|
|
107
|
-
const maxNameLen = innerW - 4 - prefix.length - stepPrefix.length;
|
|
108
|
-
const agentName = config.name.length > maxNameLen
|
|
109
|
-
? config.name.slice(0, maxNameLen - 1) + "…"
|
|
110
|
-
: config.name;
|
|
111
|
-
lines.push(row(state, ` ${th.fg(color, prefix + stepPrefix + agentName)}`));
|
|
112
|
-
|
|
113
|
-
const template = (state.templates[index] ?? "").split("\n")[0] ?? "";
|
|
114
|
-
const highlighted = template
|
|
115
|
-
.replace(/\{task\}/g, th.fg("success", "{task}"))
|
|
116
|
-
.replace(/\{previous\}/g, th.fg("warning", "{previous}"))
|
|
117
|
-
.replace(/\{chain_dir\}/g, th.fg("accent", "{chain_dir}"));
|
|
118
|
-
lines.push(row(state, ` ${th.fg("dim", "task: ")}${truncateToWidth(highlighted, innerW - 12)}`));
|
|
119
|
-
lines.push(row(state, ` ${th.fg("dim", "model: ")}${truncateToWidth(formatModelValue(state, index), innerW - 13)}`));
|
|
120
|
-
|
|
121
|
-
const writesValue = behavior.output === false
|
|
122
|
-
? th.fg("dim", "(disabled)")
|
|
123
|
-
: (behavior.output || th.fg("dim", "(none)"));
|
|
124
|
-
lines.push(row(state, ` ${th.fg("dim", "writes: ")}${truncateToWidth(writesValue, innerW - 14)}`));
|
|
125
|
-
|
|
126
|
-
const readsValue = behavior.reads === false
|
|
127
|
-
? th.fg("dim", "(disabled)")
|
|
128
|
-
: (behavior.reads && behavior.reads.length > 0 ? behavior.reads.join(", ") : th.fg("dim", "(none)"));
|
|
129
|
-
lines.push(row(state, ` ${th.fg("dim", "reads: ")}${truncateToWidth(readsValue, innerW - 13)}`));
|
|
130
|
-
lines.push(row(state, ` ${th.fg("dim", "skills: ")}${truncateToWidth(formatSkillsValue(state, behavior.skills), innerW - 14)}`));
|
|
131
|
-
|
|
132
|
-
if (progressEnabled) {
|
|
133
|
-
const progressAction = index === 0
|
|
134
|
-
? th.fg("success", "writes progress.md")
|
|
135
|
-
: th.fg("accent", "reads progress.md");
|
|
136
|
-
lines.push(row(state, ` ${th.fg("dim", "progress: ")}${progressAction}`));
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
if (index < state.agentConfigs.length - 1) {
|
|
140
|
-
const nextStepUsePrevious = (state.templates[index + 1] ?? "").includes("{previous}");
|
|
141
|
-
if (nextStepUsePrevious) {
|
|
142
|
-
const indicator = th.fg("dim", " ↳ response → ") + th.fg("warning", "{previous}");
|
|
143
|
-
lines.push(row(state, indicator));
|
|
144
|
-
}
|
|
145
|
-
}
|
|
146
|
-
lines.push(row(state, ""));
|
|
147
|
-
}
|
|
148
|
-
|
|
149
|
-
function formatModelValue(state: ChainClarifyState, stepIndex: number): string {
|
|
150
|
-
const effectiveModel = getEffectiveModel(state, stepIndex);
|
|
151
|
-
const override = state.behaviorOverrides.get(stepIndex);
|
|
152
|
-
return override?.model !== undefined
|
|
153
|
-
? state.theme.fg("warning", effectiveModel) + state.theme.fg("dim", " ✎")
|
|
154
|
-
: effectiveModel;
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
function formatSkillsValue(state: ChainClarifyState, skills: string[] | false): string {
|
|
158
|
-
return skills === false
|
|
159
|
-
? state.theme.fg("dim", "(disabled)")
|
|
160
|
-
: (skills.length ? skills.join(", ") : state.theme.fg("dim", "(none)"));
|
|
161
|
-
}
|
|
@@ -1,203 +0,0 @@
|
|
|
1
|
-
import { truncateToWidth } from "@earendil-works/pi-tui";
|
|
2
|
-
import { getCursorDisplayPos, ensureCursorVisible, renderEditor, wrapText } from "./chain-clarify-editor.ts";
|
|
3
|
-
import { getAvailableThinkingLevels, getEffectiveModel } from "./chain-clarify-behavior.ts";
|
|
4
|
-
import { getStepLabel, renderFooter, renderHeader, row } from "./chain-clarify-frame.ts";
|
|
5
|
-
import { EDIT_VIEWPORT_HEIGHT, MODEL_SELECTOR_HEIGHT, type ChainClarifyState } from "./chain-clarify-state.ts";
|
|
6
|
-
import { splitKnownThinkingSuffix, type ThinkingLevel } from "../../shared/model-info.ts";
|
|
7
|
-
|
|
8
|
-
export function renderFullEditMode(state: ChainClarifyState): string[] {
|
|
9
|
-
const innerW = state.width - 2;
|
|
10
|
-
const textWidth = innerW - 2;
|
|
11
|
-
const lines: string[] = [];
|
|
12
|
-
|
|
13
|
-
const { lines: wrapped, starts } = wrapText(state.editState.buffer, textWidth);
|
|
14
|
-
const cursorPos = getCursorDisplayPos(state.editState.cursor, starts);
|
|
15
|
-
state.editState = {
|
|
16
|
-
...state.editState,
|
|
17
|
-
viewportOffset: ensureCursorVisible(cursorPos.line, EDIT_VIEWPORT_HEIGHT, state.editState.viewportOffset),
|
|
18
|
-
};
|
|
19
|
-
|
|
20
|
-
const fieldName = state.editMode === "template" ? "task" : state.editMode;
|
|
21
|
-
const rawAgentName = state.agentConfigs[state.editingStep!]?.name ?? "unknown";
|
|
22
|
-
const maxAgentLen = innerW - 30;
|
|
23
|
-
const agentName = rawAgentName.length > maxAgentLen
|
|
24
|
-
? rawAgentName.slice(0, maxAgentLen - 1) + "…"
|
|
25
|
-
: rawAgentName;
|
|
26
|
-
const stepLabel = state.mode === "single"
|
|
27
|
-
? agentName
|
|
28
|
-
: state.mode === "parallel"
|
|
29
|
-
? `Task ${state.editingStep! + 1}: ${agentName}`
|
|
30
|
-
: `Step ${state.editingStep! + 1}: ${agentName}`;
|
|
31
|
-
lines.push(renderHeader(state, ` Editing ${fieldName} (${stepLabel}) `));
|
|
32
|
-
lines.push(row(state, ""));
|
|
33
|
-
|
|
34
|
-
const editorLines = renderEditor(state.editState, textWidth, EDIT_VIEWPORT_HEIGHT);
|
|
35
|
-
for (const line of editorLines) {
|
|
36
|
-
lines.push(row(state, ` ${line}`));
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
const linesBelow = wrapped.length - state.editState.viewportOffset - EDIT_VIEWPORT_HEIGHT;
|
|
40
|
-
const hasMore = linesBelow > 0;
|
|
41
|
-
const hasLess = state.editState.viewportOffset > 0;
|
|
42
|
-
let scrollInfo = "";
|
|
43
|
-
if (hasLess) scrollInfo += "↑";
|
|
44
|
-
if (hasMore) scrollInfo += `↓ ${linesBelow}+`;
|
|
45
|
-
|
|
46
|
-
lines.push(row(state, ""));
|
|
47
|
-
const footerText = scrollInfo
|
|
48
|
-
? ` [Esc] Done • [Ctrl+C] Discard • ${scrollInfo} `
|
|
49
|
-
: " [Esc] Done • [Ctrl+C] Discard ";
|
|
50
|
-
lines.push(renderFooter(state, footerText));
|
|
51
|
-
|
|
52
|
-
return lines;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
export function renderModelSelector(state: ChainClarifyState): string[] {
|
|
56
|
-
const th = state.theme;
|
|
57
|
-
const lines: string[] = [];
|
|
58
|
-
|
|
59
|
-
lines.push(renderHeader(state, ` Select Model (${getStepLabel(state, state.editingStep!)}) `));
|
|
60
|
-
lines.push(row(state, ""));
|
|
61
|
-
const searchPrefix = th.fg("dim", "Search: ");
|
|
62
|
-
const cursor = "\x1b[7m \x1b[27m";
|
|
63
|
-
lines.push(row(state, ` ${searchPrefix}${state.modelSearchQuery}${cursor}`));
|
|
64
|
-
lines.push(row(state, ""));
|
|
65
|
-
|
|
66
|
-
const currentModel = getEffectiveModel(state, state.editingStep!);
|
|
67
|
-
const currentModelBase = splitKnownThinkingSuffix(currentModel).baseModel;
|
|
68
|
-
const currentLabel = th.fg("dim", "Current: ");
|
|
69
|
-
lines.push(row(state, ` ${currentLabel}${th.fg("warning", currentModel)}`));
|
|
70
|
-
lines.push(row(state, ""));
|
|
71
|
-
|
|
72
|
-
if (state.filteredModels.length === 0) {
|
|
73
|
-
lines.push(row(state, ` ${th.fg("dim", "No matching models")}`));
|
|
74
|
-
} else {
|
|
75
|
-
const maxVisible = MODEL_SELECTOR_HEIGHT;
|
|
76
|
-
let startIdx = 0;
|
|
77
|
-
if (state.filteredModels.length > maxVisible) {
|
|
78
|
-
startIdx = Math.max(0, state.modelSelectedIndex - Math.floor(maxVisible / 2));
|
|
79
|
-
startIdx = Math.min(startIdx, state.filteredModels.length - maxVisible);
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
const endIdx = Math.min(startIdx + maxVisible, state.filteredModels.length);
|
|
83
|
-
if (startIdx > 0) {
|
|
84
|
-
lines.push(row(state, ` ${th.fg("dim", ` ↑ ${startIdx} more`)}`));
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
for (let i = startIdx; i < endIdx; i++) {
|
|
88
|
-
const model = state.filteredModels[i]!;
|
|
89
|
-
const isSelected = i === state.modelSelectedIndex;
|
|
90
|
-
const isCurrent = model.fullId === currentModelBase || model.id === currentModelBase;
|
|
91
|
-
const prefix = isSelected ? th.fg("accent", "→ ") : " ";
|
|
92
|
-
const modelText = isSelected ? th.fg("accent", model.id) : model.id;
|
|
93
|
-
const providerBadge = th.fg("dim", ` [${model.provider}]`);
|
|
94
|
-
const currentBadge = isCurrent ? th.fg("success", " current") : "";
|
|
95
|
-
lines.push(row(state, ` ${prefix}${modelText}${providerBadge}${currentBadge}`));
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
const remaining = state.filteredModels.length - endIdx;
|
|
99
|
-
if (remaining > 0) {
|
|
100
|
-
lines.push(row(state, ` ${th.fg("dim", ` ↓ ${remaining} more`)}`));
|
|
101
|
-
}
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
for (let i = lines.length; i < 18; i++) {
|
|
105
|
-
lines.push(row(state, ""));
|
|
106
|
-
}
|
|
107
|
-
lines.push(renderFooter(state, " [Enter] Select • [Esc] Cancel • Type to search "));
|
|
108
|
-
return lines;
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
export function renderThinkingSelector(state: ChainClarifyState): string[] {
|
|
112
|
-
const th = state.theme;
|
|
113
|
-
const lines: string[] = [];
|
|
114
|
-
|
|
115
|
-
lines.push(renderHeader(state, ` Thinking Level (${getStepLabel(state, state.editingStep!)}) `));
|
|
116
|
-
lines.push(row(state, ""));
|
|
117
|
-
const currentModel = getEffectiveModel(state, state.editingStep!);
|
|
118
|
-
lines.push(row(state, ` ${th.fg("dim", "Model: ")}${th.fg("accent", currentModel)}`));
|
|
119
|
-
lines.push(row(state, ""));
|
|
120
|
-
lines.push(row(state, ` ${th.fg("dim", "Select thinking level (extended thinking budget):")}`));
|
|
121
|
-
lines.push(row(state, ""));
|
|
122
|
-
|
|
123
|
-
const levelDescriptions: Record<ThinkingLevel, string> = {
|
|
124
|
-
off: "No extended thinking",
|
|
125
|
-
minimal: "Brief reasoning",
|
|
126
|
-
low: "Light reasoning",
|
|
127
|
-
medium: "Moderate reasoning",
|
|
128
|
-
high: "Deep reasoning",
|
|
129
|
-
xhigh: "Maximum reasoning (ultrathink)",
|
|
130
|
-
};
|
|
131
|
-
const levels = getAvailableThinkingLevels(state, state.editingStep!);
|
|
132
|
-
if (levels.length === 0) {
|
|
133
|
-
lines.push(row(state, ` ${th.fg("dim", "No supported thinking levels")}`));
|
|
134
|
-
} else {
|
|
135
|
-
for (let i = 0; i < levels.length; i++) {
|
|
136
|
-
const level = levels[i]!;
|
|
137
|
-
const isSelected = i === state.thinkingSelectedIndex;
|
|
138
|
-
const prefix = isSelected ? th.fg("accent", "→ ") : " ";
|
|
139
|
-
const levelText = isSelected ? th.fg("accent", level) : level;
|
|
140
|
-
const desc = th.fg("dim", ` - ${levelDescriptions[level]}`);
|
|
141
|
-
lines.push(row(state, ` ${prefix}${levelText}${desc}`));
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
for (let i = lines.length; i < 16; i++) {
|
|
146
|
-
lines.push(row(state, ""));
|
|
147
|
-
}
|
|
148
|
-
const footerText = levels.length === 0
|
|
149
|
-
? " [Esc] Cancel "
|
|
150
|
-
: " [Enter] Select • [Esc] Cancel • ↑↓ Navigate ";
|
|
151
|
-
lines.push(renderFooter(state, footerText));
|
|
152
|
-
return lines;
|
|
153
|
-
}
|
|
154
|
-
|
|
155
|
-
export function renderSkillSelector(state: ChainClarifyState): string[] {
|
|
156
|
-
const innerW = state.width - 2;
|
|
157
|
-
const th = state.theme;
|
|
158
|
-
const lines: string[] = [];
|
|
159
|
-
|
|
160
|
-
lines.push(renderHeader(state, ` Select Skills (${getStepLabel(state, state.editingStep!)}) `));
|
|
161
|
-
lines.push(row(state, ""));
|
|
162
|
-
const cursor = "\x1b[7m \x1b[27m";
|
|
163
|
-
lines.push(row(state, ` ${th.fg("dim", "Search: ")}${state.skillSearchQuery}${cursor}`));
|
|
164
|
-
lines.push(row(state, ""));
|
|
165
|
-
|
|
166
|
-
const selected = [...state.skillSelectedNames].join(", ") || th.fg("dim", "(none)");
|
|
167
|
-
lines.push(row(state, ` ${th.fg("dim", "Selected: ")}${truncateToWidth(selected, innerW - 12)}`));
|
|
168
|
-
lines.push(row(state, ""));
|
|
169
|
-
|
|
170
|
-
const selectorHeight = 10;
|
|
171
|
-
if (state.filteredSkills.length === 0) {
|
|
172
|
-
lines.push(row(state, ` ${th.fg("dim", "No matching skills")}`));
|
|
173
|
-
} else {
|
|
174
|
-
let startIdx = 0;
|
|
175
|
-
if (state.filteredSkills.length > selectorHeight) {
|
|
176
|
-
startIdx = Math.max(0, state.skillCursorIndex - Math.floor(selectorHeight / 2));
|
|
177
|
-
startIdx = Math.min(startIdx, state.filteredSkills.length - selectorHeight);
|
|
178
|
-
}
|
|
179
|
-
const endIdx = Math.min(startIdx + selectorHeight, state.filteredSkills.length);
|
|
180
|
-
if (startIdx > 0) lines.push(row(state, ` ${th.fg("dim", ` ↑ ${startIdx} more`)}`));
|
|
181
|
-
|
|
182
|
-
for (let i = startIdx; i < endIdx; i++) {
|
|
183
|
-
const skill = state.filteredSkills[i]!;
|
|
184
|
-
const isCursor = i === state.skillCursorIndex;
|
|
185
|
-
const isSelected = state.skillSelectedNames.has(skill.name);
|
|
186
|
-
const prefix = isCursor ? th.fg("accent", "→ ") : " ";
|
|
187
|
-
const checkbox = isSelected ? th.fg("success", "[x]") : "[ ]";
|
|
188
|
-
const nameText = isCursor ? th.fg("accent", skill.name) : skill.name;
|
|
189
|
-
const sourceBadge = th.fg("dim", ` [${skill.source}]`);
|
|
190
|
-
const desc = skill.description ? th.fg("dim", ` - ${truncateToWidth(skill.description, 25)}`) : "";
|
|
191
|
-
lines.push(row(state, ` ${prefix}${checkbox} ${nameText}${sourceBadge}${desc}`));
|
|
192
|
-
}
|
|
193
|
-
|
|
194
|
-
const remaining = state.filteredSkills.length - endIdx;
|
|
195
|
-
if (remaining > 0) lines.push(row(state, ` ${th.fg("dim", ` ↓ ${remaining} more`)}`));
|
|
196
|
-
}
|
|
197
|
-
|
|
198
|
-
for (let i = lines.length; i < 18; i++) {
|
|
199
|
-
lines.push(row(state, ""));
|
|
200
|
-
}
|
|
201
|
-
lines.push(renderFooter(state, " [Enter] Confirm • [Space] Toggle • [Esc] Cancel "));
|
|
202
|
-
return lines;
|
|
203
|
-
}
|