@oh-my-pi/pi-coding-agent 15.10.10 → 15.10.12
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 +142 -7
- package/dist/cli.js +23108 -0
- package/dist/tokenizers.linux-x64-gnu-xcjh3jwk.node +0 -0
- package/dist/types/async/job-manager.d.ts +18 -0
- package/dist/types/cli/args.d.ts +2 -1
- package/dist/types/cli/dry-balance-cli.d.ts +1 -1
- package/dist/types/cli/gallery-cli.d.ts +1 -1
- package/dist/types/cli/gallery-fixtures/types.d.ts +1 -1
- package/dist/types/cli/usage-cli.d.ts +72 -0
- package/dist/types/cli-commands.d.ts +12 -0
- package/dist/types/commands/launch.d.ts +5 -1
- package/dist/types/commands/read.d.ts +1 -1
- package/dist/types/commands/usage.d.ts +25 -0
- package/dist/types/config/api-key-resolver.d.ts +3 -0
- package/dist/types/config/append-only-context-mode.d.ts +2 -1
- package/dist/types/config/model-discovery.d.ts +55 -0
- package/dist/types/config/model-registry.d.ts +8 -219
- package/dist/types/config/model-resolver.d.ts +34 -10
- package/dist/types/config/model-roles.d.ts +28 -0
- package/dist/types/config/models-config-schema.d.ts +523 -42
- package/dist/types/config/models-config.d.ts +385 -0
- package/dist/types/config/settings-schema.d.ts +41 -8
- package/dist/types/config/settings.d.ts +8 -1
- package/dist/types/debug/log-viewer.d.ts +1 -1
- package/dist/types/debug/raw-sse.d.ts +1 -1
- package/dist/types/edit/hashline/noop-loop-guard.d.ts +72 -0
- package/dist/types/eval/backend.d.ts +0 -2
- package/dist/types/eval/idle-timeout.d.ts +0 -4
- package/dist/types/eval/js/shared/rewrite-imports.d.ts +6 -6
- package/dist/types/eval/py/executor.d.ts +5 -0
- package/dist/types/eval/py/kernel.d.ts +6 -1
- package/dist/types/eval/py/runtime.d.ts +9 -0
- package/dist/types/exec/bash-executor.d.ts +2 -0
- package/dist/types/export/html/template.generated.d.ts +1 -1
- package/dist/types/extensibility/extensions/runner.d.ts +3 -2
- package/dist/types/extensibility/extensions/types.d.ts +6 -3
- package/dist/types/hindsight/mental-models.d.ts +17 -8
- package/dist/types/internal-urls/artifact-protocol.d.ts +2 -2
- package/dist/types/internal-urls/types.d.ts +1 -1
- package/dist/types/lsp/edits.d.ts +9 -0
- package/dist/types/lsp/index.d.ts +2 -2
- package/dist/types/lsp/types.d.ts +2 -0
- package/dist/types/lsp/utils.d.ts +3 -0
- package/dist/types/mcp/json-rpc.d.ts +5 -0
- package/dist/types/memory-backend/index.d.ts +1 -0
- package/dist/types/memory-backend/runtime.d.ts +4 -0
- package/dist/types/memory-backend/types.d.ts +66 -1
- package/dist/types/mnemopi/state.d.ts +11 -1
- package/dist/types/modes/components/agent-dashboard.d.ts +1 -1
- package/dist/types/modes/components/assistant-message.d.ts +3 -1
- package/dist/types/modes/components/bash-execution.d.ts +1 -1
- package/dist/types/modes/components/copy-selector.d.ts +1 -1
- package/dist/types/modes/components/dynamic-border.d.ts +1 -1
- package/dist/types/modes/components/extensions/extension-dashboard.d.ts +1 -1
- package/dist/types/modes/components/extensions/extension-list.d.ts +1 -1
- package/dist/types/modes/components/extensions/inspector-panel.d.ts +1 -1
- package/dist/types/modes/components/footer.d.ts +1 -1
- package/dist/types/modes/components/hook-editor.d.ts +5 -0
- package/dist/types/modes/components/hook-input.d.ts +4 -0
- package/dist/types/modes/components/hook-selector.d.ts +1 -1
- package/dist/types/modes/components/model-selector.d.ts +1 -1
- package/dist/types/modes/components/plan-review-overlay.d.ts +1 -1
- package/dist/types/modes/components/session-observer-overlay.d.ts +1 -1
- package/dist/types/modes/components/session-selector.d.ts +1 -1
- package/dist/types/modes/components/status-line/component.d.ts +1 -1
- package/dist/types/modes/components/tiny-title-download-progress.d.ts +1 -1
- package/dist/types/modes/components/transcript-container.d.ts +25 -6
- package/dist/types/modes/components/tree-selector.d.ts +1 -1
- package/dist/types/modes/components/user-message-selector.d.ts +1 -1
- package/dist/types/modes/components/user-message.d.ts +2 -1
- package/dist/types/modes/components/visual-truncate.d.ts +1 -1
- package/dist/types/modes/components/welcome.d.ts +19 -3
- package/dist/types/modes/controllers/mcp-command-controller.d.ts +1 -1
- package/dist/types/modes/controllers/streaming-reveal.d.ts +1 -1
- package/dist/types/modes/index.d.ts +3 -3
- package/dist/types/modes/interactive-mode.d.ts +8 -3
- package/dist/types/modes/oauth-manual-input.d.ts +7 -0
- package/dist/types/modes/rpc/rpc-client.d.ts +39 -2
- package/dist/types/modes/rpc/rpc-mode.d.ts +31 -2
- package/dist/types/modes/rpc/rpc-subagents.d.ts +24 -0
- package/dist/types/modes/rpc/rpc-types.d.ts +75 -1
- package/dist/types/modes/setup-wizard/index.d.ts +5 -1
- package/dist/types/modes/setup-wizard/lazy.d.ts +2 -0
- package/dist/types/modes/setup-wizard/scenes/sign-in.d.ts +1 -1
- package/dist/types/modes/setup-wizard/scenes/types.d.ts +1 -1
- package/dist/types/modes/setup-wizard/scenes/web-search.d.ts +1 -1
- package/dist/types/modes/setup-wizard/wizard-overlay.d.ts +1 -1
- package/dist/types/modes/types.d.ts +4 -1
- package/dist/types/secrets/index.d.ts +1 -1
- package/dist/types/secrets/obfuscator.d.ts +8 -2
- package/dist/types/session/agent-session.d.ts +15 -3
- package/dist/types/session/auth-broker-config.d.ts +4 -0
- package/dist/types/session/session-manager.d.ts +1 -1
- package/dist/types/session/streaming-output.d.ts +23 -0
- package/dist/types/slash-commands/acp-builtins.d.ts +16 -0
- package/dist/types/slash-commands/builtin-registry.d.ts +1 -0
- package/dist/types/slash-commands/helpers/stats-dashboard.d.ts +13 -0
- package/dist/types/slash-commands/types.d.ts +1 -1
- package/dist/types/ssh/connection-manager.d.ts +8 -0
- package/dist/types/system-prompt.d.ts +2 -0
- package/dist/types/task/executor.d.ts +1 -0
- package/dist/types/task/index.d.ts +2 -2
- package/dist/types/task/parallel.d.ts +2 -2
- package/dist/types/task/types.d.ts +8 -0
- package/dist/types/task/worktree.d.ts +2 -0
- package/dist/types/thinking.d.ts +4 -0
- package/dist/types/tiny/title-client.d.ts +11 -0
- package/dist/types/tiny/title-protocol.d.ts +1 -0
- package/dist/types/tools/ask.d.ts +4 -0
- package/dist/types/tools/conflict-detect.d.ts +16 -0
- package/dist/types/tools/github-cache.d.ts +7 -0
- package/dist/types/tools/index.d.ts +6 -0
- package/dist/types/tools/sqlite-reader.d.ts +3 -0
- package/dist/types/tui/output-block.d.ts +3 -3
- package/dist/types/utils/changelog.d.ts +8 -0
- package/dist/types/utils/git.d.ts +15 -2
- package/dist/types/utils/title-generator.d.ts +3 -2
- package/dist/types/web/scrapers/readthedocs.d.ts +3 -0
- package/dist/types/web/scrapers/types.d.ts +12 -0
- package/dist/types/web/search/providers/codex.d.ts +1 -1
- package/dist/types/web/search/providers/gemini.d.ts +1 -1
- package/examples/extensions/tools.ts +5 -4
- package/package.json +14 -11
- package/scripts/build-binary.ts +18 -23
- package/scripts/bundle-dist.ts +81 -0
- package/scripts/{dev-launch → omp} +1 -1
- package/scripts/{dev-launch-preload.ts → omp.ts} +1 -1
- package/src/async/job-manager.ts +57 -3
- package/src/auto-thinking/classifier.ts +1 -0
- package/src/autoresearch/dashboard.ts +1 -1
- package/src/autoresearch/prompt-setup.md +6 -6
- package/src/autoresearch/prompt.md +6 -6
- package/src/capability/fs.ts +10 -0
- package/src/cli/args.ts +4 -1
- package/src/cli/auth-gateway-cli.ts +1 -3
- package/src/cli/dry-balance-cli.ts +1 -1
- package/src/cli/gallery-cli.ts +1 -1
- package/src/cli/gallery-fixtures/fs.ts +1 -1
- package/src/cli/gallery-fixtures/types.ts +5 -1
- package/src/cli/list-models.ts +2 -1
- package/src/cli/usage-cli.ts +603 -0
- package/src/cli-commands.ts +30 -0
- package/src/cli.ts +76 -13
- package/src/commands/complete.ts +1 -1
- package/src/commands/launch.ts +5 -1
- package/src/commands/read.ts +6 -3
- package/src/commands/usage.ts +35 -0
- package/src/commit/agentic/agent.ts +1 -1
- package/src/commit/model-selection.ts +4 -3
- package/src/config/api-key-resolver.ts +8 -6
- package/src/config/append-only-context-mode.ts +6 -12
- package/src/config/model-discovery.ts +554 -0
- package/src/config/model-registry.ts +320 -1041
- package/src/config/model-resolver.ts +173 -156
- package/src/config/model-roles.ts +74 -0
- package/src/config/models-config-schema.ts +57 -8
- package/src/config/models-config.ts +129 -0
- package/src/config/settings-schema.ts +61 -19
- package/src/config/settings.ts +98 -4
- package/src/dap/client.ts +124 -37
- package/src/dap/session.ts +259 -158
- package/src/debug/log-viewer.ts +1 -1
- package/src/debug/raw-sse.ts +1 -1
- package/src/edit/diff.ts +47 -3
- package/src/edit/hashline/block-resolver.ts +20 -1
- package/src/edit/hashline/diff.ts +36 -1
- package/src/edit/hashline/execute.ts +47 -4
- package/src/edit/hashline/noop-loop-guard.ts +99 -0
- package/src/edit/index.ts +16 -1
- package/src/edit/modes/patch.ts +52 -0
- package/src/edit/modes/replace.ts +56 -22
- package/src/edit/notebook.ts +22 -2
- package/src/edit/renderer.ts +36 -10
- package/src/eval/__tests__/completion-bridge.test.ts +1 -1
- package/src/eval/backend.ts +0 -2
- package/src/eval/completion-bridge.ts +3 -1
- package/src/eval/idle-timeout.ts +2 -9
- package/src/eval/js/context-manager.ts +6 -8
- package/src/eval/js/executor.ts +6 -2
- package/src/eval/js/index.ts +0 -2
- package/src/eval/js/shared/helpers.ts +5 -6
- package/src/eval/js/shared/local-module-loader.ts +1 -1
- package/src/eval/js/shared/prelude.txt +62 -1
- package/src/eval/js/shared/rewrite-imports.ts +40 -22
- package/src/eval/js/shared/runtime.ts +1 -1
- package/src/eval/py/executor.ts +29 -7
- package/src/eval/py/index.ts +6 -3
- package/src/eval/py/kernel.ts +43 -4
- package/src/eval/py/runner.py +107 -3
- package/src/eval/py/runtime.ts +37 -0
- package/src/exec/bash-executor.ts +85 -4
- package/src/export/html/template.generated.ts +1 -1
- package/src/export/html/template.js +3 -1
- package/src/extensibility/extensions/get-commands-handler.ts +2 -1
- package/src/extensibility/extensions/runner.ts +6 -1
- package/src/extensibility/extensions/types.ts +6 -2
- package/src/extensibility/plugins/legacy-pi-compat.ts +20 -3
- package/src/hindsight/bank.ts +17 -2
- package/src/hindsight/mental-models.ts +59 -12
- package/src/hindsight/state.ts +6 -1
- package/src/internal-urls/artifact-protocol.ts +11 -2
- package/src/internal-urls/docs-index.generated.ts +11 -11
- package/src/internal-urls/issue-pr-protocol.ts +12 -5
- package/src/internal-urls/router.ts +1 -1
- package/src/internal-urls/types.ts +1 -1
- package/src/lib/xai-http.ts +1 -1
- package/src/lsp/client.ts +118 -38
- package/src/lsp/clients/biome-client.ts +101 -39
- package/src/lsp/edits.ts +143 -95
- package/src/lsp/index.ts +31 -22
- package/src/lsp/render.ts +1 -1
- package/src/lsp/types.ts +2 -0
- package/src/lsp/utils.ts +28 -10
- package/src/main.ts +183 -23
- package/src/mcp/json-rpc.ts +35 -5
- package/src/mcp/transports/stdio.ts +7 -1
- package/src/memories/index.ts +4 -1
- package/src/memory-backend/index.ts +1 -0
- package/src/memory-backend/local-backend.ts +9 -0
- package/src/memory-backend/off-backend.ts +9 -0
- package/src/memory-backend/runtime.ts +66 -0
- package/src/memory-backend/types.ts +81 -1
- package/src/mnemopi/backend.ts +176 -7
- package/src/mnemopi/state.ts +38 -2
- package/src/modes/acp/acp-agent.ts +119 -11
- package/src/modes/components/agent-dashboard.ts +10 -7
- package/src/modes/components/assistant-message.ts +32 -28
- package/src/modes/components/bash-execution.ts +1 -1
- package/src/modes/components/copy-selector.ts +1 -1
- package/src/modes/components/diff.ts +13 -2
- package/src/modes/components/dynamic-border.ts +12 -3
- package/src/modes/components/extensions/extension-dashboard.ts +8 -5
- package/src/modes/components/extensions/extension-list.ts +1 -1
- package/src/modes/components/extensions/inspector-panel.ts +1 -1
- package/src/modes/components/footer.ts +4 -2
- package/src/modes/components/history-search.ts +1 -1
- package/src/modes/components/hook-editor.ts +8 -0
- package/src/modes/components/hook-input.ts +8 -0
- package/src/modes/components/hook-selector.ts +2 -2
- package/src/modes/components/model-selector.ts +4 -2
- package/src/modes/components/plan-review-overlay.ts +1 -1
- package/src/modes/components/session-observer-overlay.ts +2 -2
- package/src/modes/components/session-selector.ts +1 -1
- package/src/modes/components/settings-selector.ts +5 -1
- package/src/modes/components/status-line/component.ts +119 -35
- package/src/modes/components/tiny-title-download-progress.ts +1 -1
- package/src/modes/components/transcript-container.ts +258 -53
- package/src/modes/components/tree-selector.ts +3 -3
- package/src/modes/components/user-message-selector.ts +1 -1
- package/src/modes/components/user-message.ts +17 -5
- package/src/modes/components/visual-truncate.ts +1 -1
- package/src/modes/components/welcome.ts +108 -26
- package/src/modes/controllers/command-controller.ts +11 -4
- package/src/modes/controllers/event-controller.ts +73 -4
- package/src/modes/controllers/input-controller.ts +2 -1
- package/src/modes/controllers/mcp-command-controller.ts +39 -4
- package/src/modes/controllers/selector-controller.ts +1 -1
- package/src/modes/controllers/streaming-reveal.ts +85 -18
- package/src/modes/index.ts +3 -21
- package/src/modes/interactive-mode.ts +42 -18
- package/src/modes/oauth-manual-input.ts +30 -3
- package/src/modes/rpc/rpc-client.ts +154 -3
- package/src/modes/rpc/rpc-mode.ts +97 -12
- package/src/modes/rpc/rpc-subagents.ts +265 -0
- package/src/modes/rpc/rpc-types.ts +81 -1
- package/src/modes/setup-wizard/index.ts +12 -2
- package/src/modes/setup-wizard/lazy.ts +16 -0
- package/src/modes/setup-wizard/scenes/glyph.ts +1 -1
- package/src/modes/setup-wizard/scenes/providers.ts +1 -1
- package/src/modes/setup-wizard/scenes/sign-in.ts +1 -1
- package/src/modes/setup-wizard/scenes/theme.ts +1 -1
- package/src/modes/setup-wizard/scenes/types.ts +1 -1
- package/src/modes/setup-wizard/scenes/web-search.ts +1 -1
- package/src/modes/setup-wizard/wizard-overlay.ts +1 -1
- package/src/modes/types.ts +4 -1
- package/src/prompts/agents/explore.md +2 -2
- package/src/prompts/agents/librarian.md +1 -2
- package/src/prompts/agents/oracle.md +1 -1
- package/src/prompts/agents/plan.md +5 -5
- package/src/prompts/agents/task.md +5 -5
- package/src/prompts/ci-green-request.md +5 -7
- package/src/prompts/goals/goal-budget-limit.md +2 -2
- package/src/prompts/goals/goal-continuation.md +4 -4
- package/src/prompts/goals/goal-mode-active.md +1 -1
- package/src/prompts/memories/read-path.md +1 -1
- package/src/prompts/memories/stage_one_system.md +2 -2
- package/src/prompts/review-custom-request.md +1 -1
- package/src/prompts/system/agent-creation-architect.md +2 -2
- package/src/prompts/system/auto-continue.md +1 -1
- package/src/prompts/system/background-tan-dispatch.md +1 -1
- package/src/prompts/system/btw-user.md +2 -2
- package/src/prompts/system/commit-message-system.md +13 -1
- package/src/prompts/system/custom-system-prompt.md +1 -1
- package/src/prompts/system/eager-todo.md +2 -2
- package/src/prompts/system/irc-incoming.md +1 -1
- package/src/prompts/system/manual-continue.md +1 -1
- package/src/prompts/system/omfg-user.md +3 -4
- package/src/prompts/system/orchestrate-notice.md +9 -9
- package/src/prompts/system/plan-mode-active.md +4 -4
- package/src/prompts/system/plan-mode-subagent.md +4 -5
- package/src/prompts/system/plan-mode-tool-decision-reminder.md +1 -1
- package/src/prompts/system/project-prompt.md +2 -2
- package/src/prompts/system/subagent-system-prompt.md +4 -4
- package/src/prompts/system/system-prompt.md +13 -24
- package/src/prompts/system/title-system.md +2 -2
- package/src/prompts/system/ttsr-tool-reminder.md +1 -1
- package/src/prompts/system/workflow-notice.md +1 -1
- package/src/prompts/tools/ast-edit.md +1 -1
- package/src/prompts/tools/ast-grep.md +2 -2
- package/src/prompts/tools/bash.md +5 -7
- package/src/prompts/tools/browser.md +7 -7
- package/src/prompts/tools/debug.md +1 -1
- package/src/prompts/tools/eval.md +3 -3
- package/src/prompts/tools/find.md +0 -1
- package/src/prompts/tools/github.md +8 -7
- package/src/prompts/tools/goal.md +1 -1
- package/src/prompts/tools/image-gen.md +1 -1
- package/src/prompts/tools/inspect-image-system.md +1 -1
- package/src/prompts/tools/irc.md +15 -15
- package/src/prompts/tools/lsp.md +2 -2
- package/src/prompts/tools/patch.md +2 -2
- package/src/prompts/tools/read.md +3 -4
- package/src/prompts/tools/recall.md +1 -1
- package/src/prompts/tools/reflect.md +1 -1
- package/src/prompts/tools/render-mermaid.md +2 -2
- package/src/prompts/tools/replace.md +4 -10
- package/src/prompts/tools/rewind.md +2 -2
- package/src/prompts/tools/search-tool-bm25.md +1 -9
- package/src/prompts/tools/search.md +0 -1
- package/src/prompts/tools/ssh.md +0 -4
- package/src/prompts/tools/task.md +2 -3
- package/src/prompts/tools/todo.md +1 -1
- package/src/sdk.ts +31 -11
- package/src/secrets/index.ts +8 -1
- package/src/secrets/obfuscator.ts +39 -18
- package/src/session/agent-session.ts +223 -64
- package/src/session/auth-broker-config.ts +30 -1
- package/src/session/session-manager.ts +2 -2
- package/src/session/streaming-output.ts +188 -11
- package/src/slash-commands/acp-builtins.ts +24 -0
- package/src/slash-commands/builtin-registry.ts +40 -0
- package/src/slash-commands/helpers/stats-dashboard.ts +85 -0
- package/src/slash-commands/types.ts +1 -1
- package/src/ssh/connection-manager.ts +27 -0
- package/src/system-prompt.ts +14 -0
- package/src/task/commands.ts +2 -1
- package/src/task/executor.ts +74 -65
- package/src/task/index.ts +146 -68
- package/src/task/parallel.ts +3 -3
- package/src/task/render.ts +20 -5
- package/src/task/types.ts +9 -0
- package/src/task/worktree.ts +64 -56
- package/src/thinking.ts +9 -1
- package/src/tiny/title-client.ts +60 -16
- package/src/tiny/title-protocol.ts +1 -1
- package/src/tiny/worker.ts +6 -4
- package/src/tools/archive-reader.ts +30 -2
- package/src/tools/ask.ts +104 -21
- package/src/tools/ast-edit.ts +25 -5
- package/src/tools/auto-generated-guard.ts +20 -3
- package/src/tools/bash-interactive.ts +27 -7
- package/src/tools/bash.ts +100 -18
- package/src/tools/browser/launch.ts +11 -2
- package/src/tools/browser/readable.ts +19 -2
- package/src/tools/browser/registry.ts +4 -1
- package/src/tools/browser/render.ts +2 -2
- package/src/tools/browser/tab-supervisor.ts +55 -16
- package/src/tools/conflict-detect.ts +50 -4
- package/src/tools/debug.ts +1 -1
- package/src/tools/eval-render.ts +5 -5
- package/src/tools/eval.ts +0 -2
- package/src/tools/fetch.ts +33 -10
- package/src/tools/gh-cache-invalidation.ts +63 -8
- package/src/tools/gh-renderer.ts +1 -1
- package/src/tools/gh.ts +172 -29
- package/src/tools/github-cache.ts +70 -6
- package/src/tools/image-gen.ts +14 -13
- package/src/tools/index.ts +13 -1
- package/src/tools/inspect-image.ts +1 -0
- package/src/tools/irc.ts +5 -1
- package/src/tools/job.ts +1 -1
- package/src/tools/read.ts +202 -61
- package/src/tools/render-utils.ts +3 -3
- package/src/tools/resolve.ts +1 -1
- package/src/tools/search.ts +92 -29
- package/src/tools/sqlite-reader.ts +17 -5
- package/src/tools/ssh.ts +8 -8
- package/src/tools/todo.ts +38 -8
- package/src/tools/write.ts +118 -18
- package/src/tui/output-block.ts +4 -4
- package/src/utils/changelog.ts +27 -1
- package/src/utils/commit-message-generator.ts +1 -0
- package/src/utils/file-mentions.ts +2 -1
- package/src/utils/git.ts +267 -13
- package/src/utils/title-generator.ts +24 -5
- package/src/web/scrapers/arxiv.ts +1 -1
- package/src/web/scrapers/go-pkg.ts +1 -1
- package/src/web/scrapers/iacr.ts +1 -1
- package/src/web/scrapers/readthedocs.ts +1 -1
- package/src/web/scrapers/twitter.ts +2 -1
- package/src/web/scrapers/types.ts +87 -8
- package/src/web/scrapers/wikipedia.ts +1 -1
- package/src/web/scrapers/youtube.ts +6 -1
- package/src/web/search/index.ts +1 -1
- package/src/web/search/providers/codex.ts +2 -1
- package/src/web/search/providers/gemini.ts +2 -3
- package/src/web/search/render.ts +8 -6
- package/dist/types/config/model-equivalence.d.ts +0 -24
- package/dist/types/config/model-id-affixes.d.ts +0 -12
- package/dist/types/config/model-provider-priority.d.ts +0 -1
- package/dist/types/exec/idle-timeout-watchdog.d.ts +0 -18
- package/src/config/model-equivalence.ts +0 -875
- package/src/config/model-id-affixes.ts +0 -81
- package/src/config/model-provider-priority.ts +0 -56
- package/src/exec/idle-timeout-watchdog.ts +0 -126
|
@@ -57,6 +57,39 @@ async function readSectionText(absolutePath: string, sectionPath: string): Promi
|
|
|
57
57
|
}
|
|
58
58
|
}
|
|
59
59
|
|
|
60
|
+
/**
|
|
61
|
+
* Streaming previews recompute on every streamed chunk; re-reading the target
|
|
62
|
+
* file from disk each tick dominates the cost on large files. Cache the raw
|
|
63
|
+
* section text keyed by mtime+size so any on-disk change invalidates
|
|
64
|
+
* naturally. Used by the streaming path only — the args-complete pass always
|
|
65
|
+
* reads fresh.
|
|
66
|
+
*/
|
|
67
|
+
const streamingTextCache = new Map<string, { mtimeMs: number; size: number; rawContent: string }>();
|
|
68
|
+
const STREAMING_TEXT_CACHE_MAX = 8;
|
|
69
|
+
|
|
70
|
+
async function readSectionTextCached(absolutePath: string, sectionPath: string): Promise<string> {
|
|
71
|
+
let stamp: { mtimeMs: number; size: number } | undefined;
|
|
72
|
+
try {
|
|
73
|
+
const stat = await Bun.file(absolutePath).stat();
|
|
74
|
+
stamp = { mtimeMs: stat.mtimeMs, size: stat.size };
|
|
75
|
+
} catch {
|
|
76
|
+
stamp = undefined;
|
|
77
|
+
}
|
|
78
|
+
if (stamp) {
|
|
79
|
+
const cached = streamingTextCache.get(absolutePath);
|
|
80
|
+
if (cached && cached.mtimeMs === stamp.mtimeMs && cached.size === stamp.size) return cached.rawContent;
|
|
81
|
+
}
|
|
82
|
+
const rawContent = await readSectionText(absolutePath, sectionPath);
|
|
83
|
+
if (stamp) {
|
|
84
|
+
if (streamingTextCache.size >= STREAMING_TEXT_CACHE_MAX && !streamingTextCache.has(absolutePath)) {
|
|
85
|
+
const oldest = streamingTextCache.keys().next().value;
|
|
86
|
+
if (oldest !== undefined) streamingTextCache.delete(oldest);
|
|
87
|
+
}
|
|
88
|
+
streamingTextCache.set(absolutePath, { mtimeMs: stamp.mtimeMs, size: stamp.size, rawContent });
|
|
89
|
+
}
|
|
90
|
+
return rawContent;
|
|
91
|
+
}
|
|
92
|
+
|
|
60
93
|
function hasAnchorScopedEdit(edits: readonly Edit[]): boolean {
|
|
61
94
|
return edits.some(edit => {
|
|
62
95
|
if (edit.kind === "delete") return true;
|
|
@@ -220,7 +253,9 @@ export async function computeHashlineSectionDiff(
|
|
|
220
253
|
): Promise<{ diff: string; firstChangedLine: number | undefined } | { error: string }> {
|
|
221
254
|
try {
|
|
222
255
|
const absolutePath = resolveToCwd(section.path, cwd);
|
|
223
|
-
const rawContent =
|
|
256
|
+
const rawContent = options.streaming
|
|
257
|
+
? await readSectionTextCached(absolutePath, section.path)
|
|
258
|
+
: await readSectionText(absolutePath, section.path);
|
|
224
259
|
const { text: content } = stripBom(rawContent);
|
|
225
260
|
const normalized = normalizeToLF(content);
|
|
226
261
|
// Streaming favors a stable, monotonic preview over an exact unified
|
|
@@ -23,11 +23,13 @@ import type { AgentToolResult } from "@oh-my-pi/pi-agent-core";
|
|
|
23
23
|
import type { FileDiagnosticsResult, WritethroughCallback, WritethroughDeferredHandle } from "../../lsp";
|
|
24
24
|
import type { ToolSession } from "../../tools";
|
|
25
25
|
import { outputMeta } from "../../tools/output-meta";
|
|
26
|
+
import { ToolError } from "../../tools/tool-errors";
|
|
26
27
|
import { generateDiffString } from "../diff";
|
|
27
28
|
import { getFileSnapshotStore } from "../file-snapshot-store";
|
|
28
29
|
import type { EditToolDetails, EditToolPerFileResult, LspBatchRequest } from "../renderer";
|
|
29
30
|
import { nativeBlockResolver } from "./block-resolver";
|
|
30
31
|
import { HashlineFilesystem } from "./filesystem";
|
|
32
|
+
import { hashPatchInput, NOOP_HARD_LIMIT, recordNoopEdit, resetNoopEdit } from "./noop-loop-guard";
|
|
31
33
|
import { type HashlineParams, hashlineEditParamsSchema } from "./params";
|
|
32
34
|
|
|
33
35
|
export interface ExecuteHashlineSingleOptions {
|
|
@@ -54,6 +56,24 @@ function noChangeDiagnostic(path: string): string {
|
|
|
54
56
|
);
|
|
55
57
|
}
|
|
56
58
|
|
|
59
|
+
/**
|
|
60
|
+
* Escalated diagnostic surfaced once the same payload has no-op'd
|
|
61
|
+
* {@link NOOP_HARD_LIMIT} times in a row on the same canonical path. Thrown as
|
|
62
|
+
* a {@link ToolError} so the agent loop sees a tool *failure* — empirically
|
|
63
|
+
* far more effective at breaking a no-op edit loop than the soft hint alone
|
|
64
|
+
* (issue #2081 saw 182 byte-identical no-op results in 205 calls before the
|
|
65
|
+
* user aborted).
|
|
66
|
+
*/
|
|
67
|
+
function noChangeLoopDiagnostic(path: string, count: number): string {
|
|
68
|
+
return (
|
|
69
|
+
`STOP. Edits to ${path} have been a byte-identical no-op ${count} times in a row — ` +
|
|
70
|
+
`the patch body matches the file at the targeted lines and the soft hint did not break the cycle. ` +
|
|
71
|
+
`Cease re-issuing this payload. Either the intended change is already on disk (move on), ` +
|
|
72
|
+
`or your anchor is wrong (re-read the file with \`read\` to observe the current line numbers and ` +
|
|
73
|
+
`tag, then author a different edit). This exact payload will keep being rejected until it changes.`
|
|
74
|
+
);
|
|
75
|
+
}
|
|
76
|
+
|
|
57
77
|
function assertUniqueCanonicalPaths(prepared: readonly PreparedSection[]): void {
|
|
58
78
|
const seen = new Map<string, string>();
|
|
59
79
|
for (const entry of prepared) {
|
|
@@ -78,11 +98,17 @@ interface RenderedSection {
|
|
|
78
98
|
}
|
|
79
99
|
|
|
80
100
|
function formatBlockResolution(resolution: BlockResolution): string {
|
|
81
|
-
const op =
|
|
101
|
+
const op =
|
|
102
|
+
resolution.op === "delete"
|
|
103
|
+
? "delete block"
|
|
104
|
+
: resolution.op === "insert_after"
|
|
105
|
+
? "insert after block"
|
|
106
|
+
: "replace block";
|
|
82
107
|
const lines = resolution.end - resolution.start + 1;
|
|
83
108
|
const span =
|
|
84
109
|
resolution.start === resolution.end ? `line ${resolution.start}` : `lines ${resolution.start}-${resolution.end}`;
|
|
85
|
-
|
|
110
|
+
const suffix = resolution.op === "insert_after" ? `; body lands after line ${resolution.end}` : "";
|
|
111
|
+
return `${op} ${resolution.anchorLine} → resolved ${span} (${lines} line${lines === 1 ? "" : "s"})${suffix}`;
|
|
86
112
|
}
|
|
87
113
|
|
|
88
114
|
function renderSection(result: PatchSectionResult, diagnostics: FileDiagnosticsResult | undefined): RenderedSection {
|
|
@@ -150,13 +176,19 @@ export async function executeHashlineSingle(
|
|
|
150
176
|
const patcher = new Patcher({ fs, snapshots, blockResolver: nativeBlockResolver });
|
|
151
177
|
|
|
152
178
|
// Single-section fast path: prepare, commit, render.
|
|
179
|
+
const inputHash = hashPatchInput(options.input);
|
|
153
180
|
if (patch.sections.length === 1) {
|
|
154
181
|
fs.setBatchRequest(narrowBatchRequest(options.batchRequest, true));
|
|
155
182
|
const prepared = await patcher.prepare(patch.sections[0]);
|
|
156
183
|
const sectionResult = await patcher.commit(prepared);
|
|
157
184
|
if (sectionResult.op === "noop") {
|
|
185
|
+
const { count, escalate } = recordNoopEdit(options.session, sectionResult.canonicalPath, inputHash);
|
|
186
|
+
if (escalate) {
|
|
187
|
+
throw new ToolError(noChangeLoopDiagnostic(sectionResult.path, count));
|
|
188
|
+
}
|
|
158
189
|
return renderSection(sectionResult, undefined).toolResult;
|
|
159
190
|
}
|
|
191
|
+
resetNoopEdit(options.session, sectionResult.canonicalPath);
|
|
160
192
|
return renderSection(sectionResult, fs.consumeDiagnostics(sectionResult.path)).toolResult;
|
|
161
193
|
}
|
|
162
194
|
|
|
@@ -166,7 +198,12 @@ export async function executeHashlineSingle(
|
|
|
166
198
|
for (const section of patch.sections) prepared.push(await patcher.prepare(section));
|
|
167
199
|
assertUniqueCanonicalPaths(prepared);
|
|
168
200
|
for (const entry of prepared) {
|
|
169
|
-
if (entry.isNoop)
|
|
201
|
+
if (entry.isNoop) {
|
|
202
|
+
const { count, escalate } = recordNoopEdit(options.session, entry.canonicalPath, inputHash);
|
|
203
|
+
throw escalate
|
|
204
|
+
? new ToolError(noChangeLoopDiagnostic(entry.section.path, count))
|
|
205
|
+
: new ToolError(noChangeDiagnostic(entry.section.path));
|
|
206
|
+
}
|
|
170
207
|
}
|
|
171
208
|
// Then commit each one, narrowing the LSP batch flush flag to the final
|
|
172
209
|
// section only. A no-op apply mid-batch is treated as a hard failure —
|
|
@@ -176,7 +213,13 @@ export async function executeHashlineSingle(
|
|
|
176
213
|
const isLast = i === prepared.length - 1;
|
|
177
214
|
fs.setBatchRequest(narrowBatchRequest(options.batchRequest, isLast));
|
|
178
215
|
const sectionResult = await patcher.commit(prepared[i]);
|
|
179
|
-
if (sectionResult.op === "noop")
|
|
216
|
+
if (sectionResult.op === "noop") {
|
|
217
|
+
const { count, escalate } = recordNoopEdit(options.session, sectionResult.canonicalPath, inputHash);
|
|
218
|
+
throw escalate
|
|
219
|
+
? new ToolError(noChangeLoopDiagnostic(sectionResult.path, count))
|
|
220
|
+
: new ToolError(noChangeDiagnostic(sectionResult.path));
|
|
221
|
+
}
|
|
222
|
+
resetNoopEdit(options.session, sectionResult.canonicalPath);
|
|
180
223
|
rendered.push(renderSection(sectionResult, fs.consumeDiagnostics(sectionResult.path)));
|
|
181
224
|
}
|
|
182
225
|
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Per-session guard against subagents looping on byte-identical no-op edits.
|
|
3
|
+
*
|
|
4
|
+
* A hashline patch can apply cleanly yet produce no change when the body rows
|
|
5
|
+
* are already byte-identical to the targeted lines. {@link executeHashlineSingle}
|
|
6
|
+
* surfaces a soft hint ("re-read the file before issuing another edit"), but in
|
|
7
|
+
* the wild some models ignore the hint and keep re-issuing the same bytes
|
|
8
|
+
* (issue #2081 captured 182 such repeats in 205 calls before the user aborted).
|
|
9
|
+
*
|
|
10
|
+
* This module tracks consecutive byte-identical no-op edits per canonical file
|
|
11
|
+
* path within a single session. Once the same payload no-ops {@link NOOP_HARD_LIMIT}
|
|
12
|
+
* times in a row the caller is expected to escalate from a soft text result to
|
|
13
|
+
* a thrown {@link ToolError} so the agent loop sees a tool *failure* — empirically
|
|
14
|
+
* far more effective at breaking the cycle than the soft hint alone.
|
|
15
|
+
*
|
|
16
|
+
* A successful (non-noop) commit for a path resets that path's counter; a
|
|
17
|
+
* different payload on the same path also resets it because the body hash
|
|
18
|
+
* changed, which is a sign of model progress and deserves another soft hint.
|
|
19
|
+
*/
|
|
20
|
+
|
|
21
|
+
interface NoopLoopEntry {
|
|
22
|
+
/** Hash of the most recent input that no-op'd on this canonical path. */
|
|
23
|
+
hash: string;
|
|
24
|
+
/** Consecutive no-op count for the same `hash` on this path. */
|
|
25
|
+
count: number;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
/** Cross-session-safe state slot held on the `ToolSession`. */
|
|
29
|
+
export interface NoopLoopGuard {
|
|
30
|
+
entries: Map<string, NoopLoopEntry>;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* After this many consecutive byte-identical no-op edits on the same path,
|
|
35
|
+
* {@link recordNoopEdit} returns `escalate: true`. Picked deliberately small
|
|
36
|
+
* so the soft hint still fires once or twice before we escalate — the model
|
|
37
|
+
* deserves a chance to recover, but a tight bound is what actually breaks
|
|
38
|
+
* loops in practice.
|
|
39
|
+
*/
|
|
40
|
+
export const NOOP_HARD_LIMIT = 3;
|
|
41
|
+
|
|
42
|
+
interface NoopLoopGuardOwner {
|
|
43
|
+
noopLoopGuard?: NoopLoopGuard;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
/** Lazily create the per-session guard, mirroring `getFileSnapshotStore`. */
|
|
47
|
+
export function getNoopLoopGuard(session: NoopLoopGuardOwner): NoopLoopGuard {
|
|
48
|
+
if (!session.noopLoopGuard) session.noopLoopGuard = { entries: new Map() };
|
|
49
|
+
return session.noopLoopGuard;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
/** Result of recording one no-op against the guard. */
|
|
53
|
+
export interface NoopRecordResult {
|
|
54
|
+
/** Consecutive identical no-op count, including the current one. */
|
|
55
|
+
count: number;
|
|
56
|
+
/** True once `count >= NOOP_HARD_LIMIT` and the caller MUST escalate. */
|
|
57
|
+
escalate: boolean;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
/**
|
|
61
|
+
* Record a no-op edit for `canonicalPath` keyed by `inputHash` (a stable hash
|
|
62
|
+
* of the raw patch input bytes). Returns the running consecutive-no-op count
|
|
63
|
+
* and whether the caller should escalate from a soft text result to a thrown
|
|
64
|
+
* error.
|
|
65
|
+
*
|
|
66
|
+
* `inputHash` is intentionally derived from the raw model-authored bytes
|
|
67
|
+
* rather than from file content: when the model emits a different payload
|
|
68
|
+
* (even whitespace-only) that's progress and earns a fresh soft hint, but
|
|
69
|
+
* re-issuing the same bytes after being warned is what we want to break.
|
|
70
|
+
*/
|
|
71
|
+
export function recordNoopEdit(
|
|
72
|
+
session: NoopLoopGuardOwner,
|
|
73
|
+
canonicalPath: string,
|
|
74
|
+
inputHash: string,
|
|
75
|
+
): NoopRecordResult {
|
|
76
|
+
const guard = getNoopLoopGuard(session);
|
|
77
|
+
const prev = guard.entries.get(canonicalPath);
|
|
78
|
+
const count = prev && prev.hash === inputHash ? prev.count + 1 : 1;
|
|
79
|
+
guard.entries.set(canonicalPath, { hash: inputHash, count });
|
|
80
|
+
return { count, escalate: count >= NOOP_HARD_LIMIT };
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
/**
|
|
84
|
+
* Clear the no-op counter for `canonicalPath`. Call after a non-noop commit
|
|
85
|
+
* for the same path so a future no-op starts fresh from the soft hint.
|
|
86
|
+
*/
|
|
87
|
+
export function resetNoopEdit(session: NoopLoopGuardOwner, canonicalPath: string): void {
|
|
88
|
+
const guard = session.noopLoopGuard;
|
|
89
|
+
if (!guard) return;
|
|
90
|
+
guard.entries.delete(canonicalPath);
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
/**
|
|
94
|
+
* Stable hash of the raw patch input. Bun's `Bun.hash` is xxHash64 — fast,
|
|
95
|
+
* non-cryptographic, more than adequate for "is this the same payload?".
|
|
96
|
+
*/
|
|
97
|
+
export function hashPatchInput(input: string): string {
|
|
98
|
+
return Bun.hash(input).toString(16);
|
|
99
|
+
}
|
package/src/edit/index.ts
CHANGED
|
@@ -238,8 +238,23 @@ async function executeSinglePathEntries(
|
|
|
238
238
|
if (text) contentTexts.push(text);
|
|
239
239
|
} catch (err) {
|
|
240
240
|
const errorText = err instanceof Error ? err.message : String(err);
|
|
241
|
-
contentTexts.push(`Error editing ${path}: ${errorText}`);
|
|
241
|
+
contentTexts.push(`Error editing ${path} (entry ${i + 1} of ${runs.length}): ${errorText}`);
|
|
242
|
+
if (i > 0) {
|
|
243
|
+
contentTexts.push(i === 1 ? `Entry 1 was already applied.` : `Entries 1-${i} were already applied.`);
|
|
244
|
+
}
|
|
245
|
+
if (i + 1 < runs.length) {
|
|
246
|
+
contentTexts.push(
|
|
247
|
+
(i + 2 === runs.length
|
|
248
|
+
? `Entry ${runs.length} was NOT applied`
|
|
249
|
+
: `Entries ${i + 2}-${runs.length} were NOT applied`) +
|
|
250
|
+
`; re-read the file and re-issue only the failed and unapplied entries.`,
|
|
251
|
+
);
|
|
252
|
+
}
|
|
242
253
|
errorCount++;
|
|
254
|
+
// Stop at the first failure: later entries were authored against
|
|
255
|
+
// line numbers/content that assumed this entry succeeded, and
|
|
256
|
+
// applying them after a failure compounds the damage.
|
|
257
|
+
break;
|
|
243
258
|
}
|
|
244
259
|
|
|
245
260
|
if (!isLast && onUpdate) {
|
package/src/edit/modes/patch.ts
CHANGED
|
@@ -40,6 +40,7 @@ import {
|
|
|
40
40
|
countLeadingWhitespace,
|
|
41
41
|
detectLineEnding,
|
|
42
42
|
getLeadingWhitespace,
|
|
43
|
+
normalizeForFuzzy,
|
|
43
44
|
normalizeToLF,
|
|
44
45
|
restoreLineEndings,
|
|
45
46
|
stripBom,
|
|
@@ -1007,6 +1008,41 @@ async function readExistingPatchFile(fileSystem: FileSystem, absolutePath: strin
|
|
|
1007
1008
|
}
|
|
1008
1009
|
}
|
|
1009
1010
|
|
|
1011
|
+
/**
|
|
1012
|
+
* A prefix/substring strategy matched pattern lines that cover only part of
|
|
1013
|
+
* the corresponding file lines; replacing whole lines would silently drop the
|
|
1014
|
+
* uncovered text the model never saw. Allow the replacement only when every
|
|
1015
|
+
* discarded piece (normalized) survives somewhere in the hunk's new lines.
|
|
1016
|
+
*/
|
|
1017
|
+
function assertPartialMatchPreservesDiscardedText(
|
|
1018
|
+
path: string,
|
|
1019
|
+
pattern: string[],
|
|
1020
|
+
matchedLines: string[],
|
|
1021
|
+
newLines: string[],
|
|
1022
|
+
matchStartIndex: number,
|
|
1023
|
+
): void {
|
|
1024
|
+
let newLinesNorm: string | undefined;
|
|
1025
|
+
for (let j = 0; j < pattern.length; j++) {
|
|
1026
|
+
const lineNorm = normalizeForFuzzy(matchedLines[j]);
|
|
1027
|
+
const patternNorm = normalizeForFuzzy(pattern[j]);
|
|
1028
|
+
if (lineNorm === patternNorm) continue;
|
|
1029
|
+
const at = lineNorm.indexOf(patternNorm);
|
|
1030
|
+
if (at === -1) continue;
|
|
1031
|
+
const discardedParts = [lineNorm.slice(0, at).trim(), lineNorm.slice(at + patternNorm.length).trim()];
|
|
1032
|
+
for (const part of discardedParts) {
|
|
1033
|
+
if (part.length === 0) continue;
|
|
1034
|
+
newLinesNorm ??= newLines.map(normalizeForFuzzy).join("\n");
|
|
1035
|
+
if (!newLinesNorm.includes(part)) {
|
|
1036
|
+
throw new ApplyPatchError(
|
|
1037
|
+
`Refusing partial-line match in ${path} at line ${matchStartIndex + j + 1}: ` +
|
|
1038
|
+
`the file line also contains ${JSON.stringify(part)}, which the replacement would silently drop. ` +
|
|
1039
|
+
`Provide the complete line in the hunk.`,
|
|
1040
|
+
);
|
|
1041
|
+
}
|
|
1042
|
+
}
|
|
1043
|
+
}
|
|
1044
|
+
}
|
|
1045
|
+
|
|
1010
1046
|
/**
|
|
1011
1047
|
* Compute replacements needed to transform originalLines using the diff hunks.
|
|
1012
1048
|
*/
|
|
@@ -1253,6 +1289,18 @@ function computeReplacements(
|
|
|
1253
1289
|
if (searchResult.strategy === "fuzzy-dominant") {
|
|
1254
1290
|
const similarity = Math.round(searchResult.confidence * 100);
|
|
1255
1291
|
warnings.push(`Dominant fuzzy match selected in ${path} near line ${found + 1} (${similarity}% similar).`);
|
|
1292
|
+
} else if (
|
|
1293
|
+
searchResult.strategy === "comment-prefix" ||
|
|
1294
|
+
searchResult.strategy === "prefix" ||
|
|
1295
|
+
searchResult.strategy === "substring" ||
|
|
1296
|
+
searchResult.strategy === "fuzzy" ||
|
|
1297
|
+
searchResult.strategy === "character"
|
|
1298
|
+
) {
|
|
1299
|
+
const similarity = Math.round(searchResult.confidence * 100);
|
|
1300
|
+
warnings.push(
|
|
1301
|
+
`Inexact match in ${path} near line ${found + 1}: matched via ${searchResult.strategy} strategy ` +
|
|
1302
|
+
`(${similarity}% similar). Re-read the file if the result is not what you intended.`,
|
|
1303
|
+
);
|
|
1256
1304
|
}
|
|
1257
1305
|
|
|
1258
1306
|
// Reject if match is ambiguous (prefix/substring matching found multiple matches)
|
|
@@ -1305,6 +1353,10 @@ function computeReplacements(
|
|
|
1305
1353
|
continue;
|
|
1306
1354
|
}
|
|
1307
1355
|
|
|
1356
|
+
if (searchResult.strategy === "prefix" || searchResult.strategy === "substring") {
|
|
1357
|
+
assertPartialMatchPreservesDiscardedText(path, pattern, actualMatchedLines, newSlice, found);
|
|
1358
|
+
}
|
|
1359
|
+
|
|
1308
1360
|
const adjustedNewLines = adjustLinesIndentation(pattern, actualMatchedLines, newSlice);
|
|
1309
1361
|
replacements.push({ startIndex: found, oldLen: pattern.length, newLines: adjustedNewLines });
|
|
1310
1362
|
lineIndex = found + pattern.length;
|
|
@@ -525,29 +525,45 @@ function matchesAt(lines: string[], pattern: string[], i: number, compare: (a: s
|
|
|
525
525
|
return true;
|
|
526
526
|
}
|
|
527
527
|
|
|
528
|
-
/**
|
|
529
|
-
|
|
528
|
+
/**
|
|
529
|
+
* Compute average similarity score for pre-normalized pattern lines at
|
|
530
|
+
* position `i` of pre-normalized file lines.
|
|
531
|
+
*
|
|
532
|
+
* `minScore` is a bail threshold: when even perfect similarity on the
|
|
533
|
+
* remaining lines cannot lift the average to `minScore`, returns the partial
|
|
534
|
+
* average early (always ≤ the true score). The length-difference lower bound
|
|
535
|
+
* on Levenshtein distance is used to skip the DP entirely for line pairs the
|
|
536
|
+
* bail test already rules out.
|
|
537
|
+
*/
|
|
538
|
+
function fuzzyScoreAt(linesNorm: string[], patternNorm: string[], i: number, minScore = 0): number {
|
|
539
|
+
const count = patternNorm.length;
|
|
530
540
|
let totalScore = 0;
|
|
531
|
-
for (let j = 0; j <
|
|
532
|
-
const lineNorm =
|
|
533
|
-
const
|
|
534
|
-
|
|
541
|
+
for (let j = 0; j < count; j++) {
|
|
542
|
+
const lineNorm = linesNorm[i + j];
|
|
543
|
+
const patNorm = patternNorm[j];
|
|
544
|
+
if (lineNorm === patNorm) {
|
|
545
|
+
totalScore += 1;
|
|
546
|
+
continue;
|
|
547
|
+
}
|
|
548
|
+
const remaining = count - j - 1;
|
|
549
|
+
const maxLen = Math.max(lineNorm.length, patNorm.length);
|
|
550
|
+
// similarity ≤ 1 − |lenA−lenB|/maxLen: test the bound before the DP.
|
|
551
|
+
const upperBound = 1 - Math.abs(lineNorm.length - patNorm.length) / maxLen;
|
|
552
|
+
if ((totalScore + upperBound + remaining) / count < minScore) return totalScore / count;
|
|
553
|
+
if (upperBound > 0) totalScore += similarity(lineNorm, patNorm);
|
|
554
|
+
if ((totalScore + remaining) / count < minScore) return totalScore / count;
|
|
535
555
|
}
|
|
536
|
-
return totalScore /
|
|
556
|
+
return totalScore / count;
|
|
537
557
|
}
|
|
538
558
|
|
|
539
|
-
/** Check if line starts with pattern
|
|
540
|
-
function
|
|
541
|
-
const lineNorm = normalizeForFuzzy(line);
|
|
542
|
-
const patternNorm = normalizeForFuzzy(pattern);
|
|
559
|
+
/** Check if pre-normalized line starts with pre-normalized pattern */
|
|
560
|
+
function normStartsWith(lineNorm: string, patternNorm: string): boolean {
|
|
543
561
|
if (patternNorm.length === 0) return lineNorm.length === 0;
|
|
544
562
|
return lineNorm.startsWith(patternNorm);
|
|
545
563
|
}
|
|
546
564
|
|
|
547
|
-
/** Check if line contains pattern as significant substring */
|
|
548
|
-
function
|
|
549
|
-
const lineNorm = normalizeForFuzzy(line);
|
|
550
|
-
const patternNorm = normalizeForFuzzy(pattern);
|
|
565
|
+
/** Check if pre-normalized line contains pre-normalized pattern as significant substring */
|
|
566
|
+
function normIncludes(lineNorm: string, patternNorm: string): boolean {
|
|
551
567
|
if (patternNorm.length === 0) return lineNorm.length === 0;
|
|
552
568
|
if (patternNorm.length < PARTIAL_MATCH_MIN_LENGTH) return false;
|
|
553
569
|
if (!lineNorm.includes(patternNorm)) return false;
|
|
@@ -613,6 +629,13 @@ export function seekSequence(
|
|
|
613
629
|
const searchStart = eof && lines.length >= pattern.length ? lines.length - pattern.length : start;
|
|
614
630
|
const maxStart = lines.length - pattern.length;
|
|
615
631
|
|
|
632
|
+
// Fuzzy and partial passes compare normalizeForFuzzy forms; normalize the
|
|
633
|
+
// file and pattern once per call instead of once per candidate position.
|
|
634
|
+
let linesNormCache: string[] | undefined;
|
|
635
|
+
let patternNormCache: string[] | undefined;
|
|
636
|
+
const getLinesNorm = () => (linesNormCache ??= lines.map(normalizeForFuzzy));
|
|
637
|
+
const getPatternNorm = () => (patternNormCache ??= pattern.map(normalizeForFuzzy));
|
|
638
|
+
|
|
616
639
|
const runExactPasses = (from: number, to: number): SequenceSearchResult | undefined => {
|
|
617
640
|
const comparisonPasses: Array<{
|
|
618
641
|
compare: (a: string, b: string) => boolean;
|
|
@@ -646,17 +669,19 @@ export function seekSequence(
|
|
|
646
669
|
return undefined;
|
|
647
670
|
}
|
|
648
671
|
|
|
672
|
+
const linesNorm = getLinesNorm();
|
|
673
|
+
const patternNorm = getPatternNorm();
|
|
649
674
|
const partialPasses: Array<{
|
|
650
|
-
compare: (
|
|
675
|
+
compare: (lineNorm: string, patternLineNorm: string) => boolean;
|
|
651
676
|
confidence: number;
|
|
652
677
|
strategy: SequenceMatchStrategy;
|
|
653
678
|
}> = [
|
|
654
|
-
{ compare:
|
|
655
|
-
{ compare:
|
|
679
|
+
{ compare: normStartsWith, confidence: 0.965, strategy: "prefix" },
|
|
680
|
+
{ compare: normIncludes, confidence: 0.94, strategy: "substring" },
|
|
656
681
|
];
|
|
657
682
|
|
|
658
683
|
for (const pass of partialPasses) {
|
|
659
|
-
const matches = collectIndexedMatches(from, to, i => matchesAt(
|
|
684
|
+
const matches = collectIndexedMatches(from, to, i => matchesAt(linesNorm, patternNorm, i, pass.compare));
|
|
660
685
|
const result = toAmbiguousMatchResult(matches, pass.confidence, pass.strategy);
|
|
661
686
|
if (result) {
|
|
662
687
|
return result;
|
|
@@ -692,9 +717,14 @@ export function seekSequence(
|
|
|
692
717
|
matchIndices: [],
|
|
693
718
|
};
|
|
694
719
|
|
|
720
|
+
const fuzzyLinesNorm = getLinesNorm();
|
|
721
|
+
const fuzzyPatternNorm = getPatternNorm();
|
|
722
|
+
// Positions scoring below this can neither become a fuzzy match nor affect
|
|
723
|
+
// the dominant-fuzzy gap test; let fuzzyScoreAt bail early on them.
|
|
724
|
+
const fuzzyBail = SEQUENCE_FUZZY_THRESHOLD - DOMINANT_FUZZY_DELTA;
|
|
695
725
|
const scoreFuzzyRange = (from: number, to: number): void => {
|
|
696
726
|
for (let i = from; i <= to; i++) {
|
|
697
|
-
const score = fuzzyScoreAt(
|
|
727
|
+
const score = fuzzyScoreAt(fuzzyLinesNorm, fuzzyPatternNorm, i, fuzzyBail);
|
|
698
728
|
if (score >= SEQUENCE_FUZZY_THRESHOLD) {
|
|
699
729
|
if (fuzzyMatches.firstMatch === undefined) {
|
|
700
730
|
fuzzyMatches.firstMatch = i;
|
|
@@ -787,12 +817,16 @@ export function findClosestSequenceMatch(
|
|
|
787
817
|
const eof = options?.eof ?? false;
|
|
788
818
|
const maxStart = lines.length - pattern.length;
|
|
789
819
|
const searchStart = eof && lines.length >= pattern.length ? maxStart : start;
|
|
820
|
+
const linesNorm = lines.map(normalizeForFuzzy);
|
|
821
|
+
const patternNorm = pattern.map(normalizeForFuzzy);
|
|
790
822
|
|
|
791
823
|
let bestIndex: number | undefined;
|
|
792
824
|
let bestScore = 0;
|
|
793
825
|
|
|
826
|
+
// Passing the running best as the bail threshold is exact: a bailed
|
|
827
|
+
// position returns a value strictly below it, so it can never win.
|
|
794
828
|
for (let i = searchStart; i <= maxStart; i++) {
|
|
795
|
-
const score = fuzzyScoreAt(
|
|
829
|
+
const score = fuzzyScoreAt(linesNorm, patternNorm, i, bestScore);
|
|
796
830
|
if (score > bestScore) {
|
|
797
831
|
bestScore = score;
|
|
798
832
|
bestIndex = i;
|
|
@@ -801,7 +835,7 @@ export function findClosestSequenceMatch(
|
|
|
801
835
|
|
|
802
836
|
if (eof && searchStart > start) {
|
|
803
837
|
for (let i = start; i < searchStart; i++) {
|
|
804
|
-
const score = fuzzyScoreAt(
|
|
838
|
+
const score = fuzzyScoreAt(linesNorm, patternNorm, i, bestScore);
|
|
805
839
|
if (score > bestScore) {
|
|
806
840
|
bestScore = score;
|
|
807
841
|
bestIndex = i;
|
package/src/edit/notebook.ts
CHANGED
|
@@ -21,6 +21,26 @@ export interface NotebookDocument {
|
|
|
21
21
|
}
|
|
22
22
|
|
|
23
23
|
const CELL_MARKER_RE = /^# %% \[(code|markdown|raw)\](?: cell:(\d+))?$/;
|
|
24
|
+
/**
|
|
25
|
+
* Cell source lines that would themselves parse as (possibly already-escaped)
|
|
26
|
+
* cell markers gain one extra `%` on render and lose it on parse, so a
|
|
27
|
+
* notebook that *contains* the literal text `# %% [markdown] cell:3` survives
|
|
28
|
+
* the editable-text round trip instead of being split into extra cells.
|
|
29
|
+
*/
|
|
30
|
+
const ESCAPABLE_MARKER_RE = /^# %%+ \[(?:code|markdown|raw)\](?: cell:\d+)?$/;
|
|
31
|
+
const ESCAPED_MARKER_RE = /^# %%%+ \[(?:code|markdown|raw)\](?: cell:\d+)?$/;
|
|
32
|
+
|
|
33
|
+
function escapeMarkerLikeSourceLines(source: string): string {
|
|
34
|
+
if (!source.includes("# %%")) return source;
|
|
35
|
+
return source
|
|
36
|
+
.split("\n")
|
|
37
|
+
.map(line => (ESCAPABLE_MARKER_RE.test(line) ? line.replace("# %", "# %%") : line))
|
|
38
|
+
.join("\n");
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
function unescapeMarkerLikeLine(line: string): string {
|
|
42
|
+
return ESCAPED_MARKER_RE.test(line) ? line.replace("# %%", "# %") : line;
|
|
43
|
+
}
|
|
24
44
|
|
|
25
45
|
export function isNotebookPath(filePath: string): boolean {
|
|
26
46
|
return path.extname(filePath).toLowerCase() === ".ipynb";
|
|
@@ -100,7 +120,7 @@ export async function readNotebookDocument(absolutePath: string, displayPath: st
|
|
|
100
120
|
export function notebookToEditableText(notebook: NotebookDocument): string {
|
|
101
121
|
return notebook.cells
|
|
102
122
|
.map((cell, index) => {
|
|
103
|
-
const source = sourceToText(cell.source);
|
|
123
|
+
const source = escapeMarkerLikeSourceLines(sourceToText(cell.source));
|
|
104
124
|
return source.length > 0
|
|
105
125
|
? `# %% [${cell.cell_type}] cell:${index}\n${source}`
|
|
106
126
|
: `# %% [${cell.cell_type}] cell:${index}`;
|
|
@@ -156,7 +176,7 @@ function parseNotebookEditableText(text: string, displayPath: string): ParsedVir
|
|
|
156
176
|
`Invalid notebook editable representation for ${displayPath}: expected first line to be "# %% [code] cell:0", "# %% [markdown] cell:0", or "# %% [raw] cell:0".`,
|
|
157
177
|
);
|
|
158
178
|
}
|
|
159
|
-
current.lines.push(line);
|
|
179
|
+
current.lines.push(unescapeMarkerLikeLine(line));
|
|
160
180
|
}
|
|
161
181
|
flush();
|
|
162
182
|
return cells;
|
package/src/edit/renderer.ts
CHANGED
|
@@ -261,7 +261,6 @@ function renderEditHeader(
|
|
|
261
261
|
options: {
|
|
262
262
|
icon: "pending" | "success" | "error";
|
|
263
263
|
iconOverride?: string;
|
|
264
|
-
spinnerFrame?: number;
|
|
265
264
|
op?: Operation;
|
|
266
265
|
rawPath: string;
|
|
267
266
|
rename?: string;
|
|
@@ -284,7 +283,6 @@ function renderEditHeader(
|
|
|
284
283
|
{
|
|
285
284
|
icon: options.icon,
|
|
286
285
|
iconOverride: options.iconOverride,
|
|
287
|
-
spinnerFrame: options.spinnerFrame,
|
|
288
286
|
title,
|
|
289
287
|
description,
|
|
290
288
|
},
|
|
@@ -322,6 +320,7 @@ function formatStreamingDiff(
|
|
|
322
320
|
uiTheme: Theme,
|
|
323
321
|
expanded: boolean,
|
|
324
322
|
label = "streaming",
|
|
323
|
+
spinnerFrame?: number,
|
|
325
324
|
): string {
|
|
326
325
|
if (!diff) return "";
|
|
327
326
|
// Collapsed uses a "Cursor" tail window: pin the last
|
|
@@ -342,11 +341,26 @@ function formatStreamingDiff(
|
|
|
342
341
|
text += `${uiTheme.fg("dim", `… (${remainder.join(", ")} above)`)}\n`;
|
|
343
342
|
}
|
|
344
343
|
text += renderDiffColored(visible.join("\n"), { filePath: rawPath });
|
|
345
|
-
|
|
344
|
+
// The animated glyph rides this trailing line — inside the transcript's
|
|
345
|
+
// volatile-tail holdback — never the block header: an animating head row
|
|
346
|
+
// pins the native-scrollback commit boundary at the top of the block, so a
|
|
347
|
+
// tall expanded preview could never scroll-append mid-stream.
|
|
348
|
+
const spinner = spinnerFrame !== undefined ? `${formatStatusIcon("running", uiTheme, spinnerFrame)} ` : "";
|
|
349
|
+
// Expanded approval previews hide the "(preview)" label (#1992) but keep
|
|
350
|
+
// the animated glyph when one is active so the volatile tail stays live.
|
|
351
|
+
const hideLabel = expanded && label === "preview";
|
|
352
|
+
if (spinner || !hideLabel) {
|
|
353
|
+
text += `\n${hideLabel ? spinner.trimEnd() : `${spinner}${uiTheme.fg("dim", `(${label})`)}`}`;
|
|
354
|
+
}
|
|
346
355
|
return text;
|
|
347
356
|
}
|
|
348
357
|
|
|
349
|
-
function formatMultiFileStreamingDiff(
|
|
358
|
+
function formatMultiFileStreamingDiff(
|
|
359
|
+
previews: PerFileDiffPreview[],
|
|
360
|
+
uiTheme: Theme,
|
|
361
|
+
expanded: boolean,
|
|
362
|
+
spinnerFrame?: number,
|
|
363
|
+
): string {
|
|
350
364
|
const parts: string[] = [];
|
|
351
365
|
for (const preview of previews) {
|
|
352
366
|
if (!preview.diff && !preview.error) continue;
|
|
@@ -356,7 +370,13 @@ function formatMultiFileStreamingDiff(previews: PerFileDiffPreview[], uiTheme: T
|
|
|
356
370
|
continue;
|
|
357
371
|
}
|
|
358
372
|
if (preview.diff) {
|
|
359
|
-
|
|
373
|
+
// Only the last file's preview carries the animated streaming glyph;
|
|
374
|
+
// earlier files have settled and must stay byte-stable so their rows
|
|
375
|
+
// can commit to native scrollback mid-stream.
|
|
376
|
+
const isLast = preview === previews[previews.length - 1];
|
|
377
|
+
parts.push(
|
|
378
|
+
`${header}${formatStreamingDiff(preview.diff, preview.path, uiTheme, expanded, "preview", isLast ? spinnerFrame : undefined)}`,
|
|
379
|
+
);
|
|
360
380
|
}
|
|
361
381
|
}
|
|
362
382
|
return parts.join("");
|
|
@@ -368,16 +388,17 @@ function getCallPreview(
|
|
|
368
388
|
uiTheme: Theme,
|
|
369
389
|
renderContext: EditRenderContext | undefined,
|
|
370
390
|
expanded: boolean,
|
|
391
|
+
spinnerFrame?: number,
|
|
371
392
|
): string {
|
|
372
393
|
const multi = renderContext?.perFileDiffPreview;
|
|
373
394
|
if (multi && multi.length > 1 && multi.some(p => p.diff || p.error)) {
|
|
374
|
-
return formatMultiFileStreamingDiff(multi, uiTheme, expanded);
|
|
395
|
+
return formatMultiFileStreamingDiff(multi, uiTheme, expanded, spinnerFrame);
|
|
375
396
|
}
|
|
376
397
|
if (args.previewDiff) {
|
|
377
|
-
return formatStreamingDiff(args.previewDiff, rawPath, uiTheme, expanded, "preview");
|
|
398
|
+
return formatStreamingDiff(args.previewDiff, rawPath, uiTheme, expanded, "preview", spinnerFrame);
|
|
378
399
|
}
|
|
379
400
|
if (args.diff && args.op) {
|
|
380
|
-
return formatStreamingDiff(args.diff, rawPath, uiTheme, expanded);
|
|
401
|
+
return formatStreamingDiff(args.diff, rawPath, uiTheme, expanded, "streaming", spinnerFrame);
|
|
381
402
|
}
|
|
382
403
|
if (args.diff) {
|
|
383
404
|
return renderPlainTextPreview(args.diff, uiTheme, rawPath);
|
|
@@ -554,15 +575,20 @@ export const editToolRenderer = {
|
|
|
554
575
|
fileCount = countEditFiles(editArgs.edits);
|
|
555
576
|
}
|
|
556
577
|
return framedBlock(uiTheme, width => {
|
|
578
|
+
// Static pending icon, never the animated glyph: the header is the
|
|
579
|
+
// head row of the framed block, and native-scrollback commits are
|
|
580
|
+
// prefix-only — an animating head row would pin the commit boundary
|
|
581
|
+
// at the top and keep a tall expanded preview from scroll-appending
|
|
582
|
+
// mid-stream. The liveness cue rides the trailing "(preview)" /
|
|
583
|
+
// "(streaming)" line instead.
|
|
557
584
|
const header = renderEditHeader(width, uiTheme, {
|
|
558
585
|
icon: "pending",
|
|
559
|
-
spinnerFrame: options?.spinnerFrame,
|
|
560
586
|
op,
|
|
561
587
|
rawPath,
|
|
562
588
|
rename,
|
|
563
589
|
extraSuffix: fileCount > 1 ? uiTheme.fg("dim", ` (+${fileCount - 1} more)`) : undefined,
|
|
564
590
|
});
|
|
565
|
-
let body = getCallPreview(editArgs, rawPath, uiTheme, renderContext, options.expanded);
|
|
591
|
+
let body = getCallPreview(editArgs, rawPath, uiTheme, renderContext, options.expanded, options?.spinnerFrame);
|
|
566
592
|
if (applyPatchSummary?.error) {
|
|
567
593
|
body += `\n${uiTheme.fg("error", truncateToWidth(replaceTabs(applyPatchSummary.error, rawPath), Math.max(1, width - 2)))}`;
|
|
568
594
|
}
|
|
@@ -38,7 +38,7 @@ const SLOW = makeModel("p", "slow");
|
|
|
38
38
|
const REASONING_SLOW = makeModel("p", "slow", {
|
|
39
39
|
api: "anthropic-messages",
|
|
40
40
|
reasoning: true,
|
|
41
|
-
thinking: {
|
|
41
|
+
thinking: { efforts: [Effort.Low, Effort.Medium, Effort.High], mode: "anthropic-adaptive" },
|
|
42
42
|
});
|
|
43
43
|
|
|
44
44
|
interface SessionOptions {
|