@bastani/atomic 0.7.17 → 0.8.0-0
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 +4183 -0
- package/README.md +655 -0
- package/dist/builtin/intercom/CHANGELOG.md +195 -0
- package/dist/builtin/intercom/LICENSE +21 -0
- package/dist/builtin/intercom/README.md +484 -0
- package/dist/builtin/intercom/broker/broker.ts +346 -0
- package/dist/builtin/intercom/broker/client.ts +535 -0
- package/dist/builtin/intercom/broker/framing.ts +57 -0
- package/dist/builtin/intercom/broker/paths.ts +21 -0
- package/dist/builtin/intercom/broker/spawn.ts +308 -0
- package/dist/builtin/intercom/config.ts +109 -0
- package/dist/builtin/intercom/index.ts +1780 -0
- package/dist/builtin/intercom/package.json +59 -0
- package/dist/builtin/intercom/reply-tracker.ts +102 -0
- package/dist/builtin/intercom/skills/intercom/SKILL.md +513 -0
- package/dist/builtin/intercom/types.ts +46 -0
- package/dist/builtin/intercom/ui/compose.ts +139 -0
- package/dist/builtin/intercom/ui/inline-message.ts +76 -0
- package/dist/builtin/intercom/ui/session-list.ts +162 -0
- package/dist/builtin/mcp/CHANGELOG.md +346 -0
- package/dist/builtin/mcp/LICENSE +21 -0
- package/dist/builtin/mcp/OAUTH.md +324 -0
- package/dist/builtin/mcp/README.md +373 -0
- package/dist/builtin/mcp/agent-dir.ts +21 -0
- package/dist/builtin/mcp/app-bridge.bundle.js +67 -0
- package/dist/builtin/mcp/cli.js +186 -0
- package/dist/builtin/mcp/commands.ts +420 -0
- package/dist/builtin/mcp/config.ts +667 -0
- package/dist/builtin/mcp/consent-manager.ts +64 -0
- package/dist/builtin/mcp/direct-tools.ts +427 -0
- package/dist/builtin/mcp/errors.ts +219 -0
- package/dist/builtin/mcp/glimpse-ui.ts +80 -0
- package/dist/builtin/mcp/host-html-template.ts +427 -0
- package/dist/builtin/mcp/index.ts +334 -0
- package/dist/builtin/mcp/init.ts +336 -0
- package/dist/builtin/mcp/lifecycle.ts +93 -0
- package/dist/builtin/mcp/logger.ts +169 -0
- package/dist/builtin/mcp/mcp-auth-flow.ts +362 -0
- package/dist/builtin/mcp/mcp-auth.ts +297 -0
- package/dist/builtin/mcp/mcp-callback-server.ts +284 -0
- package/dist/builtin/mcp/mcp-oauth-provider.ts +302 -0
- package/dist/builtin/mcp/mcp-panel.ts +826 -0
- package/dist/builtin/mcp/mcp-setup-panel.ts +577 -0
- package/dist/builtin/mcp/metadata-cache.ts +201 -0
- package/dist/builtin/mcp/npx-resolver.ts +424 -0
- package/dist/builtin/mcp/oauth-handler.ts +60 -0
- package/dist/builtin/mcp/onboarding-state.ts +68 -0
- package/dist/builtin/mcp/package.json +61 -0
- package/dist/builtin/mcp/proxy-modes.ts +803 -0
- package/dist/builtin/mcp/resource-tools.ts +17 -0
- package/dist/builtin/mcp/sampling-handler.ts +268 -0
- package/dist/builtin/mcp/server-manager.ts +375 -0
- package/dist/builtin/mcp/state.ts +41 -0
- package/dist/builtin/mcp/tool-metadata.ts +152 -0
- package/dist/builtin/mcp/tool-registrar.ts +46 -0
- package/dist/builtin/mcp/tool-result-renderer.ts +65 -0
- package/dist/builtin/mcp/types.ts +441 -0
- package/dist/builtin/mcp/ui-resource-handler.ts +145 -0
- package/dist/builtin/mcp/ui-server.ts +623 -0
- package/dist/builtin/mcp/ui-session.ts +384 -0
- package/dist/builtin/mcp/ui-stream-types.ts +89 -0
- package/dist/builtin/mcp/utils.ts +129 -0
- package/dist/builtin/subagents/CHANGELOG.md +1019 -0
- package/dist/builtin/subagents/README.md +991 -0
- package/dist/builtin/subagents/agents/code-simplifier.md +84 -0
- package/dist/builtin/subagents/agents/codebase-analyzer.md +158 -0
- package/dist/builtin/subagents/agents/codebase-locator.md +113 -0
- package/dist/builtin/subagents/agents/codebase-online-researcher.md +317 -0
- package/dist/builtin/subagents/agents/codebase-pattern-finder.md +236 -0
- package/dist/builtin/subagents/agents/codebase-research-analyzer.md +181 -0
- package/dist/builtin/subagents/agents/codebase-research-locator.md +146 -0
- package/dist/builtin/subagents/agents/debugger.md +92 -0
- package/dist/builtin/subagents/package.json +67 -0
- package/dist/builtin/subagents/prompts/gather-context-and-clarify.md +20 -0
- package/dist/builtin/subagents/prompts/parallel-cleanup.md +60 -0
- package/dist/builtin/subagents/prompts/parallel-context-build.md +55 -0
- package/dist/builtin/subagents/prompts/parallel-handoff-plan.md +77 -0
- package/dist/builtin/subagents/prompts/parallel-research.md +58 -0
- package/dist/builtin/subagents/prompts/parallel-review.md +52 -0
- package/dist/builtin/subagents/prompts/review-loop.md +48 -0
- package/dist/builtin/subagents/skills/subagent/SKILL.md +734 -0
- package/dist/builtin/subagents/src/agents/agent-management.ts +644 -0
- package/dist/builtin/subagents/src/agents/agent-scope.ts +6 -0
- package/dist/builtin/subagents/src/agents/agent-selection.ts +23 -0
- package/dist/builtin/subagents/src/agents/agent-serializer.ts +84 -0
- package/dist/builtin/subagents/src/agents/agents.ts +809 -0
- package/dist/builtin/subagents/src/agents/chain-serializer.ts +137 -0
- package/dist/builtin/subagents/src/agents/frontmatter.ts +29 -0
- package/dist/builtin/subagents/src/agents/identity.ts +30 -0
- package/dist/builtin/subagents/src/agents/skills.ts +630 -0
- package/dist/builtin/subagents/src/extension/control-notices.ts +92 -0
- package/dist/builtin/subagents/src/extension/doctor.ts +199 -0
- package/dist/builtin/subagents/src/extension/index.ts +586 -0
- package/dist/builtin/subagents/src/extension/schemas.ts +168 -0
- package/dist/builtin/subagents/src/intercom/intercom-bridge.ts +378 -0
- package/dist/builtin/subagents/src/intercom/result-intercom.ts +269 -0
- package/dist/builtin/subagents/src/runs/background/async-execution.ts +612 -0
- package/dist/builtin/subagents/src/runs/background/async-job-tracker.ts +267 -0
- package/dist/builtin/subagents/src/runs/background/async-resume.ts +332 -0
- package/dist/builtin/subagents/src/runs/background/async-status.ts +295 -0
- package/dist/builtin/subagents/src/runs/background/completion-dedupe.ts +63 -0
- package/dist/builtin/subagents/src/runs/background/notify.ts +108 -0
- package/dist/builtin/subagents/src/runs/background/parallel-groups.ts +45 -0
- package/dist/builtin/subagents/src/runs/background/result-watcher.ts +250 -0
- package/dist/builtin/subagents/src/runs/background/run-status.ts +193 -0
- package/dist/builtin/subagents/src/runs/background/stale-run-reconciler.ts +291 -0
- package/dist/builtin/subagents/src/runs/background/subagent-runner.ts +1760 -0
- package/dist/builtin/subagents/src/runs/background/top-level-async.ts +13 -0
- package/dist/builtin/subagents/src/runs/foreground/chain-clarify.ts +1333 -0
- package/dist/builtin/subagents/src/runs/foreground/chain-execution.ts +932 -0
- package/dist/builtin/subagents/src/runs/foreground/execution.ts +902 -0
- package/dist/builtin/subagents/src/runs/foreground/subagent-executor.ts +2231 -0
- package/dist/builtin/subagents/src/runs/shared/completion-guard.ts +125 -0
- package/dist/builtin/subagents/src/runs/shared/long-running-guard.ts +175 -0
- package/dist/builtin/subagents/src/runs/shared/model-fallback.ts +103 -0
- package/dist/builtin/subagents/src/runs/shared/parallel-utils.ts +108 -0
- package/dist/builtin/subagents/src/runs/shared/pi-args.ts +163 -0
- package/dist/builtin/subagents/src/runs/shared/pi-spawn.ts +115 -0
- package/dist/builtin/subagents/src/runs/shared/run-history.ts +56 -0
- package/dist/builtin/subagents/src/runs/shared/single-output.ts +154 -0
- package/dist/builtin/subagents/src/runs/shared/subagent-control.ts +226 -0
- package/dist/builtin/subagents/src/runs/shared/subagent-prompt-runtime.ts +152 -0
- package/dist/builtin/subagents/src/runs/shared/worktree.ts +577 -0
- package/dist/builtin/subagents/src/shared/artifacts.ts +99 -0
- package/dist/builtin/subagents/src/shared/atomic-json.ts +16 -0
- package/dist/builtin/subagents/src/shared/file-coalescer.ts +40 -0
- package/dist/builtin/subagents/src/shared/fork-context.ts +76 -0
- package/dist/builtin/subagents/src/shared/formatters.ts +133 -0
- package/dist/builtin/subagents/src/shared/jsonl-writer.ts +81 -0
- package/dist/builtin/subagents/src/shared/model-info.ts +78 -0
- package/dist/builtin/subagents/src/shared/post-exit-stdio-guard.ts +85 -0
- package/dist/builtin/subagents/src/shared/session-identity.ts +10 -0
- package/dist/builtin/subagents/src/shared/session-tokens.ts +44 -0
- package/dist/builtin/subagents/src/shared/settings.ts +397 -0
- package/dist/builtin/subagents/src/shared/status-format.ts +49 -0
- package/dist/builtin/subagents/src/shared/types.ts +732 -0
- package/dist/builtin/subagents/src/shared/utils.ts +440 -0
- package/dist/builtin/subagents/src/slash/prompt-template-bridge.ts +397 -0
- package/dist/builtin/subagents/src/slash/slash-bridge.ts +174 -0
- package/dist/builtin/subagents/src/slash/slash-commands.ts +528 -0
- package/dist/builtin/subagents/src/slash/slash-live-state.ts +292 -0
- package/dist/builtin/subagents/src/tui/render-helpers.ts +80 -0
- package/dist/builtin/subagents/src/tui/render.ts +1257 -0
- package/dist/builtin/web-access/CHANGELOG.md +387 -0
- package/dist/builtin/web-access/LICENSE +21 -0
- package/dist/builtin/web-access/README.md +346 -0
- package/dist/builtin/web-access/activity.ts +101 -0
- package/dist/builtin/web-access/chrome-cookies.ts +322 -0
- package/dist/builtin/web-access/code-search.ts +107 -0
- package/dist/builtin/web-access/curator-page.ts +3359 -0
- package/dist/builtin/web-access/curator-server.ts +605 -0
- package/dist/builtin/web-access/exa.ts +521 -0
- package/dist/builtin/web-access/extract.ts +701 -0
- package/dist/builtin/web-access/gemini-api.ts +113 -0
- package/dist/builtin/web-access/gemini-search.ts +362 -0
- package/dist/builtin/web-access/gemini-url-context.ts +126 -0
- package/dist/builtin/web-access/gemini-web-config.ts +54 -0
- package/dist/builtin/web-access/gemini-web.ts +396 -0
- package/dist/builtin/web-access/github-api.ts +196 -0
- package/dist/builtin/web-access/github-extract.ts +635 -0
- package/dist/builtin/web-access/index.ts +2347 -0
- package/dist/builtin/web-access/package.json +54 -0
- package/dist/builtin/web-access/pdf-extract.ts +192 -0
- package/dist/builtin/web-access/perplexity.ts +196 -0
- package/dist/builtin/web-access/rsc-extract.ts +338 -0
- package/dist/builtin/web-access/storage.ts +72 -0
- package/dist/builtin/web-access/summary-review.ts +276 -0
- package/dist/builtin/web-access/utils.ts +44 -0
- package/dist/builtin/web-access/video-extract.ts +379 -0
- package/dist/builtin/web-access/youtube-extract.ts +311 -0
- package/dist/builtin/workflows/CHANGELOG.md +20 -0
- package/dist/builtin/workflows/README.md +323 -0
- package/dist/builtin/workflows/builtin/deep-research-codebase.ts +567 -0
- package/dist/builtin/workflows/builtin/index.ts +10 -0
- package/dist/builtin/workflows/builtin/open-claude-design.ts +985 -0
- package/dist/builtin/workflows/builtin/ralph.ts +613 -0
- package/dist/builtin/workflows/package.json +89 -0
- package/dist/builtin/workflows/skills/create-spec/SKILL.md +247 -0
- package/dist/builtin/workflows/skills/impeccable/SKILL.md +173 -0
- package/dist/builtin/workflows/skills/impeccable/reference/adapt.md +190 -0
- package/dist/builtin/workflows/skills/impeccable/reference/animate.md +175 -0
- package/dist/builtin/workflows/skills/impeccable/reference/audit.md +133 -0
- package/dist/builtin/workflows/skills/impeccable/reference/bolder.md +113 -0
- package/dist/builtin/workflows/skills/impeccable/reference/brand.md +118 -0
- package/dist/builtin/workflows/skills/impeccable/reference/clarify.md +174 -0
- package/dist/builtin/workflows/skills/impeccable/reference/codex.md +105 -0
- package/dist/builtin/workflows/skills/impeccable/reference/cognitive-load.md +106 -0
- package/dist/builtin/workflows/skills/impeccable/reference/color-and-contrast.md +105 -0
- package/dist/builtin/workflows/skills/impeccable/reference/colorize.md +154 -0
- package/dist/builtin/workflows/skills/impeccable/reference/craft.md +123 -0
- package/dist/builtin/workflows/skills/impeccable/reference/critique.md +261 -0
- package/dist/builtin/workflows/skills/impeccable/reference/delight.md +302 -0
- package/dist/builtin/workflows/skills/impeccable/reference/distill.md +111 -0
- package/dist/builtin/workflows/skills/impeccable/reference/document.md +427 -0
- package/dist/builtin/workflows/skills/impeccable/reference/extract.md +69 -0
- package/dist/builtin/workflows/skills/impeccable/reference/harden.md +347 -0
- package/dist/builtin/workflows/skills/impeccable/reference/heuristics-scoring.md +234 -0
- package/dist/builtin/workflows/skills/impeccable/reference/interaction-design.md +195 -0
- package/dist/builtin/workflows/skills/impeccable/reference/layout.md +141 -0
- package/dist/builtin/workflows/skills/impeccable/reference/live.md +622 -0
- package/dist/builtin/workflows/skills/impeccable/reference/motion-design.md +109 -0
- package/dist/builtin/workflows/skills/impeccable/reference/onboard.md +234 -0
- package/dist/builtin/workflows/skills/impeccable/reference/optimize.md +258 -0
- package/dist/builtin/workflows/skills/impeccable/reference/overdrive.md +130 -0
- package/dist/builtin/workflows/skills/impeccable/reference/personas.md +179 -0
- package/dist/builtin/workflows/skills/impeccable/reference/polish.md +242 -0
- package/dist/builtin/workflows/skills/impeccable/reference/product.md +62 -0
- package/dist/builtin/workflows/skills/impeccable/reference/quieter.md +99 -0
- package/dist/builtin/workflows/skills/impeccable/reference/responsive-design.md +114 -0
- package/dist/builtin/workflows/skills/impeccable/reference/shape.md +165 -0
- package/dist/builtin/workflows/skills/impeccable/reference/spatial-design.md +100 -0
- package/dist/builtin/workflows/skills/impeccable/reference/teach.md +156 -0
- package/dist/builtin/workflows/skills/impeccable/reference/typeset.md +124 -0
- package/dist/builtin/workflows/skills/impeccable/reference/typography.md +159 -0
- package/dist/builtin/workflows/skills/impeccable/reference/ux-writing.md +107 -0
- package/dist/builtin/workflows/skills/impeccable/scripts/cleanup-deprecated.mjs +284 -0
- package/dist/builtin/workflows/skills/impeccable/scripts/command-metadata.json +94 -0
- package/dist/builtin/workflows/skills/impeccable/scripts/critique-storage.mjs +226 -0
- package/dist/builtin/workflows/skills/impeccable/scripts/design-parser.mjs +820 -0
- package/dist/builtin/workflows/skills/impeccable/scripts/detect-csp.mjs +198 -0
- package/dist/builtin/workflows/skills/impeccable/scripts/impeccable-paths.mjs +110 -0
- package/dist/builtin/workflows/skills/impeccable/scripts/is-generated.mjs +69 -0
- package/dist/builtin/workflows/skills/impeccable/scripts/live-accept.mjs +646 -0
- package/dist/builtin/workflows/skills/impeccable/scripts/live-browser-session.js +123 -0
- package/dist/builtin/workflows/skills/impeccable/scripts/live-browser.js +4865 -0
- package/dist/builtin/workflows/skills/impeccable/scripts/live-complete.mjs +75 -0
- package/dist/builtin/workflows/skills/impeccable/scripts/live-completion.mjs +18 -0
- package/dist/builtin/workflows/skills/impeccable/scripts/live-inject.mjs +446 -0
- package/dist/builtin/workflows/skills/impeccable/scripts/live-poll.mjs +200 -0
- package/dist/builtin/workflows/skills/impeccable/scripts/live-resume.mjs +48 -0
- package/dist/builtin/workflows/skills/impeccable/scripts/live-server.mjs +847 -0
- package/dist/builtin/workflows/skills/impeccable/scripts/live-session-store.mjs +254 -0
- package/dist/builtin/workflows/skills/impeccable/scripts/live-status.mjs +47 -0
- package/dist/builtin/workflows/skills/impeccable/scripts/live-wrap.mjs +632 -0
- package/dist/builtin/workflows/skills/impeccable/scripts/live.mjs +247 -0
- package/dist/builtin/workflows/skills/impeccable/scripts/load-context.mjs +141 -0
- package/dist/builtin/workflows/skills/impeccable/scripts/modern-screenshot.umd.js +14 -0
- package/dist/builtin/workflows/skills/impeccable/scripts/pin.mjs +214 -0
- package/dist/builtin/workflows/skills/playwright-cli/SKILL.md +392 -0
- package/dist/builtin/workflows/skills/playwright-cli/references/element-attributes.md +23 -0
- package/dist/builtin/workflows/skills/playwright-cli/references/playwright-tests.md +39 -0
- package/dist/builtin/workflows/skills/playwright-cli/references/request-mocking.md +87 -0
- package/dist/builtin/workflows/skills/playwright-cli/references/running-code.md +241 -0
- package/dist/builtin/workflows/skills/playwright-cli/references/session-management.md +225 -0
- package/dist/builtin/workflows/skills/playwright-cli/references/spec-driven-testing.md +305 -0
- package/dist/builtin/workflows/skills/playwright-cli/references/storage-state.md +275 -0
- package/dist/builtin/workflows/skills/playwright-cli/references/test-generation.md +134 -0
- package/dist/builtin/workflows/skills/playwright-cli/references/tracing.md +139 -0
- package/dist/builtin/workflows/skills/playwright-cli/references/video-recording.md +143 -0
- package/dist/builtin/workflows/skills/prompt-engineer/SKILL.md +263 -0
- package/dist/builtin/workflows/skills/prompt-engineer/references/advanced_patterns.md +271 -0
- package/dist/builtin/workflows/skills/prompt-engineer/references/core_prompting.md +137 -0
- package/dist/builtin/workflows/skills/prompt-engineer/references/quality_improvement.md +193 -0
- package/dist/builtin/workflows/skills/research-codebase/SKILL.md +226 -0
- package/dist/builtin/workflows/skills/tdd/SKILL.md +109 -0
- package/dist/builtin/workflows/skills/tdd/deep-modules.md +33 -0
- package/dist/builtin/workflows/skills/tdd/interface-design.md +31 -0
- package/dist/builtin/workflows/skills/tdd/mocking.md +59 -0
- package/dist/builtin/workflows/skills/tdd/refactoring.md +10 -0
- package/dist/builtin/workflows/skills/tdd/tests.md +61 -0
- package/dist/builtin/workflows/skills/workflow/SKILL.md +255 -0
- package/dist/builtin/workflows/skills/workflow/references/context-engineering/advanced-evaluation.md +404 -0
- package/dist/builtin/workflows/skills/workflow/references/context-engineering/bdi-mental-states.md +313 -0
- package/dist/builtin/workflows/skills/workflow/references/context-engineering/context-compression.md +274 -0
- package/dist/builtin/workflows/skills/workflow/references/context-engineering/context-degradation.md +208 -0
- package/dist/builtin/workflows/skills/workflow/references/context-engineering/context-fundamentals.md +203 -0
- package/dist/builtin/workflows/skills/workflow/references/context-engineering/context-optimization.md +197 -0
- package/dist/builtin/workflows/skills/workflow/references/context-engineering/evaluation.md +253 -0
- package/dist/builtin/workflows/skills/workflow/references/context-engineering/filesystem-context.md +289 -0
- package/dist/builtin/workflows/skills/workflow/references/context-engineering/hosted-agents.md +262 -0
- package/dist/builtin/workflows/skills/workflow/references/context-engineering/memory-systems.md +221 -0
- package/dist/builtin/workflows/skills/workflow/references/context-engineering/multi-agent-patterns.md +259 -0
- package/dist/builtin/workflows/skills/workflow/references/context-engineering/project-development.md +293 -0
- package/dist/builtin/workflows/skills/workflow/references/context-engineering/tool-design.md +273 -0
- package/dist/builtin/workflows/skills/workflow/references/context-engineering.md +23 -0
- package/dist/builtin/workflows/skills/workflow/references/design-checklist.md +79 -0
- package/dist/builtin/workflows/skills/workflow/references/running-workflows.md +107 -0
- package/dist/builtin/workflows/skills/workflow/references/sdk-authoring.md +140 -0
- package/dist/builtin/workflows/src/extension/background-ui-adapter.ts +168 -0
- package/dist/builtin/workflows/src/extension/companions.ts +210 -0
- package/dist/builtin/workflows/src/extension/config-loader.ts +493 -0
- package/dist/builtin/workflows/src/extension/discovery.ts +501 -0
- package/dist/builtin/workflows/src/extension/dispatcher.ts +173 -0
- package/dist/builtin/workflows/src/extension/index.ts +2143 -0
- package/dist/builtin/workflows/src/extension/mcp.ts +110 -0
- package/dist/builtin/workflows/src/extension/render-call.ts +39 -0
- package/dist/builtin/workflows/src/extension/render-result.ts +214 -0
- package/dist/builtin/workflows/src/extension/renderers.ts +87 -0
- package/dist/builtin/workflows/src/extension/runtime.ts +360 -0
- package/dist/builtin/workflows/src/extension/status-writer.ts +167 -0
- package/dist/builtin/workflows/src/extension/wiring.ts +555 -0
- package/dist/builtin/workflows/src/extension/workflow-schema.ts +102 -0
- package/dist/builtin/workflows/src/index.ts +25 -0
- package/dist/builtin/workflows/src/intercom/intercom-bridge.ts +93 -0
- package/dist/builtin/workflows/src/intercom/intercom-routing.ts +125 -0
- package/dist/builtin/workflows/src/intercom/result-intercom.ts +240 -0
- package/dist/builtin/workflows/src/runs/background/cancellation-registry.ts +113 -0
- package/dist/builtin/workflows/src/runs/background/job-tracker.ts +81 -0
- package/dist/builtin/workflows/src/runs/background/runner.ts +152 -0
- package/dist/builtin/workflows/src/runs/background/status.ts +354 -0
- package/dist/builtin/workflows/src/runs/foreground/executor.ts +1522 -0
- package/dist/builtin/workflows/src/runs/foreground/stage-control-registry.ts +233 -0
- package/dist/builtin/workflows/src/runs/foreground/stage-runner.ts +712 -0
- package/dist/builtin/workflows/src/runs/shared/concurrency.ts +76 -0
- package/dist/builtin/workflows/src/runs/shared/graph-inference.ts +69 -0
- package/dist/builtin/workflows/src/runs/shared/model-fallback.ts +293 -0
- package/dist/builtin/workflows/src/runs/shared/validate-inputs.ts +83 -0
- package/dist/builtin/workflows/src/runs/shared/workflow-runner.ts +170 -0
- package/dist/builtin/workflows/src/runs/shared/worktree.ts +577 -0
- package/dist/builtin/workflows/src/shared/persistence-compaction-policy.ts +72 -0
- package/dist/builtin/workflows/src/shared/persistence-restore.ts +257 -0
- package/dist/builtin/workflows/src/shared/persistence-session-entries.ts +145 -0
- package/dist/builtin/workflows/src/shared/render-inputs-schema.ts +196 -0
- package/dist/builtin/workflows/src/shared/store-types.ts +160 -0
- package/dist/builtin/workflows/src/shared/store.ts +579 -0
- package/dist/builtin/workflows/src/shared/types.ts +566 -0
- package/dist/builtin/workflows/src/tui/chat-surface-message.ts +224 -0
- package/dist/builtin/workflows/src/tui/chat-surface.ts +511 -0
- package/dist/builtin/workflows/src/tui/color-utils.ts +64 -0
- package/dist/builtin/workflows/src/tui/connectors.ts +88 -0
- package/dist/builtin/workflows/src/tui/dispatch-confirm.ts +307 -0
- package/dist/builtin/workflows/src/tui/edge.ts +24 -0
- package/dist/builtin/workflows/src/tui/graph-canvas.ts +108 -0
- package/dist/builtin/workflows/src/tui/graph-theme.ts +283 -0
- package/dist/builtin/workflows/src/tui/graph-view.ts +1217 -0
- package/dist/builtin/workflows/src/tui/header.ts +172 -0
- package/dist/builtin/workflows/src/tui/inline-form-card.ts +421 -0
- package/dist/builtin/workflows/src/tui/inline-form-editor.ts +638 -0
- package/dist/builtin/workflows/src/tui/inline-form-overlay.ts +326 -0
- package/dist/builtin/workflows/src/tui/inline-form-store.ts +78 -0
- package/dist/builtin/workflows/src/tui/inputs-overlay.ts +163 -0
- package/dist/builtin/workflows/src/tui/inputs-picker.ts +888 -0
- package/dist/builtin/workflows/src/tui/keybindings-adapter.ts +154 -0
- package/dist/builtin/workflows/src/tui/layout.ts +153 -0
- package/dist/builtin/workflows/src/tui/node-card.ts +274 -0
- package/dist/builtin/workflows/src/tui/overlay-adapter.ts +277 -0
- package/dist/builtin/workflows/src/tui/prompt-card.ts +501 -0
- package/dist/builtin/workflows/src/tui/renderers.ts +15 -0
- package/dist/builtin/workflows/src/tui/run-detail.ts +339 -0
- package/dist/builtin/workflows/src/tui/session-confirm.ts +202 -0
- package/dist/builtin/workflows/src/tui/session-list.ts +32 -0
- package/dist/builtin/workflows/src/tui/session-overlays.ts +239 -0
- package/dist/builtin/workflows/src/tui/session-picker.ts +399 -0
- package/dist/builtin/workflows/src/tui/stage-chat-view.ts +1873 -0
- package/dist/builtin/workflows/src/tui/status-helpers.ts +73 -0
- package/dist/builtin/workflows/src/tui/status-list.ts +361 -0
- package/dist/builtin/workflows/src/tui/store-widget-installer.ts +206 -0
- package/dist/builtin/workflows/src/tui/switcher.ts +121 -0
- package/dist/builtin/workflows/src/tui/text-helpers.ts +31 -0
- package/dist/builtin/workflows/src/tui/toast.ts +106 -0
- package/dist/builtin/workflows/src/tui/widget.ts +348 -0
- package/dist/builtin/workflows/src/tui/workflow-attach-pane.ts +285 -0
- package/dist/builtin/workflows/src/tui/workflow-list.ts +224 -0
- package/dist/builtin/workflows/src/workflows/define-workflow.ts +150 -0
- package/dist/builtin/workflows/src/workflows/identity.ts +39 -0
- package/dist/builtin/workflows/src/workflows/registry.ts +113 -0
- package/dist/bun/cli.d.ts +3 -0
- package/dist/bun/cli.d.ts.map +1 -0
- package/dist/bun/cli.js +9 -0
- package/dist/bun/cli.js.map +1 -0
- package/dist/bun/register-bedrock.d.ts +2 -0
- package/dist/bun/register-bedrock.d.ts.map +1 -0
- package/dist/bun/register-bedrock.js +4 -0
- package/dist/bun/register-bedrock.js.map +1 -0
- package/dist/bun/restore-sandbox-env.d.ts +13 -0
- package/dist/bun/restore-sandbox-env.d.ts.map +1 -0
- package/dist/bun/restore-sandbox-env.js +32 -0
- package/dist/bun/restore-sandbox-env.js.map +1 -0
- package/dist/cli/args.d.ts +53 -0
- package/dist/cli/args.d.ts.map +1 -0
- package/dist/cli/args.js +341 -0
- package/dist/cli/args.js.map +1 -0
- package/dist/cli/config-selector.d.ts +14 -0
- package/dist/cli/config-selector.d.ts.map +1 -0
- package/dist/cli/config-selector.js +31 -0
- package/dist/cli/config-selector.js.map +1 -0
- package/dist/cli/file-processor.d.ts +15 -0
- package/dist/cli/file-processor.d.ts.map +1 -0
- package/dist/cli/file-processor.js +83 -0
- package/dist/cli/file-processor.js.map +1 -0
- package/dist/cli/initial-message.d.ts +18 -0
- package/dist/cli/initial-message.d.ts.map +1 -0
- package/dist/cli/initial-message.js +22 -0
- package/dist/cli/initial-message.js.map +1 -0
- package/dist/cli/list-models.d.ts +9 -0
- package/dist/cli/list-models.d.ts.map +1 -0
- package/dist/cli/list-models.js +98 -0
- package/dist/cli/list-models.js.map +1 -0
- package/dist/cli/session-picker.d.ts +9 -0
- package/dist/cli/session-picker.d.ts.map +1 -0
- package/dist/cli/session-picker.js +35 -0
- package/dist/cli/session-picker.js.map +1 -0
- package/dist/cli.d.ts +3 -0
- package/dist/cli.d.ts.map +1 -0
- package/dist/cli.js +20 -0
- package/dist/cli.js.map +1 -0
- package/dist/config.d.ts +102 -0
- package/dist/config.d.ts.map +1 -0
- package/dist/config.js +411 -0
- package/dist/config.js.map +1 -0
- package/dist/core/agent-session-runtime.d.ts +117 -0
- package/dist/core/agent-session-runtime.d.ts.map +1 -0
- package/dist/core/agent-session-runtime.js +292 -0
- package/dist/core/agent-session-runtime.js.map +1 -0
- package/dist/core/agent-session-services.d.ts +86 -0
- package/dist/core/agent-session-services.d.ts.map +1 -0
- package/dist/core/agent-session-services.js +117 -0
- package/dist/core/agent-session-services.js.map +1 -0
- package/dist/core/agent-session.d.ts +595 -0
- package/dist/core/agent-session.d.ts.map +1 -0
- package/dist/core/agent-session.js +2518 -0
- package/dist/core/agent-session.js.map +1 -0
- package/dist/core/auth-guidance.d.ts +5 -0
- package/dist/core/auth-guidance.d.ts.map +1 -0
- package/dist/core/auth-guidance.js +21 -0
- package/dist/core/auth-guidance.js.map +1 -0
- package/dist/core/auth-storage.d.ts +141 -0
- package/dist/core/auth-storage.d.ts.map +1 -0
- package/dist/core/auth-storage.js +437 -0
- package/dist/core/auth-storage.js.map +1 -0
- package/dist/core/bash-executor.d.ts +32 -0
- package/dist/core/bash-executor.d.ts.map +1 -0
- package/dist/core/bash-executor.js +111 -0
- package/dist/core/bash-executor.js.map +1 -0
- package/dist/core/builtin-packages.d.ts +14 -0
- package/dist/core/builtin-packages.d.ts.map +1 -0
- package/dist/core/builtin-packages.js +113 -0
- package/dist/core/builtin-packages.js.map +1 -0
- package/dist/core/compaction/branch-summarization.d.ts +88 -0
- package/dist/core/compaction/branch-summarization.d.ts.map +1 -0
- package/dist/core/compaction/branch-summarization.js +243 -0
- package/dist/core/compaction/branch-summarization.js.map +1 -0
- package/dist/core/compaction/compaction.d.ts +121 -0
- package/dist/core/compaction/compaction.d.ts.map +1 -0
- package/dist/core/compaction/compaction.js +615 -0
- package/dist/core/compaction/compaction.js.map +1 -0
- package/dist/core/compaction/index.d.ts +7 -0
- package/dist/core/compaction/index.d.ts.map +1 -0
- package/dist/core/compaction/index.js +7 -0
- package/dist/core/compaction/index.js.map +1 -0
- package/dist/core/compaction/utils.d.ts +38 -0
- package/dist/core/compaction/utils.d.ts.map +1 -0
- package/dist/core/compaction/utils.js +153 -0
- package/dist/core/compaction/utils.js.map +1 -0
- package/dist/core/defaults.d.ts +3 -0
- package/dist/core/defaults.d.ts.map +1 -0
- package/dist/core/defaults.js +2 -0
- package/dist/core/defaults.js.map +1 -0
- package/dist/core/diagnostics.d.ts +15 -0
- package/dist/core/diagnostics.d.ts.map +1 -0
- package/dist/core/diagnostics.js +2 -0
- package/dist/core/diagnostics.js.map +1 -0
- package/dist/core/event-bus.d.ts +9 -0
- package/dist/core/event-bus.d.ts.map +1 -0
- package/dist/core/event-bus.js +25 -0
- package/dist/core/event-bus.js.map +1 -0
- package/dist/core/exec.d.ts +29 -0
- package/dist/core/exec.d.ts.map +1 -0
- package/dist/core/exec.js +75 -0
- package/dist/core/exec.js.map +1 -0
- package/dist/core/export-html/ansi-to-html.d.ts +22 -0
- package/dist/core/export-html/ansi-to-html.d.ts.map +1 -0
- package/dist/core/export-html/ansi-to-html.js +249 -0
- package/dist/core/export-html/ansi-to-html.js.map +1 -0
- package/dist/core/export-html/index.d.ts +37 -0
- package/dist/core/export-html/index.d.ts.map +1 -0
- package/dist/core/export-html/index.js +224 -0
- package/dist/core/export-html/index.js.map +1 -0
- package/dist/core/export-html/template.css +1066 -0
- package/dist/core/export-html/template.html +55 -0
- package/dist/core/export-html/template.js +1834 -0
- package/dist/core/export-html/tool-renderer.d.ts +34 -0
- package/dist/core/export-html/tool-renderer.d.ts.map +1 -0
- package/dist/core/export-html/tool-renderer.js +108 -0
- package/dist/core/export-html/tool-renderer.js.map +1 -0
- package/dist/core/export-html/vendor/highlight.min.js +1213 -0
- package/dist/core/export-html/vendor/marked.min.js +6 -0
- package/dist/core/extensions/index.d.ts +12 -0
- package/dist/core/extensions/index.d.ts.map +1 -0
- package/dist/core/extensions/index.js +9 -0
- package/dist/core/extensions/index.js.map +1 -0
- package/dist/core/extensions/loader.d.ts +24 -0
- package/dist/core/extensions/loader.d.ts.map +1 -0
- package/dist/core/extensions/loader.js +501 -0
- package/dist/core/extensions/loader.js.map +1 -0
- package/dist/core/extensions/runner.d.ts +159 -0
- package/dist/core/extensions/runner.d.ts.map +1 -0
- package/dist/core/extensions/runner.js +817 -0
- package/dist/core/extensions/runner.js.map +1 -0
- package/dist/core/extensions/types.d.ts +1173 -0
- package/dist/core/extensions/types.d.ts.map +1 -0
- package/dist/core/extensions/types.js +45 -0
- package/dist/core/extensions/types.js.map +1 -0
- package/dist/core/extensions/wrapper.d.ts +20 -0
- package/dist/core/extensions/wrapper.d.ts.map +1 -0
- package/dist/core/extensions/wrapper.js +22 -0
- package/dist/core/extensions/wrapper.js.map +1 -0
- package/dist/core/footer-data-provider.d.ts +52 -0
- package/dist/core/footer-data-provider.d.ts.map +1 -0
- package/dist/core/footer-data-provider.js +309 -0
- package/dist/core/footer-data-provider.js.map +1 -0
- package/dist/core/index.d.ts +12 -0
- package/dist/core/index.d.ts.map +1 -0
- package/dist/core/index.js +12 -0
- package/dist/core/index.js.map +1 -0
- package/dist/core/keybindings.d.ts +353 -0
- package/dist/core/keybindings.d.ts.map +1 -0
- package/dist/core/keybindings.js +294 -0
- package/dist/core/keybindings.js.map +1 -0
- package/dist/core/messages.d.ts +77 -0
- package/dist/core/messages.d.ts.map +1 -0
- package/dist/core/messages.js +123 -0
- package/dist/core/messages.js.map +1 -0
- package/dist/core/model-registry.d.ts +150 -0
- package/dist/core/model-registry.d.ts.map +1 -0
- package/dist/core/model-registry.js +726 -0
- package/dist/core/model-registry.js.map +1 -0
- package/dist/core/model-resolver.d.ts +110 -0
- package/dist/core/model-resolver.d.ts.map +1 -0
- package/dist/core/model-resolver.js +493 -0
- package/dist/core/model-resolver.js.map +1 -0
- package/dist/core/output-guard.d.ts +6 -0
- package/dist/core/output-guard.d.ts.map +1 -0
- package/dist/core/output-guard.js +59 -0
- package/dist/core/output-guard.js.map +1 -0
- package/dist/core/package-manager.d.ts +198 -0
- package/dist/core/package-manager.d.ts.map +1 -0
- package/dist/core/package-manager.js +1970 -0
- package/dist/core/package-manager.js.map +1 -0
- package/dist/core/prompt-templates.d.ts +52 -0
- package/dist/core/prompt-templates.d.ts.map +1 -0
- package/dist/core/prompt-templates.js +250 -0
- package/dist/core/prompt-templates.js.map +1 -0
- package/dist/core/provider-display-names.d.ts +2 -0
- package/dist/core/provider-display-names.d.ts.map +1 -0
- package/dist/core/provider-display-names.js +33 -0
- package/dist/core/provider-display-names.js.map +1 -0
- package/dist/core/resolve-config-value.d.ts +23 -0
- package/dist/core/resolve-config-value.d.ts.map +1 -0
- package/dist/core/resolve-config-value.js +126 -0
- package/dist/core/resolve-config-value.js.map +1 -0
- package/dist/core/resource-loader.d.ts +196 -0
- package/dist/core/resource-loader.d.ts.map +1 -0
- package/dist/core/resource-loader.js +698 -0
- package/dist/core/resource-loader.js.map +1 -0
- package/dist/core/sdk.d.ts +107 -0
- package/dist/core/sdk.d.ts.map +1 -0
- package/dist/core/sdk.js +291 -0
- package/dist/core/sdk.js.map +1 -0
- package/dist/core/session-cwd.d.ts +19 -0
- package/dist/core/session-cwd.d.ts.map +1 -0
- package/dist/core/session-cwd.js +37 -0
- package/dist/core/session-cwd.js.map +1 -0
- package/dist/core/session-manager.d.ts +333 -0
- package/dist/core/session-manager.d.ts.map +1 -0
- package/dist/core/session-manager.js +1118 -0
- package/dist/core/session-manager.js.map +1 -0
- package/dist/core/settings-manager.d.ts +261 -0
- package/dist/core/settings-manager.d.ts.map +1 -0
- package/dist/core/settings-manager.js +773 -0
- package/dist/core/settings-manager.js.map +1 -0
- package/dist/core/skills.d.ts +60 -0
- package/dist/core/skills.d.ts.map +1 -0
- package/dist/core/skills.js +404 -0
- package/dist/core/skills.js.map +1 -0
- package/dist/core/slash-commands.d.ts +14 -0
- package/dist/core/slash-commands.d.ts.map +1 -0
- package/dist/core/slash-commands.js +25 -0
- package/dist/core/slash-commands.js.map +1 -0
- package/dist/core/source-info.d.ts +18 -0
- package/dist/core/source-info.d.ts.map +1 -0
- package/dist/core/source-info.js +19 -0
- package/dist/core/source-info.js.map +1 -0
- package/dist/core/system-prompt.d.ts +28 -0
- package/dist/core/system-prompt.d.ts.map +1 -0
- package/dist/core/system-prompt.js +120 -0
- package/dist/core/system-prompt.js.map +1 -0
- package/dist/core/telemetry.d.ts +3 -0
- package/dist/core/telemetry.d.ts.map +1 -0
- package/dist/core/telemetry.js +10 -0
- package/dist/core/telemetry.js.map +1 -0
- package/dist/core/timings.d.ts +8 -0
- package/dist/core/timings.d.ts.map +1 -0
- package/dist/core/timings.js +32 -0
- package/dist/core/timings.js.map +1 -0
- package/dist/core/tools/ask-user-question/ask-user-question.d.ts +10 -0
- package/dist/core/tools/ask-user-question/ask-user-question.d.ts.map +1 -0
- package/dist/core/tools/ask-user-question/ask-user-question.js +82 -0
- package/dist/core/tools/ask-user-question/ask-user-question.js.map +1 -0
- package/dist/core/tools/ask-user-question/config.d.ts +11 -0
- package/dist/core/tools/ask-user-question/config.d.ts.map +1 -0
- package/dist/core/tools/ask-user-question/config.js +34 -0
- package/dist/core/tools/ask-user-question/config.js.map +1 -0
- package/dist/core/tools/ask-user-question/index.d.ts +19 -0
- package/dist/core/tools/ask-user-question/index.d.ts.map +1 -0
- package/dist/core/tools/ask-user-question/index.js +19 -0
- package/dist/core/tools/ask-user-question/index.js.map +1 -0
- package/dist/core/tools/ask-user-question/state/build-questionnaire.d.ts +36 -0
- package/dist/core/tools/ask-user-question/state/build-questionnaire.d.ts.map +1 -0
- package/dist/core/tools/ask-user-question/state/build-questionnaire.js +213 -0
- package/dist/core/tools/ask-user-question/state/build-questionnaire.js.map +1 -0
- package/dist/core/tools/ask-user-question/state/key-router.d.ts +53 -0
- package/dist/core/tools/ask-user-question/state/key-router.d.ts.map +1 -0
- package/dist/core/tools/ask-user-question/state/key-router.js +240 -0
- package/dist/core/tools/ask-user-question/state/key-router.js.map +1 -0
- package/dist/core/tools/ask-user-question/state/questionnaire-session.d.ts +61 -0
- package/dist/core/tools/ask-user-question/state/questionnaire-session.d.ts.map +1 -0
- package/dist/core/tools/ask-user-question/state/questionnaire-session.js +147 -0
- package/dist/core/tools/ask-user-question/state/questionnaire-session.js.map +1 -0
- package/dist/core/tools/ask-user-question/state/row-intent.d.ts +91 -0
- package/dist/core/tools/ask-user-question/state/row-intent.d.ts.map +1 -0
- package/dist/core/tools/ask-user-question/state/row-intent.js +91 -0
- package/dist/core/tools/ask-user-question/state/row-intent.js.map +1 -0
- package/dist/core/tools/ask-user-question/state/selectors/contract.d.ts +21 -0
- package/dist/core/tools/ask-user-question/state/selectors/contract.d.ts.map +1 -0
- package/dist/core/tools/ask-user-question/state/selectors/contract.js +2 -0
- package/dist/core/tools/ask-user-question/state/selectors/contract.js.map +1 -0
- package/dist/core/tools/ask-user-question/state/selectors/derivations.d.ts +44 -0
- package/dist/core/tools/ask-user-question/state/selectors/derivations.d.ts.map +1 -0
- package/dist/core/tools/ask-user-question/state/selectors/derivations.js +76 -0
- package/dist/core/tools/ask-user-question/state/selectors/derivations.js.map +1 -0
- package/dist/core/tools/ask-user-question/state/selectors/focus.d.ts +15 -0
- package/dist/core/tools/ask-user-question/state/selectors/focus.d.ts.map +1 -0
- package/dist/core/tools/ask-user-question/state/selectors/focus.js +18 -0
- package/dist/core/tools/ask-user-question/state/selectors/focus.js.map +1 -0
- package/dist/core/tools/ask-user-question/state/selectors/projections.d.ts +16 -0
- package/dist/core/tools/ask-user-question/state/selectors/projections.d.ts.map +1 -0
- package/dist/core/tools/ask-user-question/state/selectors/projections.js +71 -0
- package/dist/core/tools/ask-user-question/state/selectors/projections.js.map +1 -0
- package/dist/core/tools/ask-user-question/state/state-reducer.d.ts +44 -0
- package/dist/core/tools/ask-user-question/state/state-reducer.d.ts.map +1 -0
- package/dist/core/tools/ask-user-question/state/state-reducer.js +239 -0
- package/dist/core/tools/ask-user-question/state/state-reducer.js.map +1 -0
- package/dist/core/tools/ask-user-question/state/state.d.ts +42 -0
- package/dist/core/tools/ask-user-question/state/state.d.ts.map +1 -0
- package/dist/core/tools/ask-user-question/state/state.js +2 -0
- package/dist/core/tools/ask-user-question/state/state.js.map +1 -0
- package/dist/core/tools/ask-user-question/tool/format-answer.d.ts +30 -0
- package/dist/core/tools/ask-user-question/tool/format-answer.d.ts.map +1 -0
- package/dist/core/tools/ask-user-question/tool/format-answer.js +39 -0
- package/dist/core/tools/ask-user-question/tool/format-answer.js.map +1 -0
- package/dist/core/tools/ask-user-question/tool/response-envelope.d.ts +29 -0
- package/dist/core/tools/ask-user-question/tool/response-envelope.d.ts.map +1 -0
- package/dist/core/tools/ask-user-question/tool/response-envelope.js +46 -0
- package/dist/core/tools/ask-user-question/tool/response-envelope.js.map +1 -0
- package/dist/core/tools/ask-user-question/tool/types.d.ts +113 -0
- package/dist/core/tools/ask-user-question/tool/types.d.ts.map +1 -0
- package/dist/core/tools/ask-user-question/tool/types.js +81 -0
- package/dist/core/tools/ask-user-question/tool/types.js.map +1 -0
- package/dist/core/tools/ask-user-question/tool/validate-questionnaire.d.ts +21 -0
- package/dist/core/tools/ask-user-question/tool/validate-questionnaire.d.ts.map +1 -0
- package/dist/core/tools/ask-user-question/tool/validate-questionnaire.js +49 -0
- package/dist/core/tools/ask-user-question/tool/validate-questionnaire.js.map +1 -0
- package/dist/core/tools/ask-user-question/view/body-residual-spacer.d.ts +18 -0
- package/dist/core/tools/ask-user-question/view/body-residual-spacer.d.ts.map +1 -0
- package/dist/core/tools/ask-user-question/view/body-residual-spacer.js +21 -0
- package/dist/core/tools/ask-user-question/view/body-residual-spacer.js.map +1 -0
- package/dist/core/tools/ask-user-question/view/component-binding.d.ts +23 -0
- package/dist/core/tools/ask-user-question/view/component-binding.d.ts.map +1 -0
- package/dist/core/tools/ask-user-question/view/component-binding.js +16 -0
- package/dist/core/tools/ask-user-question/view/component-binding.js.map +1 -0
- package/dist/core/tools/ask-user-question/view/components/chat-row-view.d.ts +40 -0
- package/dist/core/tools/ask-user-question/view/components/chat-row-view.d.ts.map +1 -0
- package/dist/core/tools/ask-user-question/view/components/chat-row-view.js +31 -0
- package/dist/core/tools/ask-user-question/view/components/chat-row-view.js.map +1 -0
- package/dist/core/tools/ask-user-question/view/components/multi-select-view.d.ts +35 -0
- package/dist/core/tools/ask-user-question/view/components/multi-select-view.d.ts.map +1 -0
- package/dist/core/tools/ask-user-question/view/components/multi-select-view.js +91 -0
- package/dist/core/tools/ask-user-question/view/components/multi-select-view.js.map +1 -0
- package/dist/core/tools/ask-user-question/view/components/option-list-view.d.ts +43 -0
- package/dist/core/tools/ask-user-question/view/components/option-list-view.d.ts.map +1 -0
- package/dist/core/tools/ask-user-question/view/components/option-list-view.js +37 -0
- package/dist/core/tools/ask-user-question/view/components/option-list-view.js.map +1 -0
- package/dist/core/tools/ask-user-question/view/components/preview/markdown-content-cache.d.ts +36 -0
- package/dist/core/tools/ask-user-question/view/components/preview/markdown-content-cache.d.ts.map +1 -0
- package/dist/core/tools/ask-user-question/view/components/preview/markdown-content-cache.js +66 -0
- package/dist/core/tools/ask-user-question/view/components/preview/markdown-content-cache.js.map +1 -0
- package/dist/core/tools/ask-user-question/view/components/preview/preview-block-renderer.d.ts +46 -0
- package/dist/core/tools/ask-user-question/view/components/preview/preview-block-renderer.d.ts.map +1 -0
- package/dist/core/tools/ask-user-question/view/components/preview/preview-block-renderer.js +69 -0
- package/dist/core/tools/ask-user-question/view/components/preview/preview-block-renderer.js.map +1 -0
- package/dist/core/tools/ask-user-question/view/components/preview/preview-box-renderer.d.ts +39 -0
- package/dist/core/tools/ask-user-question/view/components/preview/preview-box-renderer.d.ts.map +1 -0
- package/dist/core/tools/ask-user-question/view/components/preview/preview-box-renderer.js +76 -0
- package/dist/core/tools/ask-user-question/view/components/preview/preview-box-renderer.js.map +1 -0
- package/dist/core/tools/ask-user-question/view/components/preview/preview-layout-decider.d.ts +116 -0
- package/dist/core/tools/ask-user-question/view/components/preview/preview-layout-decider.d.ts.map +1 -0
- package/dist/core/tools/ask-user-question/view/components/preview/preview-layout-decider.js +173 -0
- package/dist/core/tools/ask-user-question/view/components/preview/preview-layout-decider.js.map +1 -0
- package/dist/core/tools/ask-user-question/view/components/preview/preview-pane.d.ts +66 -0
- package/dist/core/tools/ask-user-question/view/components/preview/preview-pane.d.ts.map +1 -0
- package/dist/core/tools/ask-user-question/view/components/preview/preview-pane.js +124 -0
- package/dist/core/tools/ask-user-question/view/components/preview/preview-pane.js.map +1 -0
- package/dist/core/tools/ask-user-question/view/components/submit-picker.d.ts +37 -0
- package/dist/core/tools/ask-user-question/view/components/submit-picker.d.ts.map +1 -0
- package/dist/core/tools/ask-user-question/view/components/submit-picker.js +44 -0
- package/dist/core/tools/ask-user-question/view/components/submit-picker.js.map +1 -0
- package/dist/core/tools/ask-user-question/view/components/tab-bar.d.ts +32 -0
- package/dist/core/tools/ask-user-question/view/components/tab-bar.d.ts.map +1 -0
- package/dist/core/tools/ask-user-question/view/components/tab-bar.js +33 -0
- package/dist/core/tools/ask-user-question/view/components/tab-bar.js.map +1 -0
- package/dist/core/tools/ask-user-question/view/components/wrapping-select.d.ts +122 -0
- package/dist/core/tools/ask-user-question/view/components/wrapping-select.d.ts.map +1 -0
- package/dist/core/tools/ask-user-question/view/components/wrapping-select.js +161 -0
- package/dist/core/tools/ask-user-question/view/components/wrapping-select.js.map +1 -0
- package/dist/core/tools/ask-user-question/view/dialog-builder.d.ts +66 -0
- package/dist/core/tools/ask-user-question/view/dialog-builder.d.ts.map +1 -0
- package/dist/core/tools/ask-user-question/view/dialog-builder.js +85 -0
- package/dist/core/tools/ask-user-question/view/dialog-builder.js.map +1 -0
- package/dist/core/tools/ask-user-question/view/props-adapter.d.ts +58 -0
- package/dist/core/tools/ask-user-question/view/props-adapter.d.ts.map +1 -0
- package/dist/core/tools/ask-user-question/view/props-adapter.js +67 -0
- package/dist/core/tools/ask-user-question/view/props-adapter.js.map +1 -0
- package/dist/core/tools/ask-user-question/view/stateful-view.d.ts +24 -0
- package/dist/core/tools/ask-user-question/view/stateful-view.d.ts.map +1 -0
- package/dist/core/tools/ask-user-question/view/stateful-view.js +2 -0
- package/dist/core/tools/ask-user-question/view/stateful-view.js.map +1 -0
- package/dist/core/tools/ask-user-question/view/tab-components.d.ts +15 -0
- package/dist/core/tools/ask-user-question/view/tab-components.d.ts.map +1 -0
- package/dist/core/tools/ask-user-question/view/tab-components.js +2 -0
- package/dist/core/tools/ask-user-question/view/tab-components.js.map +1 -0
- package/dist/core/tools/ask-user-question/view/tab-content-strategy.d.ts +71 -0
- package/dist/core/tools/ask-user-question/view/tab-content-strategy.d.ts.map +1 -0
- package/dist/core/tools/ask-user-question/view/tab-content-strategy.js +129 -0
- package/dist/core/tools/ask-user-question/view/tab-content-strategy.js.map +1 -0
- package/dist/core/tools/bash.d.ts +68 -0
- package/dist/core/tools/bash.d.ts.map +1 -0
- package/dist/core/tools/bash.js +338 -0
- package/dist/core/tools/bash.js.map +1 -0
- package/dist/core/tools/edit-diff.d.ts +85 -0
- package/dist/core/tools/edit-diff.d.ts.map +1 -0
- package/dist/core/tools/edit-diff.js +338 -0
- package/dist/core/tools/edit-diff.js.map +1 -0
- package/dist/core/tools/edit.d.ts +49 -0
- package/dist/core/tools/edit.d.ts.map +1 -0
- package/dist/core/tools/edit.js +324 -0
- package/dist/core/tools/edit.js.map +1 -0
- package/dist/core/tools/file-mutation-queue.d.ts +6 -0
- package/dist/core/tools/file-mutation-queue.d.ts.map +1 -0
- package/dist/core/tools/file-mutation-queue.js +37 -0
- package/dist/core/tools/file-mutation-queue.js.map +1 -0
- package/dist/core/tools/find.d.ts +35 -0
- package/dist/core/tools/find.d.ts.map +1 -0
- package/dist/core/tools/find.js +298 -0
- package/dist/core/tools/find.js.map +1 -0
- package/dist/core/tools/grep.d.ts +37 -0
- package/dist/core/tools/grep.d.ts.map +1 -0
- package/dist/core/tools/grep.js +304 -0
- package/dist/core/tools/grep.js.map +1 -0
- package/dist/core/tools/index.d.ts +42 -0
- package/dist/core/tools/index.d.ts.map +1 -0
- package/dist/core/tools/index.js +139 -0
- package/dist/core/tools/index.js.map +1 -0
- package/dist/core/tools/ls.d.ts +37 -0
- package/dist/core/tools/ls.d.ts.map +1 -0
- package/dist/core/tools/ls.js +169 -0
- package/dist/core/tools/ls.js.map +1 -0
- package/dist/core/tools/output-accumulator.d.ts +50 -0
- package/dist/core/tools/output-accumulator.d.ts.map +1 -0
- package/dist/core/tools/output-accumulator.js +172 -0
- package/dist/core/tools/output-accumulator.js.map +1 -0
- package/dist/core/tools/path-utils.d.ts +8 -0
- package/dist/core/tools/path-utils.d.ts.map +1 -0
- package/dist/core/tools/path-utils.js +81 -0
- package/dist/core/tools/path-utils.js.map +1 -0
- package/dist/core/tools/read.d.ts +35 -0
- package/dist/core/tools/read.d.ts.map +1 -0
- package/dist/core/tools/read.js +289 -0
- package/dist/core/tools/read.js.map +1 -0
- package/dist/core/tools/render-utils.d.ts +21 -0
- package/dist/core/tools/render-utils.d.ts.map +1 -0
- package/dist/core/tools/render-utils.js +49 -0
- package/dist/core/tools/render-utils.js.map +1 -0
- package/dist/core/tools/todos.d.ts +35 -0
- package/dist/core/tools/todos.d.ts.map +1 -0
- package/dist/core/tools/todos.js +906 -0
- package/dist/core/tools/todos.js.map +1 -0
- package/dist/core/tools/tool-definition-wrapper.d.ts +14 -0
- package/dist/core/tools/tool-definition-wrapper.d.ts.map +1 -0
- package/dist/core/tools/tool-definition-wrapper.js +34 -0
- package/dist/core/tools/tool-definition-wrapper.js.map +1 -0
- package/dist/core/tools/truncate.d.ts +70 -0
- package/dist/core/tools/truncate.d.ts.map +1 -0
- package/dist/core/tools/truncate.js +205 -0
- package/dist/core/tools/truncate.js.map +1 -0
- package/dist/core/tools/write.d.ts +26 -0
- package/dist/core/tools/write.d.ts.map +1 -0
- package/dist/core/tools/write.js +212 -0
- package/dist/core/tools/write.js.map +1 -0
- package/dist/index.d.ts +28 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +41 -0
- package/dist/index.js.map +1 -0
- package/dist/main.d.ts +13 -0
- package/dist/main.d.ts.map +1 -0
- package/dist/main.js +586 -0
- package/dist/main.js.map +1 -0
- package/dist/migrations.d.ts +33 -0
- package/dist/migrations.d.ts.map +1 -0
- package/dist/migrations.js +281 -0
- package/dist/migrations.js.map +1 -0
- package/dist/modes/index.d.ts +9 -0
- package/dist/modes/index.d.ts.map +1 -0
- package/dist/modes/index.js +8 -0
- package/dist/modes/index.js.map +1 -0
- package/dist/modes/interactive/assets/clankolas.png +3 -0
- package/dist/modes/interactive/components/armin.d.ts +34 -0
- package/dist/modes/interactive/components/armin.d.ts.map +1 -0
- package/dist/modes/interactive/components/armin.js +329 -0
- package/dist/modes/interactive/components/armin.js.map +1 -0
- package/dist/modes/interactive/components/assistant-message.d.ts +20 -0
- package/dist/modes/interactive/components/assistant-message.d.ts.map +1 -0
- package/dist/modes/interactive/components/assistant-message.js +116 -0
- package/dist/modes/interactive/components/assistant-message.js.map +1 -0
- package/dist/modes/interactive/components/bash-execution.d.ts +34 -0
- package/dist/modes/interactive/components/bash-execution.d.ts.map +1 -0
- package/dist/modes/interactive/components/bash-execution.js +170 -0
- package/dist/modes/interactive/components/bash-execution.js.map +1 -0
- package/dist/modes/interactive/components/bordered-loader.d.ts +16 -0
- package/dist/modes/interactive/components/bordered-loader.d.ts.map +1 -0
- package/dist/modes/interactive/components/bordered-loader.js +51 -0
- package/dist/modes/interactive/components/bordered-loader.js.map +1 -0
- package/dist/modes/interactive/components/branch-summary-message.d.ts +16 -0
- package/dist/modes/interactive/components/branch-summary-message.d.ts.map +1 -0
- package/dist/modes/interactive/components/branch-summary-message.js +42 -0
- package/dist/modes/interactive/components/branch-summary-message.js.map +1 -0
- package/dist/modes/interactive/components/compaction-summary-message.d.ts +16 -0
- package/dist/modes/interactive/components/compaction-summary-message.d.ts.map +1 -0
- package/dist/modes/interactive/components/compaction-summary-message.js +43 -0
- package/dist/modes/interactive/components/compaction-summary-message.js.map +1 -0
- package/dist/modes/interactive/components/config-selector.d.ts +71 -0
- package/dist/modes/interactive/components/config-selector.d.ts.map +1 -0
- package/dist/modes/interactive/components/config-selector.js +496 -0
- package/dist/modes/interactive/components/config-selector.js.map +1 -0
- package/dist/modes/interactive/components/countdown-timer.d.ts +14 -0
- package/dist/modes/interactive/components/countdown-timer.d.ts.map +1 -0
- package/dist/modes/interactive/components/countdown-timer.js +28 -0
- package/dist/modes/interactive/components/countdown-timer.js.map +1 -0
- package/dist/modes/interactive/components/custom-editor.d.ts +29 -0
- package/dist/modes/interactive/components/custom-editor.d.ts.map +1 -0
- package/dist/modes/interactive/components/custom-editor.js +113 -0
- package/dist/modes/interactive/components/custom-editor.js.map +1 -0
- package/dist/modes/interactive/components/custom-message.d.ts +20 -0
- package/dist/modes/interactive/components/custom-message.d.ts.map +1 -0
- package/dist/modes/interactive/components/custom-message.js +74 -0
- package/dist/modes/interactive/components/custom-message.js.map +1 -0
- package/dist/modes/interactive/components/daxnuts.d.ts +23 -0
- package/dist/modes/interactive/components/daxnuts.d.ts.map +1 -0
- package/dist/modes/interactive/components/daxnuts.js +138 -0
- package/dist/modes/interactive/components/daxnuts.js.map +1 -0
- package/dist/modes/interactive/components/diff.d.ts +12 -0
- package/dist/modes/interactive/components/diff.d.ts.map +1 -0
- package/dist/modes/interactive/components/diff.js +151 -0
- package/dist/modes/interactive/components/diff.js.map +1 -0
- package/dist/modes/interactive/components/dynamic-border.d.ts +15 -0
- package/dist/modes/interactive/components/dynamic-border.d.ts.map +1 -0
- package/dist/modes/interactive/components/dynamic-border.js +20 -0
- package/dist/modes/interactive/components/dynamic-border.js.map +1 -0
- package/dist/modes/interactive/components/earendil-announcement.d.ts +5 -0
- package/dist/modes/interactive/components/earendil-announcement.d.ts.map +1 -0
- package/dist/modes/interactive/components/earendil-announcement.js +40 -0
- package/dist/modes/interactive/components/earendil-announcement.js.map +1 -0
- package/dist/modes/interactive/components/extension-editor.d.ts +20 -0
- package/dist/modes/interactive/components/extension-editor.d.ts.map +1 -0
- package/dist/modes/interactive/components/extension-editor.js +106 -0
- package/dist/modes/interactive/components/extension-editor.js.map +1 -0
- package/dist/modes/interactive/components/extension-input.d.ts +23 -0
- package/dist/modes/interactive/components/extension-input.d.ts.map +1 -0
- package/dist/modes/interactive/components/extension-input.js +55 -0
- package/dist/modes/interactive/components/extension-input.js.map +1 -0
- package/dist/modes/interactive/components/extension-selector.d.ts +26 -0
- package/dist/modes/interactive/components/extension-selector.d.ts.map +1 -0
- package/dist/modes/interactive/components/extension-selector.js +75 -0
- package/dist/modes/interactive/components/extension-selector.js.map +1 -0
- package/dist/modes/interactive/components/footer.d.ts +27 -0
- package/dist/modes/interactive/components/footer.d.ts.map +1 -0
- package/dist/modes/interactive/components/footer.js +199 -0
- package/dist/modes/interactive/components/footer.js.map +1 -0
- package/dist/modes/interactive/components/index.d.ts +32 -0
- package/dist/modes/interactive/components/index.d.ts.map +1 -0
- package/dist/modes/interactive/components/index.js +33 -0
- package/dist/modes/interactive/components/index.js.map +1 -0
- package/dist/modes/interactive/components/keybinding-hints.d.ts +13 -0
- package/dist/modes/interactive/components/keybinding-hints.d.ts.map +1 -0
- package/dist/modes/interactive/components/keybinding-hints.js +36 -0
- package/dist/modes/interactive/components/keybinding-hints.js.map +1 -0
- package/dist/modes/interactive/components/login-dialog.d.ts +46 -0
- package/dist/modes/interactive/components/login-dialog.d.ts.map +1 -0
- package/dist/modes/interactive/components/login-dialog.js +158 -0
- package/dist/modes/interactive/components/login-dialog.js.map +1 -0
- package/dist/modes/interactive/components/model-selector.d.ts +47 -0
- package/dist/modes/interactive/components/model-selector.d.ts.map +1 -0
- package/dist/modes/interactive/components/model-selector.js +266 -0
- package/dist/modes/interactive/components/model-selector.js.map +1 -0
- package/dist/modes/interactive/components/oauth-selector.d.ts +31 -0
- package/dist/modes/interactive/components/oauth-selector.d.ts.map +1 -0
- package/dist/modes/interactive/components/oauth-selector.js +156 -0
- package/dist/modes/interactive/components/oauth-selector.js.map +1 -0
- package/dist/modes/interactive/components/scoped-models-selector.d.ts +42 -0
- package/dist/modes/interactive/components/scoped-models-selector.d.ts.map +1 -0
- package/dist/modes/interactive/components/scoped-models-selector.js +286 -0
- package/dist/modes/interactive/components/scoped-models-selector.js.map +1 -0
- package/dist/modes/interactive/components/session-selector-search.d.ts +23 -0
- package/dist/modes/interactive/components/session-selector-search.d.ts.map +1 -0
- package/dist/modes/interactive/components/session-selector-search.js +155 -0
- package/dist/modes/interactive/components/session-selector-search.js.map +1 -0
- package/dist/modes/interactive/components/session-selector.d.ts +96 -0
- package/dist/modes/interactive/components/session-selector.d.ts.map +1 -0
- package/dist/modes/interactive/components/session-selector.js +836 -0
- package/dist/modes/interactive/components/session-selector.js.map +1 -0
- package/dist/modes/interactive/components/settings-selector.d.ts +67 -0
- package/dist/modes/interactive/components/settings-selector.d.ts.map +1 -0
- package/dist/modes/interactive/components/settings-selector.js +371 -0
- package/dist/modes/interactive/components/settings-selector.js.map +1 -0
- package/dist/modes/interactive/components/show-images-selector.d.ts +10 -0
- package/dist/modes/interactive/components/show-images-selector.d.ts.map +1 -0
- package/dist/modes/interactive/components/show-images-selector.js +38 -0
- package/dist/modes/interactive/components/show-images-selector.js.map +1 -0
- package/dist/modes/interactive/components/skill-invocation-message.d.ts +17 -0
- package/dist/modes/interactive/components/skill-invocation-message.d.ts.map +1 -0
- package/dist/modes/interactive/components/skill-invocation-message.js +45 -0
- package/dist/modes/interactive/components/skill-invocation-message.js.map +1 -0
- package/dist/modes/interactive/components/theme-selector.d.ts +11 -0
- package/dist/modes/interactive/components/theme-selector.d.ts.map +1 -0
- package/dist/modes/interactive/components/theme-selector.js +48 -0
- package/dist/modes/interactive/components/theme-selector.js.map +1 -0
- package/dist/modes/interactive/components/thinking-selector.d.ts +11 -0
- package/dist/modes/interactive/components/thinking-selector.d.ts.map +1 -0
- package/dist/modes/interactive/components/thinking-selector.js +50 -0
- package/dist/modes/interactive/components/thinking-selector.js.map +1 -0
- package/dist/modes/interactive/components/tool-execution.d.ts +63 -0
- package/dist/modes/interactive/components/tool-execution.d.ts.map +1 -0
- package/dist/modes/interactive/components/tool-execution.js +280 -0
- package/dist/modes/interactive/components/tool-execution.js.map +1 -0
- package/dist/modes/interactive/components/tree-selector.d.ts +89 -0
- package/dist/modes/interactive/components/tree-selector.d.ts.map +1 -0
- package/dist/modes/interactive/components/tree-selector.js +1079 -0
- package/dist/modes/interactive/components/tree-selector.js.map +1 -0
- package/dist/modes/interactive/components/user-message-selector.d.ts +30 -0
- package/dist/modes/interactive/components/user-message-selector.d.ts.map +1 -0
- package/dist/modes/interactive/components/user-message-selector.js +111 -0
- package/dist/modes/interactive/components/user-message-selector.js.map +1 -0
- package/dist/modes/interactive/components/user-message.d.ts +10 -0
- package/dist/modes/interactive/components/user-message.d.ts.map +1 -0
- package/dist/modes/interactive/components/user-message.js +28 -0
- package/dist/modes/interactive/components/user-message.js.map +1 -0
- package/dist/modes/interactive/components/visual-truncate.d.ts +24 -0
- package/dist/modes/interactive/components/visual-truncate.d.ts.map +1 -0
- package/dist/modes/interactive/components/visual-truncate.js +33 -0
- package/dist/modes/interactive/components/visual-truncate.js.map +1 -0
- package/dist/modes/interactive/interactive-mode.d.ts +369 -0
- package/dist/modes/interactive/interactive-mode.d.ts.map +1 -0
- package/dist/modes/interactive/interactive-mode.js +4709 -0
- package/dist/modes/interactive/interactive-mode.js.map +1 -0
- package/dist/modes/interactive/theme/catppuccin-frappe.json +90 -0
- package/dist/modes/interactive/theme/catppuccin-latte.json +90 -0
- package/dist/modes/interactive/theme/catppuccin-macchiato.json +90 -0
- package/dist/modes/interactive/theme/catppuccin-mocha.json +90 -0
- package/dist/modes/interactive/theme/dark.json +85 -0
- package/dist/modes/interactive/theme/light.json +84 -0
- package/dist/modes/interactive/theme/theme-schema.json +335 -0
- package/dist/modes/interactive/theme/theme.d.ts +81 -0
- package/dist/modes/interactive/theme/theme.d.ts.map +1 -0
- package/dist/modes/interactive/theme/theme.js +970 -0
- package/dist/modes/interactive/theme/theme.js.map +1 -0
- package/dist/modes/interactive/whimsical-messages.d.ts +5 -0
- package/dist/modes/interactive/whimsical-messages.d.ts.map +1 -0
- package/dist/modes/interactive/whimsical-messages.js +464 -0
- package/dist/modes/interactive/whimsical-messages.js.map +1 -0
- package/dist/modes/print-mode.d.ts +28 -0
- package/dist/modes/print-mode.d.ts.map +1 -0
- package/dist/modes/print-mode.js +131 -0
- package/dist/modes/print-mode.js.map +1 -0
- package/dist/modes/rpc/jsonl.d.ts +17 -0
- package/dist/modes/rpc/jsonl.d.ts.map +1 -0
- package/dist/modes/rpc/jsonl.js +49 -0
- package/dist/modes/rpc/jsonl.js.map +1 -0
- package/dist/modes/rpc/rpc-client.d.ts +224 -0
- package/dist/modes/rpc/rpc-client.d.ts.map +1 -0
- package/dist/modes/rpc/rpc-client.js +409 -0
- package/dist/modes/rpc/rpc-client.js.map +1 -0
- package/dist/modes/rpc/rpc-mode.d.ts +20 -0
- package/dist/modes/rpc/rpc-mode.d.ts.map +1 -0
- package/dist/modes/rpc/rpc-mode.js +601 -0
- package/dist/modes/rpc/rpc-mode.js.map +1 -0
- package/dist/modes/rpc/rpc-types.d.ts +419 -0
- package/dist/modes/rpc/rpc-types.d.ts.map +1 -0
- package/dist/modes/rpc/rpc-types.js +8 -0
- package/dist/modes/rpc/rpc-types.js.map +1 -0
- package/dist/package-manager-cli.d.ts +4 -0
- package/dist/package-manager-cli.d.ts.map +1 -0
- package/dist/package-manager-cli.js +460 -0
- package/dist/package-manager-cli.js.map +1 -0
- package/dist/utils/ansi.d.ts +2 -0
- package/dist/utils/ansi.d.ts.map +1 -0
- package/dist/utils/ansi.js +52 -0
- package/dist/utils/ansi.js.map +1 -0
- package/dist/utils/changelog.d.ts +21 -0
- package/dist/utils/changelog.d.ts.map +1 -0
- package/dist/utils/changelog.js +87 -0
- package/dist/utils/changelog.js.map +1 -0
- package/dist/utils/child-process.d.ts +12 -0
- package/dist/utils/child-process.d.ts.map +1 -0
- package/dist/utils/child-process.js +86 -0
- package/dist/utils/child-process.js.map +1 -0
- package/dist/utils/clipboard-image.d.ts +11 -0
- package/dist/utils/clipboard-image.d.ts.map +1 -0
- package/dist/utils/clipboard-image.js +245 -0
- package/dist/utils/clipboard-image.js.map +1 -0
- package/dist/utils/clipboard-native.d.ts +8 -0
- package/dist/utils/clipboard-native.d.ts.map +1 -0
- package/dist/utils/clipboard-native.js +14 -0
- package/dist/utils/clipboard-native.js.map +1 -0
- package/dist/utils/clipboard.d.ts +2 -0
- package/dist/utils/clipboard.d.ts.map +1 -0
- package/dist/utils/clipboard.js +117 -0
- package/dist/utils/clipboard.js.map +1 -0
- package/dist/utils/exif-orientation.d.ts +5 -0
- package/dist/utils/exif-orientation.d.ts.map +1 -0
- package/dist/utils/exif-orientation.js +158 -0
- package/dist/utils/exif-orientation.js.map +1 -0
- package/dist/utils/frontmatter.d.ts +8 -0
- package/dist/utils/frontmatter.d.ts.map +1 -0
- package/dist/utils/frontmatter.js +26 -0
- package/dist/utils/frontmatter.js.map +1 -0
- package/dist/utils/fs-watch.d.ts +5 -0
- package/dist/utils/fs-watch.d.ts.map +1 -0
- package/dist/utils/fs-watch.js +25 -0
- package/dist/utils/fs-watch.js.map +1 -0
- package/dist/utils/git.d.ts +26 -0
- package/dist/utils/git.d.ts.map +1 -0
- package/dist/utils/git.js +163 -0
- package/dist/utils/git.js.map +1 -0
- package/dist/utils/html.d.ts +7 -0
- package/dist/utils/html.d.ts.map +1 -0
- package/dist/utils/html.js +40 -0
- package/dist/utils/html.js.map +1 -0
- package/dist/utils/image-convert.d.ts +9 -0
- package/dist/utils/image-convert.d.ts.map +1 -0
- package/dist/utils/image-convert.js +39 -0
- package/dist/utils/image-convert.js.map +1 -0
- package/dist/utils/image-resize.d.ts +36 -0
- package/dist/utils/image-resize.d.ts.map +1 -0
- package/dist/utils/image-resize.js +137 -0
- package/dist/utils/image-resize.js.map +1 -0
- package/dist/utils/mime.d.ts +3 -0
- package/dist/utils/mime.d.ts.map +1 -0
- package/dist/utils/mime.js +69 -0
- package/dist/utils/mime.js.map +1 -0
- package/dist/utils/paths.d.ts +16 -0
- package/dist/utils/paths.d.ts.map +1 -0
- package/dist/utils/paths.js +50 -0
- package/dist/utils/paths.js.map +1 -0
- package/dist/utils/photon.d.ts +21 -0
- package/dist/utils/photon.d.ts.map +1 -0
- package/dist/utils/photon.js +121 -0
- package/dist/utils/photon.js.map +1 -0
- package/dist/utils/pi-user-agent.d.ts +2 -0
- package/dist/utils/pi-user-agent.d.ts.map +1 -0
- package/dist/utils/pi-user-agent.js +5 -0
- package/dist/utils/pi-user-agent.js.map +1 -0
- package/dist/utils/shell.d.ts +30 -0
- package/dist/utils/shell.d.ts.map +1 -0
- package/dist/utils/shell.js +190 -0
- package/dist/utils/shell.js.map +1 -0
- package/dist/utils/sleep.d.ts +5 -0
- package/dist/utils/sleep.d.ts.map +1 -0
- package/dist/utils/sleep.js +17 -0
- package/dist/utils/sleep.js.map +1 -0
- package/dist/utils/syntax-highlight.d.ts +12 -0
- package/dist/utils/syntax-highlight.d.ts.map +1 -0
- package/dist/utils/syntax-highlight.js +118 -0
- package/dist/utils/syntax-highlight.js.map +1 -0
- package/dist/utils/tools-manager.d.ts +3 -0
- package/dist/utils/tools-manager.d.ts.map +1 -0
- package/dist/utils/tools-manager.js +325 -0
- package/dist/utils/tools-manager.js.map +1 -0
- package/dist/utils/version-check.d.ts +14 -0
- package/dist/utils/version-check.d.ts.map +1 -0
- package/dist/utils/version-check.js +76 -0
- package/dist/utils/version-check.js.map +1 -0
- package/docs/compaction.md +394 -0
- package/docs/custom-provider.md +646 -0
- package/docs/development.md +71 -0
- package/docs/docs.json +148 -0
- package/docs/extensions.md +2596 -0
- package/docs/images/doom-extension.png +0 -0
- package/docs/images/exy.png +3 -0
- package/docs/images/interactive-mode.png +0 -0
- package/docs/images/tree-view.png +0 -0
- package/docs/index.md +70 -0
- package/docs/json.md +82 -0
- package/docs/keybindings.md +197 -0
- package/docs/models.md +474 -0
- package/docs/packages.md +223 -0
- package/docs/prompt-templates.md +88 -0
- package/docs/providers.md +243 -0
- package/docs/quickstart.md +142 -0
- package/docs/rpc.md +1407 -0
- package/docs/sdk.md +1129 -0
- package/docs/session-format.md +412 -0
- package/docs/sessions.md +137 -0
- package/docs/settings.md +279 -0
- package/docs/shell-aliases.md +13 -0
- package/docs/skills.md +232 -0
- package/docs/terminal-setup.md +106 -0
- package/docs/termux.md +127 -0
- package/docs/themes.md +299 -0
- package/docs/tmux.md +61 -0
- package/docs/tui.md +918 -0
- package/docs/usage.md +277 -0
- package/docs/windows.md +17 -0
- package/examples/README.md +25 -0
- package/examples/extensions/README.md +208 -0
- package/examples/extensions/auto-commit-on-exit.ts +49 -0
- package/examples/extensions/bash-spawn-hook.ts +30 -0
- package/examples/extensions/bookmark.ts +50 -0
- package/examples/extensions/border-status-editor.ts +150 -0
- package/examples/extensions/built-in-tool-renderer.ts +249 -0
- package/examples/extensions/claude-rules.ts +86 -0
- package/examples/extensions/commands.ts +72 -0
- package/examples/extensions/confirm-destructive.ts +59 -0
- package/examples/extensions/custom-compaction.ts +127 -0
- package/examples/extensions/custom-footer.ts +64 -0
- package/examples/extensions/custom-header.ts +73 -0
- package/examples/extensions/custom-provider-anthropic/index.ts +604 -0
- package/examples/extensions/custom-provider-anthropic/package-lock.json +24 -0
- package/examples/extensions/custom-provider-anthropic/package.json +19 -0
- package/examples/extensions/custom-provider-gitlab-duo/index.ts +349 -0
- package/examples/extensions/custom-provider-gitlab-duo/package.json +16 -0
- package/examples/extensions/custom-provider-gitlab-duo/test.ts +82 -0
- package/examples/extensions/dirty-repo-guard.ts +56 -0
- package/examples/extensions/doom-overlay/README.md +46 -0
- package/examples/extensions/doom-overlay/doom/build.sh +152 -0
- package/examples/extensions/doom-overlay/doom/doomgeneric_pi.c +72 -0
- package/examples/extensions/doom-overlay/doom-component.ts +132 -0
- package/examples/extensions/doom-overlay/doom-engine.ts +173 -0
- package/examples/extensions/doom-overlay/doom-keys.ts +104 -0
- package/examples/extensions/doom-overlay/index.ts +74 -0
- package/examples/extensions/doom-overlay/wad-finder.ts +51 -0
- package/examples/extensions/dynamic-resources/SKILL.md +8 -0
- package/examples/extensions/dynamic-resources/dynamic.json +79 -0
- package/examples/extensions/dynamic-resources/dynamic.md +5 -0
- package/examples/extensions/dynamic-resources/index.ts +15 -0
- package/examples/extensions/dynamic-tools.ts +74 -0
- package/examples/extensions/event-bus.ts +43 -0
- package/examples/extensions/file-trigger.ts +41 -0
- package/examples/extensions/git-checkpoint.ts +53 -0
- package/examples/extensions/github-issue-autocomplete.ts +185 -0
- package/examples/extensions/handoff.ts +191 -0
- package/examples/extensions/hello.ts +26 -0
- package/examples/extensions/hidden-thinking-label.ts +53 -0
- package/examples/extensions/inline-bash.ts +94 -0
- package/examples/extensions/input-transform.ts +43 -0
- package/examples/extensions/interactive-shell.ts +196 -0
- package/examples/extensions/mac-system-theme.ts +47 -0
- package/examples/extensions/message-renderer.ts +59 -0
- package/examples/extensions/minimal-mode.ts +426 -0
- package/examples/extensions/modal-editor.ts +85 -0
- package/examples/extensions/model-status.ts +31 -0
- package/examples/extensions/notify.ts +55 -0
- package/examples/extensions/overlay-qa-tests.ts +1348 -0
- package/examples/extensions/overlay-test.ts +150 -0
- package/examples/extensions/permission-gate.ts +34 -0
- package/examples/extensions/pirate.ts +47 -0
- package/examples/extensions/plan-mode/README.md +65 -0
- package/examples/extensions/plan-mode/index.ts +340 -0
- package/examples/extensions/plan-mode/utils.ts +168 -0
- package/examples/extensions/preset.ts +430 -0
- package/examples/extensions/prompt-customizer.ts +97 -0
- package/examples/extensions/protected-paths.ts +30 -0
- package/examples/extensions/provider-payload.ts +18 -0
- package/examples/extensions/qna.ts +122 -0
- package/examples/extensions/question.ts +264 -0
- package/examples/extensions/questionnaire.ts +427 -0
- package/examples/extensions/rainbow-editor.ts +88 -0
- package/examples/extensions/reload-runtime.ts +37 -0
- package/examples/extensions/rpc-demo.ts +118 -0
- package/examples/extensions/sandbox/index.ts +321 -0
- package/examples/extensions/sandbox/package-lock.json +92 -0
- package/examples/extensions/sandbox/package.json +19 -0
- package/examples/extensions/send-user-message.ts +97 -0
- package/examples/extensions/session-name.ts +27 -0
- package/examples/extensions/shutdown-command.ts +63 -0
- package/examples/extensions/snake.ts +343 -0
- package/examples/extensions/space-invaders.ts +560 -0
- package/examples/extensions/ssh.ts +220 -0
- package/examples/extensions/status-line.ts +32 -0
- package/examples/extensions/structured-output.ts +65 -0
- package/examples/extensions/subagent/README.md +172 -0
- package/examples/extensions/subagent/agents/planner.md +37 -0
- package/examples/extensions/subagent/agents/reviewer.md +35 -0
- package/examples/extensions/subagent/agents/scout.md +50 -0
- package/examples/extensions/subagent/agents/worker.md +24 -0
- package/examples/extensions/subagent/agents.ts +126 -0
- package/examples/extensions/subagent/index.ts +987 -0
- package/examples/extensions/subagent/prompts/implement-and-review.md +10 -0
- package/examples/extensions/subagent/prompts/implement.md +10 -0
- package/examples/extensions/subagent/prompts/scout-and-plan.md +9 -0
- package/examples/extensions/summarize.ts +206 -0
- package/examples/extensions/system-prompt-header.ts +17 -0
- package/examples/extensions/tic-tac-toe.ts +1008 -0
- package/examples/extensions/timed-confirm.ts +70 -0
- package/examples/extensions/titlebar-spinner.ts +58 -0
- package/examples/extensions/todo.ts +297 -0
- package/examples/extensions/tool-override.ts +144 -0
- package/examples/extensions/tools.ts +141 -0
- package/examples/extensions/trigger-compact.ts +50 -0
- package/examples/extensions/truncated-tool.ts +195 -0
- package/examples/extensions/widget-placement.ts +9 -0
- package/examples/extensions/with-deps/index.ts +32 -0
- package/examples/extensions/with-deps/package-lock.json +31 -0
- package/examples/extensions/with-deps/package.json +22 -0
- package/examples/extensions/working-indicator.ts +123 -0
- package/examples/extensions/working-message-test.ts +25 -0
- package/examples/rpc-extension-ui.ts +632 -0
- package/examples/sdk/01-minimal.ts +26 -0
- package/examples/sdk/02-custom-model.ts +53 -0
- package/examples/sdk/03-custom-prompt.ts +75 -0
- package/examples/sdk/04-skills.ts +55 -0
- package/examples/sdk/05-tools.ts +48 -0
- package/examples/sdk/06-extensions.ts +99 -0
- package/examples/sdk/07-context-files.ts +47 -0
- package/examples/sdk/08-prompt-templates.ts +51 -0
- package/examples/sdk/09-api-keys-and-oauth.ts +52 -0
- package/examples/sdk/10-settings.ts +53 -0
- package/examples/sdk/11-sessions.ts +52 -0
- package/examples/sdk/12-full-control.ts +77 -0
- package/examples/sdk/13-session-runtime.ts +67 -0
- package/examples/sdk/README.md +144 -0
- package/package.json +94 -19
- package/bin/atomic +0 -82
- /package/{LICENSE → dist/builtin/workflows/LICENSE} +0 -0
|
@@ -0,0 +1,1257 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Rendering functions for subagent results
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
import * as path from "node:path";
|
|
6
|
+
import type { AgentToolResult } from "@earendil-works/pi-agent-core";
|
|
7
|
+
import { getMarkdownTheme, type ExtensionContext } from "@earendil-works/pi-coding-agent";
|
|
8
|
+
import { Container, Markdown, Spacer, Text, visibleWidth, type Component } from "@earendil-works/pi-tui";
|
|
9
|
+
import {
|
|
10
|
+
type AgentProgress,
|
|
11
|
+
type AsyncJobState,
|
|
12
|
+
type AsyncJobStep,
|
|
13
|
+
type AsyncParallelGroupStatus,
|
|
14
|
+
type Details,
|
|
15
|
+
MAX_WIDGET_JOBS,
|
|
16
|
+
WIDGET_KEY,
|
|
17
|
+
} from "../shared/types.ts";
|
|
18
|
+
import { formatTokens, formatUsage, formatDuration, formatModelThinking, formatToolCall, shortenPath } from "../shared/formatters.ts";
|
|
19
|
+
import { getDisplayItems, getLastActivity, getSingleResultOutput } from "../shared/utils.ts";
|
|
20
|
+
import { flatToLogicalStepIndex } from "../runs/background/parallel-groups.ts";
|
|
21
|
+
import { aggregateStepStatus, formatActivityLabel, formatAgentRunningLabel, formatParallelOutcome } from "../shared/status-format.ts";
|
|
22
|
+
|
|
23
|
+
type Theme = ExtensionContext["ui"]["theme"];
|
|
24
|
+
|
|
25
|
+
function getTermWidth(): number {
|
|
26
|
+
return process.stdout.columns || 120;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
const segmenter = new Intl.Segmenter(undefined, { granularity: "grapheme" });
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
* Truncate a line to maxWidth, preserving ANSI styling through the ellipsis.
|
|
33
|
+
*
|
|
34
|
+
* pi-tui's truncateToWidth adds \x1b[0m before ellipsis which resets all styling,
|
|
35
|
+
* causing background color bleed in the TUI. This implementation tracks active
|
|
36
|
+
* ANSI styles and re-applies them before the ellipsis.
|
|
37
|
+
*
|
|
38
|
+
* Uses Intl.Segmenter for proper Unicode/emoji handling (not char-by-char).
|
|
39
|
+
*/
|
|
40
|
+
function truncLine(text: string, maxWidth: number): string {
|
|
41
|
+
if (visibleWidth(text) <= maxWidth) return text;
|
|
42
|
+
|
|
43
|
+
const targetWidth = maxWidth - 1;
|
|
44
|
+
let result = "";
|
|
45
|
+
let currentWidth = 0;
|
|
46
|
+
let activeStyles: string[] = [];
|
|
47
|
+
let i = 0;
|
|
48
|
+
|
|
49
|
+
while (i < text.length) {
|
|
50
|
+
const ansiMatch = text.slice(i).match(/^\x1b\[[0-9;]*m/);
|
|
51
|
+
if (ansiMatch) {
|
|
52
|
+
const code = ansiMatch[0];
|
|
53
|
+
result += code;
|
|
54
|
+
|
|
55
|
+
if (code === "\x1b[0m" || code === "\x1b[m") {
|
|
56
|
+
activeStyles = [];
|
|
57
|
+
} else {
|
|
58
|
+
activeStyles.push(code);
|
|
59
|
+
}
|
|
60
|
+
i += code.length;
|
|
61
|
+
continue;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
let end = i;
|
|
65
|
+
while (end < text.length && !text.slice(end).match(/^\x1b\[[0-9;]*m/)) {
|
|
66
|
+
end++;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
const textPortion = text.slice(i, end);
|
|
70
|
+
for (const seg of segmenter.segment(textPortion)) {
|
|
71
|
+
const grapheme = seg.segment;
|
|
72
|
+
const graphemeWidth = visibleWidth(grapheme);
|
|
73
|
+
|
|
74
|
+
if (currentWidth + graphemeWidth > targetWidth) {
|
|
75
|
+
return result + activeStyles.join("") + "…";
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
result += grapheme;
|
|
79
|
+
currentWidth += graphemeWidth;
|
|
80
|
+
}
|
|
81
|
+
i = end;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
return result + activeStyles.join("") + "…";
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
const SPINNER = ["⠋", "⠙", "⠹", "⠸", "⠼", "⠴", "⠦", "⠧", "⠇", "⠏"];
|
|
88
|
+
const WIDGET_ANIMATION_MS = 80;
|
|
89
|
+
|
|
90
|
+
let widgetTimer: ReturnType<typeof setInterval> | undefined;
|
|
91
|
+
let latestWidgetCtx: ExtensionContext | undefined;
|
|
92
|
+
let latestWidgetJobs: AsyncJobState[] = [];
|
|
93
|
+
|
|
94
|
+
const resultAnimationTimers = new Map<ReturnType<typeof setInterval>, ResultAnimationContext["state"]>();
|
|
95
|
+
const outputActivityCache = new Map<string, { checkedAt: number; text: string }>();
|
|
96
|
+
const STALE_EXTENSION_CONTEXT_MESSAGE = "This extension ctx is stale after session replacement or reload";
|
|
97
|
+
|
|
98
|
+
interface ResultAnimationContext {
|
|
99
|
+
state: { subagentResultAnimationTimer?: ReturnType<typeof setInterval> };
|
|
100
|
+
invalidate: () => void;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
function spinnerFrame(): string {
|
|
104
|
+
return SPINNER[Math.floor(Date.now() / WIDGET_ANIMATION_MS) % SPINNER.length]!;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
function isStaleExtensionContextError(error: unknown): boolean {
|
|
108
|
+
if (!(error instanceof Error)) return false;
|
|
109
|
+
return error.message.includes(STALE_EXTENSION_CONTEXT_MESSAGE);
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
function resultIsRunning(result: AgentToolResult<Details>): boolean {
|
|
113
|
+
return result.details?.progress?.some((entry) => entry.status === "running")
|
|
114
|
+
|| result.details?.results.some((entry) => entry.progress?.status === "running")
|
|
115
|
+
|| false;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
function stopResultAnimation(context: ResultAnimationContext): void {
|
|
119
|
+
const timer = context.state.subagentResultAnimationTimer;
|
|
120
|
+
if (!timer) return;
|
|
121
|
+
clearInterval(timer);
|
|
122
|
+
resultAnimationTimers.delete(timer);
|
|
123
|
+
context.state.subagentResultAnimationTimer = undefined;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
export function syncResultAnimation(result: AgentToolResult<Details>, context: ResultAnimationContext): void {
|
|
127
|
+
if (!resultIsRunning(result)) {
|
|
128
|
+
stopResultAnimation(context);
|
|
129
|
+
return;
|
|
130
|
+
}
|
|
131
|
+
if (context.state.subagentResultAnimationTimer) return;
|
|
132
|
+
const timer = setInterval(() => {
|
|
133
|
+
try {
|
|
134
|
+
context.invalidate();
|
|
135
|
+
} catch (error) {
|
|
136
|
+
if (!isStaleExtensionContextError(error)) throw error;
|
|
137
|
+
stopResultAnimation(context);
|
|
138
|
+
}
|
|
139
|
+
}, WIDGET_ANIMATION_MS);
|
|
140
|
+
timer.unref?.();
|
|
141
|
+
context.state.subagentResultAnimationTimer = timer;
|
|
142
|
+
resultAnimationTimers.set(timer, context.state);
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
function extractOutputTarget(task: string): string | undefined {
|
|
146
|
+
const writeToMatch = task.match(/\[Write to:\s*([^\]\n]+)\]/i);
|
|
147
|
+
if (writeToMatch?.[1]?.trim()) return writeToMatch[1].trim();
|
|
148
|
+
const findingsMatch = task.match(/Write your findings to:\s*(\S+)/i);
|
|
149
|
+
if (findingsMatch?.[1]?.trim()) return findingsMatch[1].trim();
|
|
150
|
+
const outputMatch = task.match(/[Oo]utput(?:\s+to)?\s*:\s*(\S+)/i);
|
|
151
|
+
if (outputMatch?.[1]?.trim()) return outputMatch[1].trim();
|
|
152
|
+
return undefined;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
function hasEmptyTextOutputWithoutOutputTarget(task: string, output: string): boolean {
|
|
156
|
+
if (output.trim()) return false;
|
|
157
|
+
return !extractOutputTarget(task);
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
function getToolCallLines(
|
|
161
|
+
result: Pick<Details["results"][number], "messages" | "toolCalls">,
|
|
162
|
+
expanded: boolean,
|
|
163
|
+
): string[] {
|
|
164
|
+
if (result.messages) {
|
|
165
|
+
return getDisplayItems(result.messages)
|
|
166
|
+
.filter((item): item is { type: "tool"; name: string; args: Record<string, unknown> } => item.type === "tool")
|
|
167
|
+
.map((item) => formatToolCall(item.name, item.args, expanded));
|
|
168
|
+
}
|
|
169
|
+
return result.toolCalls?.map((toolCall) => expanded ? toolCall.expandedText : toolCall.text) ?? [];
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
function formatCurrentToolLine(progress: Pick<AgentProgress, "currentTool" | "currentToolArgs" | "currentToolStartedAt">, availableWidth: number, expanded: boolean): string | undefined {
|
|
174
|
+
if (!progress.currentTool) return undefined;
|
|
175
|
+
const maxToolArgsLen = Math.max(50, availableWidth - 20);
|
|
176
|
+
const toolArgsPreview = progress.currentToolArgs
|
|
177
|
+
? (expanded || progress.currentToolArgs.length <= maxToolArgsLen
|
|
178
|
+
? progress.currentToolArgs
|
|
179
|
+
: `${progress.currentToolArgs.slice(0, maxToolArgsLen)}...`)
|
|
180
|
+
: "";
|
|
181
|
+
const durationSuffix = progress.currentToolStartedAt !== undefined
|
|
182
|
+
? ` | ${formatDuration(Math.max(0, Date.now() - progress.currentToolStartedAt))}`
|
|
183
|
+
: "";
|
|
184
|
+
return toolArgsPreview
|
|
185
|
+
? `${progress.currentTool}: ${toolArgsPreview}${durationSuffix}`
|
|
186
|
+
: `${progress.currentTool}${durationSuffix}`;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
function buildLiveStatusLine(progress: Pick<AgentProgress, "activityState" | "lastActivityAt">): string | undefined {
|
|
190
|
+
return formatActivityLabel(progress.lastActivityAt, progress.activityState);
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
function themeBold(theme: Theme, text: string): string {
|
|
194
|
+
return ((theme as { bold?: (value: string) => string }).bold?.(text)) ?? text;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
function statJoin(theme: Theme, parts: string[]): string {
|
|
198
|
+
return parts.filter(Boolean).map((part) => theme.fg("dim", part)).join(` ${theme.fg("dim", "·")} `);
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
function formatTokenStat(tokens: number): string {
|
|
202
|
+
return `${formatTokens(tokens)} token`;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
function formatToolUseStat(count: number): string {
|
|
206
|
+
return `${count} tool use${count === 1 ? "" : "s"}`;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
function formatProgressStats(theme: Theme, progress: Pick<AgentProgress, "toolCount" | "tokens" | "durationMs"> | undefined, includeDuration = true): string {
|
|
210
|
+
if (!progress) return "";
|
|
211
|
+
const parts: string[] = [];
|
|
212
|
+
if (progress.toolCount > 0) parts.push(formatToolUseStat(progress.toolCount));
|
|
213
|
+
if (progress.tokens > 0) parts.push(formatTokenStat(progress.tokens));
|
|
214
|
+
if (includeDuration && progress.durationMs > 0) parts.push(formatDuration(progress.durationMs));
|
|
215
|
+
return statJoin(theme, parts);
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
function firstOutputLine(text: string): string {
|
|
219
|
+
return text.split("\n").find((line) => line.trim())?.trim() ?? "";
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
function resultStatusLine(result: Details["results"][number], output: string): string {
|
|
223
|
+
if (result.detached) return result.detachedReason ? `Detached: ${result.detachedReason}` : "Detached";
|
|
224
|
+
if (result.interrupted) return "Paused";
|
|
225
|
+
if (result.exitCode !== 0) return `Error: ${result.error ?? (firstOutputLine(output) || `exit ${result.exitCode}`)}`;
|
|
226
|
+
if (hasEmptyTextOutputWithoutOutputTarget(result.task, output)) return "Done (no text output)";
|
|
227
|
+
return "Done";
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
function resultGlyph(result: Details["results"][number], output: string, theme: Theme, running = result.progress?.status === "running"): string {
|
|
231
|
+
if (running) return theme.fg("accent", spinnerFrame());
|
|
232
|
+
if (result.detached) return theme.fg("warning", "■");
|
|
233
|
+
if (result.interrupted) return theme.fg("warning", "■");
|
|
234
|
+
if (result.exitCode !== 0) return theme.fg("error", "✗");
|
|
235
|
+
if (hasEmptyTextOutputWithoutOutputTarget(result.task, output)) return theme.fg("warning", "✓");
|
|
236
|
+
return theme.fg("success", "✓");
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
function compactCurrentActivity(progress: AgentProgress): string {
|
|
240
|
+
return formatCurrentToolLine(progress, getTermWidth() - 4, false) ?? buildLiveStatusLine(progress) ?? "thinking…";
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
function hasAnimatedWidgetJobs(jobs: AsyncJobState[]): boolean {
|
|
244
|
+
return jobs.some((job) => job.status === "running");
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
function formatWidgetAgents(agents: string[]): string {
|
|
248
|
+
const distinct = [...new Set(agents)];
|
|
249
|
+
if (distinct.length === 1 && agents.length > 1) return `${distinct[0]} ×${agents.length}`;
|
|
250
|
+
if (agents.length > 3) return `${agents.slice(0, 2).join(", ")} +${agents.length - 2} more`;
|
|
251
|
+
return agents.join(", ");
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
function widgetJobName(job: AsyncJobState): string {
|
|
255
|
+
if (job.mode === "parallel") return "parallel";
|
|
256
|
+
if (job.mode === "chain") return "chain";
|
|
257
|
+
if (job.mode === "single" && job.agents?.length === 1) return job.agents[0]!;
|
|
258
|
+
if (job.agents?.length) return formatWidgetAgents(job.agents);
|
|
259
|
+
return job.mode ?? "subagent";
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
function getCachedLastActivity(outputFile: string | undefined): string {
|
|
263
|
+
if (!outputFile) return "";
|
|
264
|
+
const now = Date.now();
|
|
265
|
+
const cached = outputActivityCache.get(outputFile);
|
|
266
|
+
if (cached && now - cached.checkedAt < 1000) return cached.text;
|
|
267
|
+
const text = getLastActivity(outputFile);
|
|
268
|
+
outputActivityCache.set(outputFile, { checkedAt: now, text });
|
|
269
|
+
return text;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
function widgetActivity(job: AsyncJobState): string {
|
|
273
|
+
const facts: string[] = [];
|
|
274
|
+
if (job.currentTool && job.currentToolStartedAt !== undefined) facts.push(`${job.currentTool} ${formatDuration(Math.max(0, Date.now() - job.currentToolStartedAt))}`);
|
|
275
|
+
else if (job.currentTool) facts.push(job.currentTool);
|
|
276
|
+
if (job.currentPath) facts.push(shortenPath(job.currentPath));
|
|
277
|
+
if (job.turnCount !== undefined) facts.push(`${job.turnCount} turns`);
|
|
278
|
+
if (job.toolCount !== undefined) facts.push(`${job.toolCount} tools`);
|
|
279
|
+
const activity = formatActivityLabel(job.lastActivityAt, job.activityState)
|
|
280
|
+
?? (job.status === "running" ? getCachedLastActivity(job.outputFile) : "");
|
|
281
|
+
if (activity && facts.length) return `${activity} · ${facts.join(" · ")}`;
|
|
282
|
+
if (activity) return activity;
|
|
283
|
+
if (facts.length) return facts.join(" · ");
|
|
284
|
+
if (job.status === "running") return "thinking…";
|
|
285
|
+
if (job.status === "queued") return "queued…";
|
|
286
|
+
if (job.status === "paused") return "Paused";
|
|
287
|
+
if (job.status === "failed") return "Failed";
|
|
288
|
+
return "Done";
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
function widgetStatusGlyph(job: AsyncJobState, theme: Theme): string {
|
|
292
|
+
if (job.status === "running") return theme.fg("accent", spinnerFrame());
|
|
293
|
+
if (job.status === "queued") return theme.fg("muted", "◦");
|
|
294
|
+
if (job.status === "complete") return theme.fg("success", "✓");
|
|
295
|
+
if (job.status === "paused") return theme.fg("warning", "■");
|
|
296
|
+
return theme.fg("error", "✗");
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
function widgetStepGlyph(status: AsyncJobStep["status"], theme: Theme): string {
|
|
300
|
+
if (status === "running") return theme.fg("accent", spinnerFrame());
|
|
301
|
+
if (status === "complete" || status === "completed") return theme.fg("success", "✓");
|
|
302
|
+
if (status === "failed") return theme.fg("error", "✗");
|
|
303
|
+
if (status === "paused") return theme.fg("warning", "■");
|
|
304
|
+
return theme.fg("muted", "◦");
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
function widgetStepStatus(status: AsyncJobStep["status"], theme: Theme): string {
|
|
308
|
+
if (status === "running") return theme.fg("accent", "running");
|
|
309
|
+
if (status === "complete" || status === "completed") return theme.fg("success", "complete");
|
|
310
|
+
if (status === "failed") return theme.fg("error", "failed");
|
|
311
|
+
if (status === "paused") return theme.fg("warning", "paused");
|
|
312
|
+
return theme.fg("dim", status);
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
function widgetStepActivity(step: NonNullable<AsyncJobState["steps"]>[number]): string {
|
|
316
|
+
const facts: string[] = [];
|
|
317
|
+
if (step.currentTool && step.currentToolStartedAt !== undefined) facts.push(`${step.currentTool} ${formatDuration(Math.max(0, Date.now() - step.currentToolStartedAt))}`);
|
|
318
|
+
else if (step.currentTool) facts.push(step.currentTool);
|
|
319
|
+
if (step.currentPath) facts.push(shortenPath(step.currentPath));
|
|
320
|
+
if (step.turnCount !== undefined) facts.push(`${step.turnCount} turns`);
|
|
321
|
+
if (step.toolCount !== undefined) facts.push(`${step.toolCount} tools`);
|
|
322
|
+
if (step.tokens?.total) facts.push(formatTokenStat(step.tokens.total));
|
|
323
|
+
const activity = formatActivityLabel(step.lastActivityAt, step.activityState);
|
|
324
|
+
if (activity && facts.length) return `${activity} · ${facts.join(" · ")}`;
|
|
325
|
+
if (activity) return activity;
|
|
326
|
+
return facts.join(" · ");
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
|
|
330
|
+
function widgetChainDetails(job: AsyncJobState, theme: Theme, expanded = false, width = getTermWidth()): string[] {
|
|
331
|
+
if (!job.steps?.length) return [];
|
|
332
|
+
const total = job.chainStepCount ?? job.steps.length;
|
|
333
|
+
const lines: string[] = [];
|
|
334
|
+
for (const span of buildAsyncChainStepSpans(total, job.steps.length, job.parallelGroups)) {
|
|
335
|
+
const steps = job.steps.slice(span.start, span.start + span.count);
|
|
336
|
+
if (span.isParallel) {
|
|
337
|
+
const status = aggregateStepStatus(steps);
|
|
338
|
+
lines.push(` ${widgetStepGlyph(status, theme)} Step ${span.stepIndex + 1}/${total}: ${themeBold(theme, "parallel group")} ${theme.fg("dim", "·")} ${theme.fg("dim", formatParallelOutcome(steps, span.count))}`);
|
|
339
|
+
continue;
|
|
340
|
+
}
|
|
341
|
+
const step = steps[0];
|
|
342
|
+
if (!step) {
|
|
343
|
+
lines.push(` ${theme.fg("dim", `◦ Step ${span.stepIndex + 1}/${total}: pending`)}`);
|
|
344
|
+
continue;
|
|
345
|
+
}
|
|
346
|
+
lines.push(...foregroundStyleWidgetStepLines(job, theme, step, "Step", span.stepIndex + 1, total, expanded, width));
|
|
347
|
+
}
|
|
348
|
+
return lines;
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
function widgetParallelAgentDetails(job: AsyncJobState, theme: Theme): string[] {
|
|
352
|
+
if (!job.steps?.length) return [];
|
|
353
|
+
if (job.mode !== "parallel" && job.mode !== "chain") return [];
|
|
354
|
+
if (job.mode === "chain" && !job.activeParallelGroup && job.parallelGroups?.length) return widgetChainDetails(job, theme);
|
|
355
|
+
const total = job.stepsTotal ?? job.steps.length;
|
|
356
|
+
return job.steps.map((step, index) => {
|
|
357
|
+
const marker = index === job.steps!.length - 1 ? "└" : "├";
|
|
358
|
+
const activity = widgetStepActivity(step);
|
|
359
|
+
const itemTitle = job.mode === "parallel" || job.activeParallelGroup ? "Agent" : "Step";
|
|
360
|
+
const modelDisplay = modelThinkingBadge(theme, step.model, step.thinking);
|
|
361
|
+
return ` ${theme.fg("dim", `${marker} ${widgetStepGlyph(step.status, theme)} ${itemTitle} ${index + 1}/${total}: ${step.agent} · ${widgetStepStatus(step.status, theme)}${modelDisplay}${activity ? ` · ${activity}` : ""}`)}`;
|
|
362
|
+
});
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
function parseParallelGroupAgentCount(label: string | undefined): number | undefined {
|
|
366
|
+
if (!label || !label.startsWith("[") || !label.endsWith("]")) return undefined;
|
|
367
|
+
const inner = label.slice(1, -1).trim();
|
|
368
|
+
if (!inner) return 0;
|
|
369
|
+
return inner.split("+").map((part) => part.trim()).filter(Boolean).length;
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
function isChainParallelGroupActive(details: Pick<Details, "mode" | "chainAgents" | "currentStepIndex">): boolean {
|
|
373
|
+
if (details.mode !== "chain") return false;
|
|
374
|
+
if (details.currentStepIndex === undefined) return false;
|
|
375
|
+
const currentLabel = details.chainAgents?.[details.currentStepIndex];
|
|
376
|
+
return parseParallelGroupAgentCount(currentLabel) !== undefined;
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
interface ChainStepSpan {
|
|
380
|
+
stepIndex: number;
|
|
381
|
+
start: number;
|
|
382
|
+
count: number;
|
|
383
|
+
isParallel: boolean;
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
function buildChainStepSpans(chainAgents: string[] | undefined): ChainStepSpan[] {
|
|
387
|
+
if (!chainAgents?.length) return [];
|
|
388
|
+
const spans: ChainStepSpan[] = [];
|
|
389
|
+
let start = 0;
|
|
390
|
+
for (let stepIndex = 0; stepIndex < chainAgents.length; stepIndex++) {
|
|
391
|
+
const label = chainAgents[stepIndex]!;
|
|
392
|
+
const parsedCount = parseParallelGroupAgentCount(label);
|
|
393
|
+
const count = parsedCount ?? 1;
|
|
394
|
+
spans.push({ stepIndex, start, count, isParallel: parsedCount !== undefined });
|
|
395
|
+
start += count;
|
|
396
|
+
}
|
|
397
|
+
return spans;
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
function buildAsyncChainStepSpans(total: number, stepCount: number, parallelGroups: AsyncParallelGroupStatus[] = []): ChainStepSpan[] {
|
|
401
|
+
const spans: ChainStepSpan[] = [];
|
|
402
|
+
let flatIndex = 0;
|
|
403
|
+
for (let stepIndex = 0; stepIndex < total; stepIndex++) {
|
|
404
|
+
const group = parallelGroups.find((candidate) => candidate.stepIndex === stepIndex);
|
|
405
|
+
if (group) {
|
|
406
|
+
spans.push({ stepIndex, start: group.start, count: group.count, isParallel: true });
|
|
407
|
+
flatIndex = Math.max(flatIndex, group.start + group.count);
|
|
408
|
+
continue;
|
|
409
|
+
}
|
|
410
|
+
spans.push({ stepIndex, start: flatIndex, count: flatIndex < stepCount ? 1 : 0, isParallel: false });
|
|
411
|
+
flatIndex++;
|
|
412
|
+
}
|
|
413
|
+
return spans;
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
function isDoneResult(result: Details["results"][number]): boolean {
|
|
417
|
+
const status = result.progress?.status;
|
|
418
|
+
if (status === "completed") return true;
|
|
419
|
+
if (status === "running" || status === "pending") return false;
|
|
420
|
+
if (result.interrupted || result.detached) return false;
|
|
421
|
+
return result.exitCode === 0;
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
interface MultiProgressLabel {
|
|
425
|
+
headerLabel: string;
|
|
426
|
+
itemTitle: "Step" | "Agent";
|
|
427
|
+
totalCount: number;
|
|
428
|
+
hasParallelInChain: boolean;
|
|
429
|
+
activeParallelGroup: boolean;
|
|
430
|
+
groupStartIndex: number;
|
|
431
|
+
groupEndIndex: number;
|
|
432
|
+
showActiveGroupOnly: boolean;
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
function buildMultiProgressLabel(details: Pick<Details, "mode" | "results" | "progress" | "totalSteps" | "currentStepIndex" | "chainAgents">, hasRunning: boolean): MultiProgressLabel {
|
|
436
|
+
const stepSpans = buildChainStepSpans(details.chainAgents);
|
|
437
|
+
const hasParallelInChain = details.mode === "chain" && stepSpans.some((span) => span.isParallel);
|
|
438
|
+
const activeParallelGroup = isChainParallelGroupActive(details);
|
|
439
|
+
const itemTitle: "Step" | "Agent" = details.mode === "parallel" || activeParallelGroup ? "Agent" : "Step";
|
|
440
|
+
|
|
441
|
+
if (details.mode === "parallel") {
|
|
442
|
+
const totalCount = details.totalSteps ?? details.results.length;
|
|
443
|
+
const statuses = new Array(totalCount).fill("pending") as Array<"pending" | "running" | "completed" | "failed" | "detached">;
|
|
444
|
+
for (const progress of details.progress ?? []) {
|
|
445
|
+
if (progress.index >= 0 && progress.index < totalCount) statuses[progress.index] = progress.status;
|
|
446
|
+
}
|
|
447
|
+
for (let i = 0; i < details.results.length; i++) {
|
|
448
|
+
const result = details.results[i]!;
|
|
449
|
+
const progressFromArray = details.progress?.find((progress) => progress.index === i)
|
|
450
|
+
|| details.progress?.find((progress) => progress.agent === result.agent && progress.status === "running");
|
|
451
|
+
const index = result.progress?.index ?? progressFromArray?.index ?? i;
|
|
452
|
+
if (index < 0 || index >= totalCount) continue;
|
|
453
|
+
const status = result.progress?.status
|
|
454
|
+
?? (result.interrupted || result.detached
|
|
455
|
+
? "detached"
|
|
456
|
+
: result.exitCode === 0
|
|
457
|
+
? "completed"
|
|
458
|
+
: "failed");
|
|
459
|
+
statuses[index] = status;
|
|
460
|
+
}
|
|
461
|
+
const running = statuses.filter((status) => status === "running").length;
|
|
462
|
+
const done = statuses.filter((status) => status === "completed").length;
|
|
463
|
+
const headerLabel = hasRunning
|
|
464
|
+
? `${formatAgentRunningLabel(running)} · ${done}/${totalCount} done`
|
|
465
|
+
: `${done}/${totalCount} done`;
|
|
466
|
+
return { headerLabel, itemTitle, totalCount, hasParallelInChain, activeParallelGroup, groupStartIndex: 0, groupEndIndex: totalCount, showActiveGroupOnly: false };
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
if (activeParallelGroup) {
|
|
470
|
+
const currentStepIndex = details.currentStepIndex!;
|
|
471
|
+
const span = stepSpans[currentStepIndex];
|
|
472
|
+
const groupSize = span?.count ?? 1;
|
|
473
|
+
const groupStart = span?.start ?? 0;
|
|
474
|
+
const groupEnd = groupStart + groupSize;
|
|
475
|
+
let running = 0;
|
|
476
|
+
let done = 0;
|
|
477
|
+
for (let index = groupStart; index < groupEnd; index++) {
|
|
478
|
+
const progressEntry = details.progress?.find((progress) => progress.index === index);
|
|
479
|
+
const resultEntry = details.results.find((result) => result.progress?.index === index);
|
|
480
|
+
if (progressEntry?.status === "running") {
|
|
481
|
+
running++;
|
|
482
|
+
continue;
|
|
483
|
+
}
|
|
484
|
+
if (progressEntry?.status === "completed") {
|
|
485
|
+
done++;
|
|
486
|
+
continue;
|
|
487
|
+
}
|
|
488
|
+
if (resultEntry && isDoneResult(resultEntry)) done++;
|
|
489
|
+
}
|
|
490
|
+
const totalSteps = details.totalSteps ?? details.chainAgents?.length ?? 1;
|
|
491
|
+
const headerLabel = hasRunning
|
|
492
|
+
? `step ${currentStepIndex + 1}/${totalSteps} · parallel group: ${formatAgentRunningLabel(running)} · ${done}/${groupSize} done`
|
|
493
|
+
: `step ${currentStepIndex + 1}/${totalSteps} · parallel group: ${done}/${groupSize} done`;
|
|
494
|
+
return { headerLabel, itemTitle, totalCount: groupSize, hasParallelInChain, activeParallelGroup, groupStartIndex: groupStart, groupEndIndex: groupEnd, showActiveGroupOnly: true };
|
|
495
|
+
}
|
|
496
|
+
|
|
497
|
+
if (details.mode === "chain" && details.chainAgents?.length) {
|
|
498
|
+
const totalCount = details.totalSteps ?? details.chainAgents.length;
|
|
499
|
+
const doneLogical = stepSpans.filter((span) => {
|
|
500
|
+
for (let index = span.start; index < span.start + span.count; index++) {
|
|
501
|
+
const progressEntry = details.progress?.find((progress) => progress.index === index);
|
|
502
|
+
const resultEntry = details.results.find((result) => result.progress?.index === index) ?? details.results[index];
|
|
503
|
+
if (progressEntry?.status === "running" || progressEntry?.status === "pending") return false;
|
|
504
|
+
if (resultEntry && !isDoneResult(resultEntry)) return false;
|
|
505
|
+
}
|
|
506
|
+
return true;
|
|
507
|
+
}).length;
|
|
508
|
+
const currentStep = details.currentStepIndex !== undefined ? details.currentStepIndex + 1 : Math.min(totalCount, doneLogical + (hasRunning ? 1 : 0));
|
|
509
|
+
const headerLabel = hasRunning ? `step ${currentStep}/${totalCount}` : `step ${doneLogical}/${totalCount}`;
|
|
510
|
+
return { headerLabel, itemTitle, totalCount, hasParallelInChain, activeParallelGroup, groupStartIndex: 0, groupEndIndex: details.results.length, showActiveGroupOnly: false };
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
const totalCount = details.totalSteps ?? details.results.length;
|
|
514
|
+
const currentStep = details.currentStepIndex !== undefined ? details.currentStepIndex + 1 : Math.min(totalCount, details.results.filter(isDoneResult).length + (hasRunning ? 1 : 0));
|
|
515
|
+
const done = details.results.filter(isDoneResult).length;
|
|
516
|
+
const headerLabel = hasRunning ? `step ${currentStep}/${totalCount}` : `step ${done}/${totalCount}`;
|
|
517
|
+
return { headerLabel, itemTitle, totalCount, hasParallelInChain, activeParallelGroup, groupStartIndex: 0, groupEndIndex: details.results.length, showActiveGroupOnly: false };
|
|
518
|
+
}
|
|
519
|
+
|
|
520
|
+
function resultRowLabel(details: Pick<Details, "mode" | "chainAgents">, label: MultiProgressLabel, resultIndex: number, stepNumber: number): string {
|
|
521
|
+
if (details.mode === "chain" && label.hasParallelInChain) {
|
|
522
|
+
const span = buildChainStepSpans(details.chainAgents).find((candidate) => resultIndex >= candidate.start && resultIndex < candidate.start + candidate.count);
|
|
523
|
+
if (span?.isParallel) return `Agent ${resultIndex - span.start + 1}/${span.count}`;
|
|
524
|
+
if (span) return `Step ${span.stepIndex + 1}`;
|
|
525
|
+
}
|
|
526
|
+
if (label.itemTitle === "Agent") {
|
|
527
|
+
const localStepNumber = label.activeParallelGroup
|
|
528
|
+
? Math.max(1, stepNumber - label.groupStartIndex)
|
|
529
|
+
: stepNumber;
|
|
530
|
+
return `Agent ${localStepNumber}/${label.totalCount}`;
|
|
531
|
+
}
|
|
532
|
+
return `Step ${stepNumber}`;
|
|
533
|
+
}
|
|
534
|
+
|
|
535
|
+
function widgetStats(job: AsyncJobState, theme: Theme): string {
|
|
536
|
+
const parts: string[] = [];
|
|
537
|
+
const stepsTotal = job.stepsTotal ?? (job.agents?.length ?? 1);
|
|
538
|
+
if (job.activeParallelGroup) {
|
|
539
|
+
const running = job.runningSteps ?? (job.status === "running" ? 1 : 0);
|
|
540
|
+
const done = job.completedSteps ?? (job.status === "complete" ? stepsTotal : 0);
|
|
541
|
+
if (job.mode === "parallel") {
|
|
542
|
+
if (job.status === "running" && running > 0) parts.push(formatAgentRunningLabel(running));
|
|
543
|
+
if (stepsTotal > 0) parts.push(`${done}/${stepsTotal} done`);
|
|
544
|
+
} else {
|
|
545
|
+
const activeGroup = job.currentStep !== undefined
|
|
546
|
+
? job.parallelGroups?.find((group) => job.currentStep! >= group.start && job.currentStep! < group.start + group.count)
|
|
547
|
+
: job.parallelGroups?.find((group) => group.start === 0);
|
|
548
|
+
const logicalStep = activeGroup?.stepIndex ?? job.currentStep ?? 0;
|
|
549
|
+
const total = job.chainStepCount ?? stepsTotal;
|
|
550
|
+
const groupParts = [`${done}/${stepsTotal} done`];
|
|
551
|
+
if (job.status === "running" && running > 0) groupParts.unshift(formatAgentRunningLabel(running));
|
|
552
|
+
parts.push(`step ${logicalStep + 1}/${total} · parallel group: ${groupParts.join(" · ")}`);
|
|
553
|
+
}
|
|
554
|
+
} else if (job.currentStep !== undefined) {
|
|
555
|
+
if (job.mode === "chain" && job.parallelGroups?.length) {
|
|
556
|
+
const total = job.chainStepCount ?? stepsTotal;
|
|
557
|
+
parts.push(`step ${flatToLogicalStepIndex(job.currentStep, total, job.parallelGroups) + 1}/${total}`);
|
|
558
|
+
} else {
|
|
559
|
+
parts.push(`step ${job.currentStep + 1}/${stepsTotal}`);
|
|
560
|
+
}
|
|
561
|
+
} else if (stepsTotal > 1) {
|
|
562
|
+
parts.push(`steps ${stepsTotal}`);
|
|
563
|
+
}
|
|
564
|
+
if (job.toolCount !== undefined) parts.push(formatToolUseStat(job.toolCount));
|
|
565
|
+
if (job.totalTokens?.total) parts.push(formatTokenStat(job.totalTokens.total));
|
|
566
|
+
const endTime = job.status === "complete" || job.status === "failed" || job.status === "paused" ? (job.updatedAt ?? Date.now()) : Date.now();
|
|
567
|
+
if (job.startedAt) parts.push(formatDuration(Math.max(0, endTime - job.startedAt)));
|
|
568
|
+
return statJoin(theme, parts);
|
|
569
|
+
}
|
|
570
|
+
|
|
571
|
+
function widgetStepStats(theme: Theme, step: NonNullable<AsyncJobState["steps"]>[number]): string {
|
|
572
|
+
return statJoin(theme, [
|
|
573
|
+
step.turnCount !== undefined ? `${step.turnCount} turns` : "",
|
|
574
|
+
step.toolCount !== undefined ? formatToolUseStat(step.toolCount) : "",
|
|
575
|
+
step.tokens?.total ? formatTokenStat(step.tokens.total) : "",
|
|
576
|
+
step.durationMs !== undefined ? formatDuration(step.durationMs) : "",
|
|
577
|
+
]);
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
function modelThinkingBadge(theme: Theme, model?: string, thinking?: string): string {
|
|
581
|
+
const label = formatModelThinking(model, thinking);
|
|
582
|
+
return label ? theme.fg("dim", ` (${label})`) : "";
|
|
583
|
+
}
|
|
584
|
+
|
|
585
|
+
function widgetStepActivityLine(step: NonNullable<AsyncJobState["steps"]>[number], width: number, expanded: boolean): string {
|
|
586
|
+
const toolLine = formatCurrentToolLine(step, width, expanded);
|
|
587
|
+
if (toolLine) return toolLine;
|
|
588
|
+
const activity = formatActivityLabel(step.lastActivityAt, step.activityState);
|
|
589
|
+
if (activity) return activity;
|
|
590
|
+
if (step.status === "running") return "thinking…";
|
|
591
|
+
return "";
|
|
592
|
+
}
|
|
593
|
+
|
|
594
|
+
function widgetOutputPath(job: AsyncJobState, step: NonNullable<AsyncJobState["steps"]>[number]): string | undefined {
|
|
595
|
+
if (typeof step.index !== "number") return undefined;
|
|
596
|
+
return path.join(job.asyncDir, `output-${step.index}.log`);
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
function foregroundStyleWidgetStepLines(
|
|
600
|
+
job: AsyncJobState,
|
|
601
|
+
theme: Theme,
|
|
602
|
+
step: NonNullable<AsyncJobState["steps"]>[number],
|
|
603
|
+
itemTitle: "Agent" | "Step",
|
|
604
|
+
index: number,
|
|
605
|
+
total: number,
|
|
606
|
+
expanded: boolean,
|
|
607
|
+
width: number,
|
|
608
|
+
): string[] {
|
|
609
|
+
const status = widgetStepStatus(step.status, theme);
|
|
610
|
+
const stats = widgetStepStats(theme, step);
|
|
611
|
+
const modelDisplay = modelThinkingBadge(theme, step.model, step.thinking);
|
|
612
|
+
const lines = [` ${widgetStepGlyph(step.status, theme)} ${itemTitle} ${index}/${total}: ${themeBold(theme, step.agent)} ${theme.fg("dim", "·")} ${status}${modelDisplay}${stats ? ` ${theme.fg("dim", "·")} ${stats}` : ""}`];
|
|
613
|
+
const activity = widgetStepActivityLine(step, width, expanded);
|
|
614
|
+
if (activity) lines.push(` ${theme.fg("dim", `⎿ ${activity}`)}`);
|
|
615
|
+
if (step.status === "running") {
|
|
616
|
+
if (!expanded) lines.push(` ${theme.fg("accent", "Press Ctrl+O for live detail")}`);
|
|
617
|
+
const output = widgetOutputPath(job, step);
|
|
618
|
+
if (output) lines.push(` ${theme.fg("dim", `output: ${shortenPath(output)}`)}`);
|
|
619
|
+
if (expanded) {
|
|
620
|
+
const liveStatus = buildLiveStatusLine(step);
|
|
621
|
+
if (liveStatus && liveStatus !== activity) lines.push(` ${theme.fg("accent", liveStatus)}`);
|
|
622
|
+
for (const tool of step.recentTools?.slice(-3) ?? []) {
|
|
623
|
+
const maxArgsLen = Math.max(40, width - 30);
|
|
624
|
+
const argsPreview = tool.args.length <= maxArgsLen ? tool.args : `${tool.args.slice(0, maxArgsLen)}...`;
|
|
625
|
+
lines.push(` ${theme.fg("dim", `${tool.tool}${argsPreview ? `: ${argsPreview}` : ""}`)}`);
|
|
626
|
+
}
|
|
627
|
+
for (const line of step.recentOutput?.slice(-5) ?? []) {
|
|
628
|
+
lines.push(` ${theme.fg("dim", line)}`);
|
|
629
|
+
}
|
|
630
|
+
}
|
|
631
|
+
}
|
|
632
|
+
return lines;
|
|
633
|
+
}
|
|
634
|
+
|
|
635
|
+
function foregroundStyleWidgetDetails(job: AsyncJobState, theme: Theme, expanded: boolean, width: number): string[] {
|
|
636
|
+
if (!job.steps?.length) return [` ${theme.fg("dim", `⎿ ${widgetActivity(job)}`)}`];
|
|
637
|
+
if (job.mode === "chain" && !job.activeParallelGroup && job.parallelGroups?.length) return widgetChainDetails(job, theme, expanded, width);
|
|
638
|
+
const total = job.stepsTotal ?? job.steps.length;
|
|
639
|
+
const itemTitle = job.mode === "parallel" || job.activeParallelGroup ? "Agent" : "Step";
|
|
640
|
+
const lines: string[] = [];
|
|
641
|
+
for (const [index, step] of job.steps.entries()) {
|
|
642
|
+
lines.push(...foregroundStyleWidgetStepLines(job, theme, step, itemTitle, index + 1, total, expanded, width));
|
|
643
|
+
}
|
|
644
|
+
return lines;
|
|
645
|
+
}
|
|
646
|
+
|
|
647
|
+
function buildSingleWidgetLines(job: AsyncJobState, theme: Theme, width: number, expanded: boolean): string[] {
|
|
648
|
+
const stats = widgetStats(job, theme);
|
|
649
|
+
const count = job.mode === "chain" ? job.chainStepCount : job.stepsTotal ?? job.agents?.length ?? job.steps?.length;
|
|
650
|
+
const mode = widgetJobName(job);
|
|
651
|
+
const title = `async subagent ${mode}${count && count > 1 ? ` (${count})` : ""}`;
|
|
652
|
+
return [
|
|
653
|
+
`${theme.fg("toolTitle", themeBold(theme, title))} ${theme.fg("dim", "· background")}`,
|
|
654
|
+
`${widgetStatusGlyph(job, theme)} ${themeBold(theme, mode)}${stats ? ` ${theme.fg("dim", "·")} ${stats}` : ""}`,
|
|
655
|
+
...foregroundStyleWidgetDetails(job, theme, expanded, width),
|
|
656
|
+
].map((line) => truncLine(line, width));
|
|
657
|
+
}
|
|
658
|
+
|
|
659
|
+
function compactSingleWidgetLines(job: AsyncJobState, theme: Theme, width: number): string[] {
|
|
660
|
+
const fullLines = buildSingleWidgetLines(job, theme, width, false);
|
|
661
|
+
if (fullLines.length <= 10 || !job.steps?.length || (job.mode !== "parallel" && !job.activeParallelGroup)) return fullLines;
|
|
662
|
+
|
|
663
|
+
const total = job.stepsTotal ?? job.steps.length;
|
|
664
|
+
const itemTitle = job.mode === "parallel" || job.activeParallelGroup ? "Agent" : "Step";
|
|
665
|
+
const lines = fullLines.slice(0, 2);
|
|
666
|
+
for (const [index, step] of job.steps.entries()) {
|
|
667
|
+
const status = widgetStepStatus(step.status, theme);
|
|
668
|
+
const activity = widgetStepActivityLine(step, width, false);
|
|
669
|
+
const stepStats = widgetStepStats(theme, step);
|
|
670
|
+
const activitySuffix = activity ? ` ${theme.fg("dim", "·")} ${theme.fg("dim", activity)}` : "";
|
|
671
|
+
const modelDisplay = modelThinkingBadge(theme, step.model, step.thinking);
|
|
672
|
+
lines.push(` ${widgetStepGlyph(step.status, theme)} ${itemTitle} ${index + 1}/${total}: ${themeBold(theme, step.agent)} ${theme.fg("dim", "·")} ${status}${modelDisplay}${activitySuffix}${stepStats ? ` ${theme.fg("dim", "·")} ${stepStats}` : ""}`);
|
|
673
|
+
}
|
|
674
|
+
if (job.steps.some((step) => step.status === "running")) lines.push(theme.fg("accent", " Press Ctrl+O for live detail"));
|
|
675
|
+
return lines.map((line) => truncLine(line, width));
|
|
676
|
+
}
|
|
677
|
+
|
|
678
|
+
function fitWidgetLineBudget(lines: string[], theme: Theme, width: number, expanded: boolean): string[] {
|
|
679
|
+
const rows = process.stdout.rows || 30;
|
|
680
|
+
const budget = expanded
|
|
681
|
+
? Math.max(12, Math.min(24, Math.floor(rows * 0.55)))
|
|
682
|
+
: Math.max(10, Math.min(14, Math.floor(rows * 0.35)));
|
|
683
|
+
if (lines.length <= budget) return lines;
|
|
684
|
+
const visibleLines = Math.max(1, budget - 1);
|
|
685
|
+
const hiddenCount = lines.length - visibleLines;
|
|
686
|
+
const hint = expanded
|
|
687
|
+
? `… ${hiddenCount} live-detail lines hidden`
|
|
688
|
+
: `… ${hiddenCount} lines hidden · Ctrl+O expands`;
|
|
689
|
+
return [...lines.slice(0, visibleLines), truncLine(theme.fg("dim", hint), width)];
|
|
690
|
+
}
|
|
691
|
+
|
|
692
|
+
function buildWidgetComponent(jobs: AsyncJobState[], expanded: boolean): (_tui: unknown, theme: Theme) => Component {
|
|
693
|
+
return (_tui, theme) => {
|
|
694
|
+
const width = getTermWidth();
|
|
695
|
+
const lines = expanded
|
|
696
|
+
? buildWidgetLines(jobs, theme, width, true)
|
|
697
|
+
: jobs.length === 1
|
|
698
|
+
? compactSingleWidgetLines(jobs[0]!, theme, width)
|
|
699
|
+
: buildWidgetLines(jobs, theme, width, false);
|
|
700
|
+
const container = new Container();
|
|
701
|
+
for (const line of fitWidgetLineBudget(lines, theme, width, expanded)) container.addChild(new Text(line, 1, 0));
|
|
702
|
+
return container;
|
|
703
|
+
};
|
|
704
|
+
}
|
|
705
|
+
|
|
706
|
+
export function buildWidgetLines(jobs: AsyncJobState[], theme: Theme, width = getTermWidth(), expanded = false): string[] {
|
|
707
|
+
if (jobs.length === 0) return [];
|
|
708
|
+
if (jobs.length === 1) return buildSingleWidgetLines(jobs[0]!, theme, width, expanded);
|
|
709
|
+
const running = jobs.filter((job) => job.status === "running");
|
|
710
|
+
const queued = jobs.filter((job) => job.status === "queued");
|
|
711
|
+
const finished = jobs.filter((job) => job.status !== "running" && job.status !== "queued");
|
|
712
|
+
|
|
713
|
+
const lines: string[] = [];
|
|
714
|
+
const hasActive = running.length > 0 || queued.length > 0;
|
|
715
|
+
lines.push(truncLine(`${theme.fg(hasActive ? "accent" : "dim", hasActive ? "●" : "○")} ${theme.fg(hasActive ? "accent" : "dim", "Async agents")} ${theme.fg("dim", "· background")}`, width));
|
|
716
|
+
|
|
717
|
+
const items: string[][] = [];
|
|
718
|
+
let hiddenRunning = 0;
|
|
719
|
+
let hiddenFinished = 0;
|
|
720
|
+
let queuedSummaryShown = false;
|
|
721
|
+
let slots = MAX_WIDGET_JOBS;
|
|
722
|
+
|
|
723
|
+
for (const job of running) {
|
|
724
|
+
if (slots <= 0) { hiddenRunning++; continue; }
|
|
725
|
+
const stats = widgetStats(job, theme);
|
|
726
|
+
items.push([
|
|
727
|
+
`${widgetStatusGlyph(job, theme)} ${themeBold(theme, widgetJobName(job))}${stats ? ` ${theme.fg("dim", "·")} ${stats}` : ""}`,
|
|
728
|
+
` ${theme.fg("dim", `⎿ ${widgetActivity(job)}`)}`,
|
|
729
|
+
...widgetParallelAgentDetails(job, theme),
|
|
730
|
+
]);
|
|
731
|
+
slots--;
|
|
732
|
+
}
|
|
733
|
+
|
|
734
|
+
if (queued.length > 0 && slots > 0) {
|
|
735
|
+
items.push([`${theme.fg("muted", "◦")} ${theme.fg("dim", `${queued.length} queued`)}`]);
|
|
736
|
+
queuedSummaryShown = true;
|
|
737
|
+
slots--;
|
|
738
|
+
}
|
|
739
|
+
|
|
740
|
+
for (const job of finished) {
|
|
741
|
+
if (slots <= 0) { hiddenFinished++; continue; }
|
|
742
|
+
const stats = widgetStats(job, theme);
|
|
743
|
+
items.push([
|
|
744
|
+
`${widgetStatusGlyph(job, theme)} ${themeBold(theme, widgetJobName(job))}${stats ? ` ${theme.fg("dim", "·")} ${stats}` : ""}`,
|
|
745
|
+
` ${theme.fg("dim", `⎿ ${widgetActivity(job)}`)}`,
|
|
746
|
+
...widgetParallelAgentDetails(job, theme),
|
|
747
|
+
]);
|
|
748
|
+
slots--;
|
|
749
|
+
}
|
|
750
|
+
|
|
751
|
+
const hiddenQueued = queued.length > 0 && !queuedSummaryShown ? queued.length : 0;
|
|
752
|
+
const hiddenTotal = hiddenRunning + hiddenFinished + hiddenQueued;
|
|
753
|
+
if (hiddenTotal > 0) {
|
|
754
|
+
const parts: string[] = [];
|
|
755
|
+
if (hiddenRunning > 0) parts.push(`${hiddenRunning} running`);
|
|
756
|
+
if (hiddenQueued > 0) parts.push(`${hiddenQueued} queued`);
|
|
757
|
+
if (hiddenFinished > 0) parts.push(`${hiddenFinished} finished`);
|
|
758
|
+
items.push([theme.fg("dim", `+${hiddenTotal} more (${parts.join(", ")})`)]);
|
|
759
|
+
}
|
|
760
|
+
|
|
761
|
+
for (let i = 0; i < items.length; i++) {
|
|
762
|
+
const item = items[i]!;
|
|
763
|
+
const last = i === items.length - 1;
|
|
764
|
+
const branch = last ? "└─" : "├─";
|
|
765
|
+
const continuation = last ? " " : "│ ";
|
|
766
|
+
lines.push(truncLine(`${theme.fg("dim", branch)} ${item[0]}`, width));
|
|
767
|
+
for (const detail of item.slice(1)) {
|
|
768
|
+
lines.push(truncLine(`${theme.fg("dim", continuation)} ${detail}`, width));
|
|
769
|
+
}
|
|
770
|
+
}
|
|
771
|
+
|
|
772
|
+
return lines;
|
|
773
|
+
}
|
|
774
|
+
|
|
775
|
+
function refreshAnimatedWidget(): void {
|
|
776
|
+
try {
|
|
777
|
+
if (!latestWidgetCtx?.hasUI || latestWidgetJobs.length === 0) return;
|
|
778
|
+
latestWidgetCtx.ui.setWidget(WIDGET_KEY, buildWidgetComponent(latestWidgetJobs, latestWidgetCtx.ui.getToolsExpanded?.() ?? false));
|
|
779
|
+
latestWidgetCtx.ui.requestRender?.();
|
|
780
|
+
} catch (error) {
|
|
781
|
+
if (!isStaleExtensionContextError(error)) throw error;
|
|
782
|
+
stopWidgetAnimation();
|
|
783
|
+
}
|
|
784
|
+
}
|
|
785
|
+
|
|
786
|
+
function ensureWidgetAnimation(): void {
|
|
787
|
+
if (widgetTimer) return;
|
|
788
|
+
widgetTimer = setInterval(() => {
|
|
789
|
+
if (!hasAnimatedWidgetJobs(latestWidgetJobs)) {
|
|
790
|
+
stopWidgetAnimation();
|
|
791
|
+
return;
|
|
792
|
+
}
|
|
793
|
+
refreshAnimatedWidget();
|
|
794
|
+
}, WIDGET_ANIMATION_MS);
|
|
795
|
+
widgetTimer.unref?.();
|
|
796
|
+
}
|
|
797
|
+
|
|
798
|
+
export function stopWidgetAnimation(): void {
|
|
799
|
+
if (widgetTimer) {
|
|
800
|
+
clearInterval(widgetTimer);
|
|
801
|
+
widgetTimer = undefined;
|
|
802
|
+
}
|
|
803
|
+
latestWidgetCtx = undefined;
|
|
804
|
+
latestWidgetJobs = [];
|
|
805
|
+
outputActivityCache.clear();
|
|
806
|
+
}
|
|
807
|
+
|
|
808
|
+
export function stopResultAnimations(): void {
|
|
809
|
+
for (const [timer, state] of resultAnimationTimers) {
|
|
810
|
+
clearInterval(timer);
|
|
811
|
+
state.subagentResultAnimationTimer = undefined;
|
|
812
|
+
}
|
|
813
|
+
resultAnimationTimers.clear();
|
|
814
|
+
}
|
|
815
|
+
|
|
816
|
+
/**
|
|
817
|
+
* Render the async jobs widget
|
|
818
|
+
*/
|
|
819
|
+
export function renderWidget(ctx: ExtensionContext, jobs: AsyncJobState[]): void {
|
|
820
|
+
if (jobs.length === 0) {
|
|
821
|
+
stopWidgetAnimation();
|
|
822
|
+
if (ctx.hasUI) ctx.ui.setWidget(WIDGET_KEY, undefined);
|
|
823
|
+
return;
|
|
824
|
+
}
|
|
825
|
+
if (!ctx.hasUI) {
|
|
826
|
+
stopWidgetAnimation();
|
|
827
|
+
return;
|
|
828
|
+
}
|
|
829
|
+
latestWidgetCtx = ctx;
|
|
830
|
+
latestWidgetJobs = [...jobs];
|
|
831
|
+
|
|
832
|
+
ctx.ui.setWidget(WIDGET_KEY, buildWidgetComponent(jobs, ctx.ui.getToolsExpanded?.() ?? false));
|
|
833
|
+
if (hasAnimatedWidgetJobs(jobs)) ensureWidgetAnimation();
|
|
834
|
+
else stopWidgetAnimation();
|
|
835
|
+
}
|
|
836
|
+
|
|
837
|
+
function renderSingleCompact(d: Details, r: Details["results"][number], theme: Theme): Component {
|
|
838
|
+
const output = r.truncation?.text || getSingleResultOutput(r);
|
|
839
|
+
const progress = r.progress || r.progressSummary;
|
|
840
|
+
const isRunning = r.progress?.status === "running";
|
|
841
|
+
const contextBadge = d.context === "fork" ? theme.fg("warning", " [fork]") : "";
|
|
842
|
+
const stats = statJoin(theme, [
|
|
843
|
+
r.usage?.turns ? `⟳${r.usage.turns}` : "",
|
|
844
|
+
formatProgressStats(theme, progress),
|
|
845
|
+
]);
|
|
846
|
+
const c = new Container();
|
|
847
|
+
const width = getTermWidth() - 4;
|
|
848
|
+
const modelDisplay = modelThinkingBadge(theme, r.model);
|
|
849
|
+
c.addChild(new Text(truncLine(`${resultGlyph(r, output, theme, isRunning)} ${theme.fg("toolTitle", theme.bold(r.agent))}${modelDisplay}${contextBadge}${stats ? ` ${theme.fg("dim", "·")} ${stats}` : ""}`, width), 0, 0));
|
|
850
|
+
|
|
851
|
+
if (isRunning && r.progress) {
|
|
852
|
+
const activity = compactCurrentActivity(r.progress);
|
|
853
|
+
c.addChild(new Text(truncLine(theme.fg("dim", ` ⎿ ${activity}`), width), 0, 0));
|
|
854
|
+
const liveStatus = buildLiveStatusLine(r.progress);
|
|
855
|
+
if (liveStatus && liveStatus !== activity) c.addChild(new Text(truncLine(theme.fg("dim", ` ${liveStatus}`), width), 0, 0));
|
|
856
|
+
c.addChild(new Text(truncLine(theme.fg("accent", " Press Ctrl+O for live detail"), width), 0, 0));
|
|
857
|
+
if (r.artifactPaths) c.addChild(new Text(truncLine(theme.fg("dim", ` output: ${shortenPath(r.artifactPaths.outputPath)}`), width), 0, 0));
|
|
858
|
+
return c;
|
|
859
|
+
}
|
|
860
|
+
|
|
861
|
+
c.addChild(new Text(truncLine(theme.fg("dim", ` ⎿ ${resultStatusLine(r, output)}`), width), 0, 0));
|
|
862
|
+
const preview = firstOutputLine(output);
|
|
863
|
+
if (preview && r.exitCode === 0 && !hasEmptyTextOutputWithoutOutputTarget(r.task, output)) {
|
|
864
|
+
c.addChild(new Text(truncLine(theme.fg("dim", ` ${preview}`), width), 0, 0));
|
|
865
|
+
}
|
|
866
|
+
if (r.sessionFile) c.addChild(new Text(truncLine(theme.fg("dim", ` session: ${shortenPath(r.sessionFile)}`), width), 0, 0));
|
|
867
|
+
if (r.artifactPaths) c.addChild(new Text(truncLine(theme.fg("dim", ` output: ${shortenPath(r.artifactPaths.outputPath)}`), width), 0, 0));
|
|
868
|
+
if (r.truncation?.artifactPath) c.addChild(new Text(truncLine(theme.fg("dim", ` full output: ${shortenPath(r.truncation.artifactPath)}`), width), 0, 0));
|
|
869
|
+
return c;
|
|
870
|
+
}
|
|
871
|
+
|
|
872
|
+
function renderMultiCompact(d: Details, theme: Theme): Component {
|
|
873
|
+
const hasRunning = d.progress?.some((p) => p.status === "running")
|
|
874
|
+
|| d.results.some((r) => r.progress?.status === "running");
|
|
875
|
+
const failed = d.results.some((r) => r.exitCode !== 0 && r.progress?.status !== "running");
|
|
876
|
+
const paused = d.results.some((r) => (r.interrupted || r.detached) && r.progress?.status !== "running");
|
|
877
|
+
let totalSummary = d.progressSummary;
|
|
878
|
+
if (!totalSummary) {
|
|
879
|
+
let sawProgress = false;
|
|
880
|
+
const summary = { toolCount: 0, tokens: 0, durationMs: 0 };
|
|
881
|
+
for (const r of d.results) {
|
|
882
|
+
const prog = r.progress || r.progressSummary;
|
|
883
|
+
if (!prog) continue;
|
|
884
|
+
sawProgress = true;
|
|
885
|
+
summary.toolCount += prog.toolCount;
|
|
886
|
+
summary.tokens += prog.tokens;
|
|
887
|
+
summary.durationMs = d.mode === "chain" ? summary.durationMs + prog.durationMs : Math.max(summary.durationMs, prog.durationMs);
|
|
888
|
+
}
|
|
889
|
+
if (sawProgress) totalSummary = summary;
|
|
890
|
+
}
|
|
891
|
+
const multiLabel = buildMultiProgressLabel(d, hasRunning);
|
|
892
|
+
const itemTitle = multiLabel.itemTitle;
|
|
893
|
+
const stats = statJoin(theme, [multiLabel.headerLabel, formatProgressStats(theme, totalSummary)]);
|
|
894
|
+
const glyph = hasRunning
|
|
895
|
+
? theme.fg("accent", spinnerFrame())
|
|
896
|
+
: failed
|
|
897
|
+
? theme.fg("error", "✗")
|
|
898
|
+
: paused
|
|
899
|
+
? theme.fg("warning", "■")
|
|
900
|
+
: theme.fg("success", "✓");
|
|
901
|
+
const contextBadge = d.context === "fork" ? theme.fg("warning", " [fork]") : "";
|
|
902
|
+
const c = new Container();
|
|
903
|
+
const width = getTermWidth() - 4;
|
|
904
|
+
c.addChild(new Text(truncLine(`${glyph} ${theme.fg("toolTitle", theme.bold(d.mode))}${contextBadge}${stats ? ` ${theme.fg("dim", "·")} ${stats}` : ""}`, width), 0, 0));
|
|
905
|
+
|
|
906
|
+
const useResultsDirectly = multiLabel.hasParallelInChain || !d.chainAgents?.length;
|
|
907
|
+
const displayStart = multiLabel.showActiveGroupOnly ? multiLabel.groupStartIndex : 0;
|
|
908
|
+
const displayEnd = multiLabel.showActiveGroupOnly ? multiLabel.groupEndIndex : (useResultsDirectly ? d.results.length : d.chainAgents!.length);
|
|
909
|
+
for (let i = displayStart; i < displayEnd; i++) {
|
|
910
|
+
const r = d.results[i];
|
|
911
|
+
const fallbackLabel = itemTitle.toLowerCase();
|
|
912
|
+
const rowNumber = multiLabel.showActiveGroupOnly ? (i - multiLabel.groupStartIndex + 1) : (i + 1);
|
|
913
|
+
const agentName = useResultsDirectly ? (r?.agent || `${fallbackLabel}-${rowNumber}`) : (d.chainAgents![i] || r?.agent || `${fallbackLabel}-${rowNumber}`);
|
|
914
|
+
if (!r) {
|
|
915
|
+
c.addChild(new Text(truncLine(theme.fg("dim", ` ◦ ${itemTitle} ${rowNumber}: ${agentName} · pending`), width), 0, 0));
|
|
916
|
+
continue;
|
|
917
|
+
}
|
|
918
|
+
const output = getSingleResultOutput(r);
|
|
919
|
+
const progressFromArray = d.progress?.find((p) => p.index === i) || d.progress?.find((p) => p.agent === r.agent && p.status === "running");
|
|
920
|
+
const rProg = r.progress || progressFromArray || r.progressSummary;
|
|
921
|
+
const rRunning = rProg && "status" in rProg && rProg.status === "running";
|
|
922
|
+
const rPending = rProg && "status" in rProg && rProg.status === "pending";
|
|
923
|
+
const stepNumber = r.progress?.index !== undefined ? r.progress.index + 1 : progressFromArray?.index !== undefined ? progressFromArray.index + 1 : i + 1;
|
|
924
|
+
const stepStats = formatProgressStats(theme, rProg);
|
|
925
|
+
const glyph = rPending ? theme.fg("dim", "◦") : resultGlyph(r, output, theme, rRunning);
|
|
926
|
+
const pendingLabel = rPending ? ` ${theme.fg("dim", "· pending")}` : "";
|
|
927
|
+
const stepLabel = resultRowLabel(d, multiLabel, i, stepNumber);
|
|
928
|
+
const line = `${glyph} ${stepLabel}: ${themeBold(theme, agentName)}${stepStats ? ` ${theme.fg("dim", "·")} ${stepStats}` : ""}${pendingLabel}`;
|
|
929
|
+
c.addChild(new Text(truncLine(` ${line}`, width), 0, 0));
|
|
930
|
+
if (rRunning && rProg && "status" in rProg) {
|
|
931
|
+
const activity = compactCurrentActivity(rProg);
|
|
932
|
+
c.addChild(new Text(truncLine(theme.fg("dim", ` ⎿ ${activity}`), width), 0, 0));
|
|
933
|
+
c.addChild(new Text(truncLine(theme.fg("accent", " Press Ctrl+O for live detail"), width), 0, 0));
|
|
934
|
+
} else if (!rPending && (r.exitCode !== 0 || r.interrupted || r.detached || hasEmptyTextOutputWithoutOutputTarget(r.task, output))) {
|
|
935
|
+
c.addChild(new Text(truncLine(theme.fg(r.exitCode !== 0 ? "error" : "dim", ` ⎿ ${resultStatusLine(r, output)}`), width), 0, 0));
|
|
936
|
+
}
|
|
937
|
+
const outputTarget = extractOutputTarget(r.task);
|
|
938
|
+
if (outputTarget) c.addChild(new Text(truncLine(theme.fg("dim", ` output: ${outputTarget}`), width), 0, 0));
|
|
939
|
+
if (r.artifactPaths) c.addChild(new Text(truncLine(theme.fg("dim", ` output: ${shortenPath(r.artifactPaths.outputPath)}`), width), 0, 0));
|
|
940
|
+
}
|
|
941
|
+
if (d.artifacts) c.addChild(new Text(truncLine(theme.fg("dim", ` artifacts: ${shortenPath(d.artifacts.dir)}`), width), 0, 0));
|
|
942
|
+
return c;
|
|
943
|
+
}
|
|
944
|
+
|
|
945
|
+
/**
|
|
946
|
+
* Render a subagent result
|
|
947
|
+
*/
|
|
948
|
+
export function renderSubagentResult(
|
|
949
|
+
result: AgentToolResult<Details>,
|
|
950
|
+
options: { expanded: boolean },
|
|
951
|
+
theme: Theme,
|
|
952
|
+
): Component {
|
|
953
|
+
const d = result.details;
|
|
954
|
+
if (!d || !d.results.length) {
|
|
955
|
+
const t = result.content[0];
|
|
956
|
+
const text = t?.type === "text" ? t.text : "(no output)";
|
|
957
|
+
const contextPrefix = d?.context === "fork" ? `${theme.fg("warning", "[fork]")} ` : "";
|
|
958
|
+
return new Text(truncLine(`${contextPrefix}${text}`, getTermWidth() - 4), 0, 0);
|
|
959
|
+
}
|
|
960
|
+
|
|
961
|
+
const expanded = options.expanded;
|
|
962
|
+
const mdTheme = getMarkdownTheme();
|
|
963
|
+
|
|
964
|
+
if (d.mode === "single" && d.results.length === 1) {
|
|
965
|
+
const r = d.results[0];
|
|
966
|
+
if (!expanded) return renderSingleCompact(d, r, theme);
|
|
967
|
+
const isRunning = r.progress?.status === "running";
|
|
968
|
+
const icon = isRunning
|
|
969
|
+
? theme.fg("warning", "running")
|
|
970
|
+
: r.detached
|
|
971
|
+
? theme.fg("warning", "detached")
|
|
972
|
+
: r.exitCode === 0
|
|
973
|
+
? theme.fg("success", "ok")
|
|
974
|
+
: theme.fg("error", "failed");
|
|
975
|
+
const contextBadge = d.context === "fork" ? theme.fg("warning", " [fork]") : "";
|
|
976
|
+
const output = r.truncation?.text || getSingleResultOutput(r);
|
|
977
|
+
|
|
978
|
+
const progressInfo = isRunning && r.progress
|
|
979
|
+
? ` | ${r.progress.toolCount} tools, ${formatTokens(r.progress.tokens)} tok, ${formatDuration(r.progress.durationMs)}`
|
|
980
|
+
: r.progressSummary
|
|
981
|
+
? ` | ${r.progressSummary.toolCount} tools, ${formatTokens(r.progressSummary.tokens)} tok, ${formatDuration(r.progressSummary.durationMs)}`
|
|
982
|
+
: "";
|
|
983
|
+
|
|
984
|
+
const w = getTermWidth() - 4;
|
|
985
|
+
const fit = (text: string) => expanded ? text : truncLine(text, w);
|
|
986
|
+
const toolCallLines = getToolCallLines(r, expanded);
|
|
987
|
+
const c = new Container();
|
|
988
|
+
c.addChild(new Text(fit(`${icon} ${theme.fg("toolTitle", theme.bold(r.agent))}${contextBadge}${progressInfo}`), 0, 0));
|
|
989
|
+
c.addChild(new Spacer(1));
|
|
990
|
+
const taskMaxLen = Math.max(20, w - 8);
|
|
991
|
+
const taskPreview = expanded || r.task.length <= taskMaxLen
|
|
992
|
+
? r.task
|
|
993
|
+
: `${r.task.slice(0, taskMaxLen)}...`;
|
|
994
|
+
c.addChild(
|
|
995
|
+
new Text(fit(theme.fg("dim", `Task: ${taskPreview}`)), 0, 0),
|
|
996
|
+
);
|
|
997
|
+
c.addChild(new Spacer(1));
|
|
998
|
+
|
|
999
|
+
if (isRunning && r.progress) {
|
|
1000
|
+
const toolLine = formatCurrentToolLine(r.progress, w, expanded);
|
|
1001
|
+
if (toolLine) {
|
|
1002
|
+
c.addChild(new Text(fit(theme.fg("warning", `> ${toolLine}`)), 0, 0));
|
|
1003
|
+
}
|
|
1004
|
+
const liveStatusLine = buildLiveStatusLine(r.progress);
|
|
1005
|
+
if (liveStatusLine) {
|
|
1006
|
+
c.addChild(new Text(fit(theme.fg("accent", liveStatusLine)), 0, 0));
|
|
1007
|
+
}
|
|
1008
|
+
c.addChild(new Text(fit(theme.fg("accent", "Press Ctrl+O for live detail")), 0, 0));
|
|
1009
|
+
if (r.artifactPaths) {
|
|
1010
|
+
c.addChild(new Text(fit(theme.fg("dim", `Artifacts: ${shortenPath(r.artifactPaths.outputPath)}`)), 0, 0));
|
|
1011
|
+
}
|
|
1012
|
+
if (r.progress.recentTools?.length) {
|
|
1013
|
+
for (const t of r.progress.recentTools.slice(-3)) {
|
|
1014
|
+
const maxArgsLen = Math.max(40, w - 24);
|
|
1015
|
+
const argsPreview = expanded || t.args.length <= maxArgsLen
|
|
1016
|
+
? t.args
|
|
1017
|
+
: `${t.args.slice(0, maxArgsLen)}...`;
|
|
1018
|
+
c.addChild(new Text(fit(theme.fg("dim", `${t.tool}: ${argsPreview}`)), 0, 0));
|
|
1019
|
+
}
|
|
1020
|
+
}
|
|
1021
|
+
for (const line of (r.progress.recentOutput ?? []).slice(-5)) {
|
|
1022
|
+
c.addChild(new Text(fit(theme.fg("dim", ` ${line}`)), 0, 0));
|
|
1023
|
+
}
|
|
1024
|
+
if (toolLine || liveStatusLine || r.progress.recentTools?.length || r.progress.recentOutput?.length || r.artifactPaths) {
|
|
1025
|
+
c.addChild(new Spacer(1));
|
|
1026
|
+
}
|
|
1027
|
+
}
|
|
1028
|
+
|
|
1029
|
+
if (expanded) {
|
|
1030
|
+
for (const line of toolCallLines) {
|
|
1031
|
+
c.addChild(new Text(fit(theme.fg("muted", line)), 0, 0));
|
|
1032
|
+
}
|
|
1033
|
+
if (toolCallLines.length) c.addChild(new Spacer(1));
|
|
1034
|
+
}
|
|
1035
|
+
|
|
1036
|
+
if (output) c.addChild(new Markdown(output, 0, 0, mdTheme));
|
|
1037
|
+
c.addChild(new Spacer(1));
|
|
1038
|
+
if (r.skills?.length) {
|
|
1039
|
+
c.addChild(new Text(fit(theme.fg("dim", `Skills: ${r.skills.join(", ")}`)), 0, 0));
|
|
1040
|
+
}
|
|
1041
|
+
if (r.skillsWarning) {
|
|
1042
|
+
c.addChild(new Text(fit(theme.fg("warning", `Warning: ${r.skillsWarning}`)), 0, 0));
|
|
1043
|
+
}
|
|
1044
|
+
if (r.attemptedModels && r.attemptedModels.length > 1) {
|
|
1045
|
+
c.addChild(new Text(fit(theme.fg("dim", `Fallbacks: ${r.attemptedModels.join(" → ")}`)), 0, 0));
|
|
1046
|
+
}
|
|
1047
|
+
c.addChild(new Text(fit(theme.fg("dim", formatUsage(r.usage, r.model))), 0, 0));
|
|
1048
|
+
if (r.sessionFile) {
|
|
1049
|
+
c.addChild(new Text(fit(theme.fg("dim", `Session: ${shortenPath(r.sessionFile)}`)), 0, 0));
|
|
1050
|
+
}
|
|
1051
|
+
|
|
1052
|
+
if (!isRunning && r.artifactPaths) {
|
|
1053
|
+
c.addChild(new Spacer(1));
|
|
1054
|
+
c.addChild(new Text(fit(theme.fg("dim", `Artifacts: ${shortenPath(r.artifactPaths.outputPath)}`)), 0, 0));
|
|
1055
|
+
}
|
|
1056
|
+
return c;
|
|
1057
|
+
}
|
|
1058
|
+
|
|
1059
|
+
if (!expanded) return renderMultiCompact(d, theme);
|
|
1060
|
+
|
|
1061
|
+
const hasRunning = d.progress?.some((p) => p.status === "running")
|
|
1062
|
+
|| d.results.some((r) => r.progress?.status === "running");
|
|
1063
|
+
const ok = d.results.filter((r) => r.progress?.status === "completed" || (r.exitCode === 0 && r.progress?.status !== "running")).length;
|
|
1064
|
+
const hasEmptyWithoutTarget = d.results.some((r) =>
|
|
1065
|
+
r.exitCode === 0
|
|
1066
|
+
&& r.progress?.status !== "running"
|
|
1067
|
+
&& hasEmptyTextOutputWithoutOutputTarget(r.task, getSingleResultOutput(r)),
|
|
1068
|
+
);
|
|
1069
|
+
const icon = hasRunning
|
|
1070
|
+
? theme.fg("warning", "running")
|
|
1071
|
+
: hasEmptyWithoutTarget
|
|
1072
|
+
? theme.fg("warning", "warning")
|
|
1073
|
+
: ok === d.results.length
|
|
1074
|
+
? theme.fg("success", "ok")
|
|
1075
|
+
: theme.fg("error", "failed");
|
|
1076
|
+
|
|
1077
|
+
const totalSummary =
|
|
1078
|
+
d.progressSummary ||
|
|
1079
|
+
d.results.reduce(
|
|
1080
|
+
(acc, r) => {
|
|
1081
|
+
const prog = r.progress || r.progressSummary;
|
|
1082
|
+
if (prog) {
|
|
1083
|
+
acc.toolCount += prog.toolCount;
|
|
1084
|
+
acc.tokens += prog.tokens;
|
|
1085
|
+
acc.durationMs =
|
|
1086
|
+
d.mode === "chain"
|
|
1087
|
+
? acc.durationMs + prog.durationMs
|
|
1088
|
+
: Math.max(acc.durationMs, prog.durationMs);
|
|
1089
|
+
}
|
|
1090
|
+
return acc;
|
|
1091
|
+
},
|
|
1092
|
+
{ toolCount: 0, tokens: 0, durationMs: 0 },
|
|
1093
|
+
);
|
|
1094
|
+
|
|
1095
|
+
const summaryStr =
|
|
1096
|
+
totalSummary.toolCount || totalSummary.tokens
|
|
1097
|
+
? ` | ${totalSummary.toolCount} tools, ${formatTokens(totalSummary.tokens)} tok, ${formatDuration(totalSummary.durationMs)}`
|
|
1098
|
+
: "";
|
|
1099
|
+
|
|
1100
|
+
const modeLabel = d.mode;
|
|
1101
|
+
const contextBadge = d.context === "fork" ? theme.fg("warning", " [fork]") : "";
|
|
1102
|
+
const multiLabel = buildMultiProgressLabel(d, hasRunning);
|
|
1103
|
+
const itemTitle = multiLabel.itemTitle;
|
|
1104
|
+
|
|
1105
|
+
const chainVis = d.chainAgents?.length && !multiLabel.hasParallelInChain
|
|
1106
|
+
? d.chainAgents
|
|
1107
|
+
.map((agent, i) => {
|
|
1108
|
+
const result = d.results[i];
|
|
1109
|
+
const isFailed = result && result.exitCode !== 0 && result.progress?.status !== "running";
|
|
1110
|
+
const isComplete = result && result.exitCode === 0 && result.progress?.status !== "running";
|
|
1111
|
+
const isEmptyWithoutTarget = Boolean(result)
|
|
1112
|
+
&& Boolean(isComplete)
|
|
1113
|
+
&& hasEmptyTextOutputWithoutOutputTarget(result.task, getSingleResultOutput(result));
|
|
1114
|
+
const isCurrent = i === (d.currentStepIndex ?? d.results.length);
|
|
1115
|
+
const stepIcon = isFailed
|
|
1116
|
+
? theme.fg("error", "failed")
|
|
1117
|
+
: isEmptyWithoutTarget
|
|
1118
|
+
? theme.fg("warning", "warning")
|
|
1119
|
+
: isComplete
|
|
1120
|
+
? theme.fg("success", "done")
|
|
1121
|
+
: isCurrent && hasRunning
|
|
1122
|
+
? theme.fg("warning", "running")
|
|
1123
|
+
: theme.fg("dim", "pending");
|
|
1124
|
+
return `${stepIcon} ${agent}`;
|
|
1125
|
+
})
|
|
1126
|
+
.join(theme.fg("dim", " → "))
|
|
1127
|
+
: null;
|
|
1128
|
+
|
|
1129
|
+
const w = getTermWidth() - 4;
|
|
1130
|
+
const fit = (text: string) => expanded ? text : truncLine(text, w);
|
|
1131
|
+
const c = new Container();
|
|
1132
|
+
c.addChild(
|
|
1133
|
+
new Text(
|
|
1134
|
+
fit(`${icon} ${theme.fg("toolTitle", theme.bold(modeLabel))}${contextBadge} · ${multiLabel.headerLabel}${summaryStr}`),
|
|
1135
|
+
0,
|
|
1136
|
+
0,
|
|
1137
|
+
),
|
|
1138
|
+
);
|
|
1139
|
+
if (chainVis) {
|
|
1140
|
+
c.addChild(new Text(fit(` ${chainVis}`), 0, 0));
|
|
1141
|
+
}
|
|
1142
|
+
|
|
1143
|
+
const useResultsDirectly = multiLabel.hasParallelInChain || !d.chainAgents?.length;
|
|
1144
|
+
const displayStart = multiLabel.showActiveGroupOnly ? multiLabel.groupStartIndex : 0;
|
|
1145
|
+
const displayEnd = multiLabel.showActiveGroupOnly ? multiLabel.groupEndIndex : (useResultsDirectly ? d.results.length : d.chainAgents!.length);
|
|
1146
|
+
|
|
1147
|
+
c.addChild(new Spacer(1));
|
|
1148
|
+
|
|
1149
|
+
for (let i = displayStart; i < displayEnd; i++) {
|
|
1150
|
+
const r = d.results[i];
|
|
1151
|
+
const rowNumber = multiLabel.showActiveGroupOnly ? (i - multiLabel.groupStartIndex + 1) : (i + 1);
|
|
1152
|
+
const agentName = useResultsDirectly
|
|
1153
|
+
? (r?.agent || `step-${rowNumber}`)
|
|
1154
|
+
: (d.chainAgents![i] || r?.agent || `step-${rowNumber}`);
|
|
1155
|
+
|
|
1156
|
+
if (!r) {
|
|
1157
|
+
c.addChild(new Text(fit(theme.fg("dim", ` ${itemTitle} ${rowNumber}: ${agentName}`)), 0, 0));
|
|
1158
|
+
c.addChild(new Text(theme.fg("dim", ` status: pending`), 0, 0));
|
|
1159
|
+
c.addChild(new Spacer(1));
|
|
1160
|
+
continue;
|
|
1161
|
+
}
|
|
1162
|
+
|
|
1163
|
+
const progressFromArray = d.progress?.find((p) => p.index === i)
|
|
1164
|
+
|| d.progress?.find((p) => p.agent === r.agent && p.status === "running");
|
|
1165
|
+
const rProg = r.progress || progressFromArray || r.progressSummary;
|
|
1166
|
+
const rRunning = rProg?.status === "running";
|
|
1167
|
+
const stepNumber = typeof rProg?.index === "number" ? rProg.index + 1 : i + 1;
|
|
1168
|
+
|
|
1169
|
+
const resultOutput = getSingleResultOutput(r);
|
|
1170
|
+
const statusIcon = rRunning
|
|
1171
|
+
? theme.fg("warning", "running")
|
|
1172
|
+
: r.exitCode !== 0
|
|
1173
|
+
? theme.fg("error", "failed")
|
|
1174
|
+
: hasEmptyTextOutputWithoutOutputTarget(r.task, resultOutput)
|
|
1175
|
+
? theme.fg("warning", "warning")
|
|
1176
|
+
: theme.fg("success", "done");
|
|
1177
|
+
const stats = rProg ? ` | ${rProg.toolCount} tools, ${formatDuration(rProg.durationMs)}` : "";
|
|
1178
|
+
const modelDisplay = modelThinkingBadge(theme, r.model);
|
|
1179
|
+
const stepLabel = resultRowLabel(d, multiLabel, i, stepNumber);
|
|
1180
|
+
const stepHeader = rRunning
|
|
1181
|
+
? `${statusIcon} ${stepLabel}: ${theme.bold(theme.fg("warning", r.agent))}${modelDisplay}${stats}`
|
|
1182
|
+
: `${statusIcon} ${stepLabel}: ${theme.bold(r.agent)}${modelDisplay}${stats}`;
|
|
1183
|
+
const toolCallLines = getToolCallLines(r, expanded);
|
|
1184
|
+
c.addChild(new Text(fit(stepHeader), 0, 0));
|
|
1185
|
+
|
|
1186
|
+
const taskMaxLen = Math.max(20, w - 12);
|
|
1187
|
+
const taskPreview = expanded || r.task.length <= taskMaxLen
|
|
1188
|
+
? r.task
|
|
1189
|
+
: `${r.task.slice(0, taskMaxLen)}...`;
|
|
1190
|
+
c.addChild(new Text(fit(theme.fg("dim", ` task: ${taskPreview}`)), 0, 0));
|
|
1191
|
+
|
|
1192
|
+
const outputTarget = extractOutputTarget(r.task);
|
|
1193
|
+
if (outputTarget) {
|
|
1194
|
+
c.addChild(new Text(fit(theme.fg("dim", ` output: ${outputTarget}`)), 0, 0));
|
|
1195
|
+
}
|
|
1196
|
+
|
|
1197
|
+
if (r.skills?.length) {
|
|
1198
|
+
c.addChild(new Text(fit(theme.fg("dim", ` skills: ${r.skills.join(", ")}`)), 0, 0));
|
|
1199
|
+
}
|
|
1200
|
+
if (r.skillsWarning) {
|
|
1201
|
+
c.addChild(new Text(fit(theme.fg("warning", ` Warning: ${r.skillsWarning}`)), 0, 0));
|
|
1202
|
+
}
|
|
1203
|
+
if (r.attemptedModels && r.attemptedModels.length > 1) {
|
|
1204
|
+
c.addChild(new Text(fit(theme.fg("dim", ` fallbacks: ${r.attemptedModels.join(" → ")}`)), 0, 0));
|
|
1205
|
+
}
|
|
1206
|
+
|
|
1207
|
+
if (rRunning && rProg) {
|
|
1208
|
+
if (rProg.skills?.length) {
|
|
1209
|
+
c.addChild(new Text(fit(theme.fg("accent", ` skills: ${rProg.skills.join(", ")}`)), 0, 0));
|
|
1210
|
+
}
|
|
1211
|
+
const toolLine = formatCurrentToolLine(rProg, w, expanded);
|
|
1212
|
+
if (toolLine) {
|
|
1213
|
+
c.addChild(new Text(fit(theme.fg("warning", ` > ${toolLine}`)), 0, 0));
|
|
1214
|
+
}
|
|
1215
|
+
const liveStatusLine = buildLiveStatusLine(rProg);
|
|
1216
|
+
if (liveStatusLine) {
|
|
1217
|
+
c.addChild(new Text(fit(theme.fg("accent", ` ${liveStatusLine}`)), 0, 0));
|
|
1218
|
+
}
|
|
1219
|
+
c.addChild(new Text(fit(theme.fg("accent", " Press Ctrl+O for live detail")), 0, 0));
|
|
1220
|
+
if (r.artifactPaths) {
|
|
1221
|
+
c.addChild(new Text(fit(theme.fg("dim", ` artifacts: ${shortenPath(r.artifactPaths.outputPath)}`)), 0, 0));
|
|
1222
|
+
}
|
|
1223
|
+
if (rProg.recentTools?.length) {
|
|
1224
|
+
for (const t of rProg.recentTools.slice(-3)) {
|
|
1225
|
+
const maxArgsLen = Math.max(40, w - 30);
|
|
1226
|
+
const argsPreview = expanded || t.args.length <= maxArgsLen
|
|
1227
|
+
? t.args
|
|
1228
|
+
: `${t.args.slice(0, maxArgsLen)}...`;
|
|
1229
|
+
c.addChild(new Text(fit(theme.fg("dim", ` ${t.tool}: ${argsPreview}`)), 0, 0));
|
|
1230
|
+
}
|
|
1231
|
+
}
|
|
1232
|
+
const recentLines = (rProg.recentOutput ?? []).slice(-5);
|
|
1233
|
+
for (const line of recentLines) {
|
|
1234
|
+
c.addChild(new Text(fit(theme.fg("dim", ` ${line}`)), 0, 0));
|
|
1235
|
+
}
|
|
1236
|
+
}
|
|
1237
|
+
|
|
1238
|
+
if (!rRunning && r.artifactPaths) {
|
|
1239
|
+
c.addChild(new Text(fit(theme.fg("dim", ` artifacts: ${shortenPath(r.artifactPaths.outputPath)}`)), 0, 0));
|
|
1240
|
+
}
|
|
1241
|
+
|
|
1242
|
+
if (expanded && !rRunning) {
|
|
1243
|
+
for (const line of toolCallLines) {
|
|
1244
|
+
c.addChild(new Text(fit(theme.fg("muted", ` ${line}`)), 0, 0));
|
|
1245
|
+
}
|
|
1246
|
+
if (toolCallLines.length) c.addChild(new Spacer(1));
|
|
1247
|
+
}
|
|
1248
|
+
|
|
1249
|
+
c.addChild(new Spacer(1));
|
|
1250
|
+
}
|
|
1251
|
+
|
|
1252
|
+
if (d.artifacts) {
|
|
1253
|
+
c.addChild(new Spacer(1));
|
|
1254
|
+
c.addChild(new Text(fit(theme.fg("dim", `Artifacts dir: ${shortenPath(d.artifacts.dir)}`)), 0, 0));
|
|
1255
|
+
}
|
|
1256
|
+
return c;
|
|
1257
|
+
}
|