lonny-agent 0.2.6 → 0.2.7
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/.github/workflows/ci.yml +21 -0
- package/AGENTS.md +106 -0
- package/CHANGELOG.md +24 -0
- package/dist/agent/__tests__/session-restore.test.d.ts +2 -0
- package/dist/agent/__tests__/session-restore.test.d.ts.map +1 -0
- package/dist/agent/__tests__/session-restore.test.js +260 -0
- package/dist/agent/__tests__/session-restore.test.js.map +1 -0
- package/dist/agent/commands.d.ts +26 -0
- package/dist/agent/commands.d.ts.map +1 -0
- package/dist/agent/commands.js +253 -0
- package/dist/agent/commands.js.map +1 -0
- package/dist/agent/compaction.js +8 -1
- package/dist/agent/compaction.js.map +1 -1
- package/dist/agent/index.d.ts +2 -1
- package/dist/agent/index.d.ts.map +1 -1
- package/dist/agent/index.js +2 -2
- package/dist/agent/index.js.map +1 -1
- package/dist/agent/memory.d.ts +12 -0
- package/dist/agent/memory.d.ts.map +1 -0
- package/dist/agent/memory.js +51 -0
- package/dist/agent/memory.js.map +1 -0
- package/dist/agent/prompt-builder.d.ts +6 -1
- package/dist/agent/prompt-builder.d.ts.map +1 -1
- package/dist/agent/prompt-builder.js +89 -26
- package/dist/agent/prompt-builder.js.map +1 -1
- package/dist/agent/providers/openai.d.ts +1 -0
- package/dist/agent/providers/openai.d.ts.map +1 -1
- package/dist/agent/providers/openai.js +16 -3
- package/dist/agent/providers/openai.js.map +1 -1
- package/dist/agent/session-chat.d.ts +3 -0
- package/dist/agent/session-chat.d.ts.map +1 -0
- package/dist/agent/session-chat.js +384 -0
- package/dist/agent/session-chat.js.map +1 -0
- package/dist/agent/session-display.d.ts +29 -0
- package/dist/agent/session-display.d.ts.map +1 -0
- package/dist/agent/session-display.js +179 -0
- package/dist/agent/session-display.js.map +1 -0
- package/dist/agent/session-persistence.d.ts +55 -0
- package/dist/agent/session-persistence.d.ts.map +1 -0
- package/dist/agent/session-persistence.js +101 -0
- package/dist/agent/session-persistence.js.map +1 -0
- package/dist/agent/session-utils.d.ts +5 -0
- package/dist/agent/session-utils.d.ts.map +1 -0
- package/dist/agent/session-utils.js +51 -0
- package/dist/agent/session-utils.js.map +1 -0
- package/dist/agent/session.d.ts +15 -17
- package/dist/agent/session.d.ts.map +1 -1
- package/dist/agent/session.js +226 -608
- package/dist/agent/session.js.map +1 -1
- package/dist/cli/index.d.ts +4 -0
- package/dist/cli/index.d.ts.map +1 -1
- package/dist/cli/index.js +67 -2
- package/dist/cli/index.js.map +1 -1
- package/dist/config/index.d.ts +2 -2
- package/dist/config/index.d.ts.map +1 -1
- package/dist/index.js +24 -3
- package/dist/index.js.map +1 -1
- package/dist/tools/__tests__/bash.test.js +168 -1
- package/dist/tools/__tests__/bash.test.js.map +1 -1
- package/dist/tools/__tests__/edit.test.js +253 -6
- package/dist/tools/__tests__/edit.test.js.map +1 -1
- package/dist/tools/__tests__/fetch.test.js +1 -1
- package/dist/tools/__tests__/fetch.test.js.map +1 -1
- package/dist/tools/__tests__/glob.test.js +1 -1
- package/dist/tools/__tests__/glob.test.js.map +1 -1
- package/dist/tools/__tests__/grep.test.js +1 -1
- package/dist/tools/__tests__/grep.test.js.map +1 -1
- package/dist/tools/__tests__/ls.test.js +1 -1
- package/dist/tools/__tests__/ls.test.js.map +1 -1
- package/dist/tools/__tests__/read.test.js +1 -1
- package/dist/tools/__tests__/read.test.js.map +1 -1
- package/dist/tools/__tests__/registry.test.js +313 -0
- package/dist/tools/__tests__/registry.test.js.map +1 -1
- package/dist/tools/__tests__/write_plan.test.js +1 -1
- package/dist/tools/__tests__/write_plan.test.js.map +1 -1
- package/dist/tools/bash.d.ts.map +1 -1
- package/dist/tools/bash.js +659 -39
- package/dist/tools/bash.js.map +1 -1
- package/dist/tools/codebase/ast/__tests__/ast-edit-demo.d.ts +2 -0
- package/dist/tools/codebase/ast/__tests__/ast-edit-demo.d.ts.map +1 -0
- package/dist/tools/codebase/ast/__tests__/ast-edit-demo.js +7 -0
- package/dist/tools/codebase/ast/__tests__/ast-edit-demo.js.map +1 -0
- package/dist/tools/codebase/ast/__tests__/ast-edit-final.d.ts +6 -0
- package/dist/tools/codebase/ast/__tests__/ast-edit-final.d.ts.map +1 -0
- package/dist/tools/codebase/ast/__tests__/ast-edit-final.js +11 -0
- package/dist/tools/codebase/ast/__tests__/ast-edit-final.js.map +1 -0
- package/dist/tools/codebase/ast/__tests__/ast-edit-test.d.ts +2 -0
- package/dist/tools/codebase/ast/__tests__/ast-edit-test.d.ts.map +1 -0
- package/dist/tools/codebase/ast/__tests__/ast-edit-test.js +9 -0
- package/dist/tools/codebase/ast/__tests__/ast-edit-test.js.map +1 -0
- package/dist/tools/codebase/ast/__tests__/integration.test.d.ts +2 -0
- package/dist/tools/codebase/ast/__tests__/integration.test.d.ts.map +1 -0
- package/dist/tools/codebase/ast/__tests__/integration.test.js +415 -0
- package/dist/tools/codebase/ast/__tests__/integration.test.js.map +1 -0
- package/dist/tools/codebase/ast/__tests__/tree-sitter.test.d.ts +2 -0
- package/dist/tools/codebase/ast/__tests__/tree-sitter.test.d.ts.map +1 -0
- package/dist/tools/codebase/ast/__tests__/tree-sitter.test.js +414 -0
- package/dist/tools/codebase/ast/__tests__/tree-sitter.test.js.map +1 -0
- package/dist/tools/codebase/ast/adapter.d.ts +23 -0
- package/dist/tools/codebase/ast/adapter.d.ts.map +1 -0
- package/dist/tools/codebase/ast/adapter.js +11 -0
- package/dist/tools/codebase/ast/adapter.js.map +1 -0
- package/dist/tools/codebase/ast/tools.d.ts +3 -0
- package/dist/tools/codebase/ast/tools.d.ts.map +1 -0
- package/dist/tools/codebase/ast/tools.js +286 -0
- package/dist/tools/codebase/ast/tools.js.map +1 -0
- package/dist/tools/codebase/ast/tree-sitter-adapter.d.ts +3 -0
- package/dist/tools/codebase/ast/tree-sitter-adapter.d.ts.map +1 -0
- package/dist/tools/codebase/ast/tree-sitter-adapter.js +412 -0
- package/dist/tools/codebase/ast/tree-sitter-adapter.js.map +1 -0
- package/dist/tools/codebase/ast/tree-sitter-converters.d.ts +4 -0
- package/dist/tools/codebase/ast/tree-sitter-converters.d.ts.map +1 -0
- package/dist/tools/codebase/ast/tree-sitter-converters.js +447 -0
- package/dist/tools/codebase/ast/tree-sitter-converters.js.map +1 -0
- package/dist/tools/codebase/ast/types.d.ts +103 -0
- package/dist/tools/codebase/ast/types.d.ts.map +1 -0
- package/dist/tools/codebase/ast/types.js +2 -0
- package/dist/tools/codebase/ast/types.js.map +1 -0
- package/dist/tools/codebase/ast/wasm/tree-sitter-python.wasm +0 -0
- package/dist/tools/codebase/ast/wasm/tree-sitter-tsx.wasm +0 -0
- package/dist/tools/codebase/ast/wasm/tree-sitter-typescript.wasm +0 -0
- package/dist/tools/codebase/ast/wasm/tree-sitter.wasm +0 -0
- package/dist/tools/codebase/ast/wasm/web-tree-sitter.wasm +0 -0
- package/dist/tools/codebase/find.d.ts +3 -0
- package/dist/tools/codebase/find.d.ts.map +1 -0
- package/dist/tools/codebase/find.js +61 -0
- package/dist/tools/codebase/find.js.map +1 -0
- package/dist/tools/codebase/glob.d.ts +3 -0
- package/dist/tools/codebase/glob.d.ts.map +1 -0
- package/dist/tools/codebase/glob.js +37 -0
- package/dist/tools/codebase/glob.js.map +1 -0
- package/dist/tools/codebase/grep.d.ts +3 -0
- package/dist/tools/codebase/grep.d.ts.map +1 -0
- package/dist/tools/codebase/grep.js +169 -0
- package/dist/tools/codebase/grep.js.map +1 -0
- package/dist/tools/codebase/ls.d.ts +3 -0
- package/dist/tools/codebase/ls.d.ts.map +1 -0
- package/dist/tools/codebase/ls.js +39 -0
- package/dist/tools/codebase/ls.js.map +1 -0
- package/dist/tools/codebase/read.d.ts +10 -0
- package/dist/tools/codebase/read.d.ts.map +1 -0
- package/dist/tools/codebase/read.js +81 -0
- package/dist/tools/codebase/read.js.map +1 -0
- package/dist/tools/delete_memory.d.ts +3 -0
- package/dist/tools/delete_memory.d.ts.map +1 -0
- package/dist/tools/delete_memory.js +46 -0
- package/dist/tools/delete_memory.js.map +1 -0
- package/dist/tools/edit/diff-compute.d.ts +4 -0
- package/dist/tools/edit/diff-compute.d.ts.map +1 -0
- package/dist/tools/edit/diff-compute.js +18 -0
- package/dist/tools/edit/diff-compute.js.map +1 -0
- package/dist/tools/edit/diff-render.d.ts +18 -0
- package/dist/tools/edit/diff-render.d.ts.map +1 -0
- package/dist/tools/edit/diff-render.js +128 -0
- package/dist/tools/edit/diff-render.js.map +1 -0
- package/dist/tools/edit/edit.d.ts +4 -0
- package/dist/tools/edit/edit.d.ts.map +1 -0
- package/dist/tools/edit/edit.js +440 -0
- package/dist/tools/edit/edit.js.map +1 -0
- package/dist/tools/edit/matcher.d.ts +24 -0
- package/dist/tools/edit/matcher.d.ts.map +1 -0
- package/dist/tools/edit/matcher.js +66 -0
- package/dist/tools/edit/matcher.js.map +1 -0
- package/dist/tools/edit/parser.d.ts +10 -0
- package/dist/tools/edit/parser.d.ts.map +1 -0
- package/dist/tools/edit/parser.js +120 -0
- package/dist/tools/edit/parser.js.map +1 -0
- package/dist/tools/edit/types.d.ts +16 -0
- package/dist/tools/edit/types.d.ts.map +1 -0
- package/dist/tools/edit/types.js +2 -0
- package/dist/tools/edit/types.js.map +1 -0
- package/dist/tools/edit/write_plan.d.ts +5 -0
- package/dist/tools/edit/write_plan.d.ts.map +1 -0
- package/dist/tools/edit/write_plan.js +98 -0
- package/dist/tools/edit/write_plan.js.map +1 -0
- package/dist/tools/edit.d.ts.map +1 -1
- package/dist/tools/edit.js +66 -1
- package/dist/tools/edit.js.map +1 -1
- package/dist/tools/execute/bash/constants.d.ts +24 -0
- package/dist/tools/execute/bash/constants.d.ts.map +1 -0
- package/dist/tools/execute/bash/constants.js +88 -0
- package/dist/tools/execute/bash/constants.js.map +1 -0
- package/dist/tools/execute/bash/errors.d.ts +39 -0
- package/dist/tools/execute/bash/errors.d.ts.map +1 -0
- package/dist/tools/execute/bash/errors.js +249 -0
- package/dist/tools/execute/bash/errors.js.map +1 -0
- package/dist/tools/execute/bash/execution.d.ts +18 -0
- package/dist/tools/execute/bash/execution.d.ts.map +1 -0
- package/dist/tools/execute/bash/execution.js +207 -0
- package/dist/tools/execute/bash/execution.js.map +1 -0
- package/dist/tools/execute/bash/index.d.ts +3 -0
- package/dist/tools/execute/bash/index.d.ts.map +1 -0
- package/dist/tools/execute/bash/index.js +117 -0
- package/dist/tools/execute/bash/index.js.map +1 -0
- package/dist/tools/execute/bash/platform.d.ts +6 -0
- package/dist/tools/execute/bash/platform.d.ts.map +1 -0
- package/dist/tools/execute/bash/platform.js +64 -0
- package/dist/tools/execute/bash/platform.js.map +1 -0
- package/dist/tools/execute/bash/security.d.ts +12 -0
- package/dist/tools/execute/bash/security.d.ts.map +1 -0
- package/dist/tools/execute/bash/security.js +26 -0
- package/dist/tools/execute/bash/security.js.map +1 -0
- package/dist/tools/execute/bash/validation.d.ts +16 -0
- package/dist/tools/execute/bash/validation.d.ts.map +1 -0
- package/dist/tools/execute/bash/validation.js +57 -0
- package/dist/tools/execute/bash/validation.js.map +1 -0
- package/dist/tools/execute/bash.d.ts +3 -0
- package/dist/tools/execute/bash.d.ts.map +1 -0
- package/dist/tools/execute/bash.js +728 -0
- package/dist/tools/execute/bash.js.map +1 -0
- package/dist/tools/execute/git.d.ts +3 -0
- package/dist/tools/execute/git.d.ts.map +1 -0
- package/dist/tools/execute/git.js +183 -0
- package/dist/tools/execute/git.js.map +1 -0
- package/dist/tools/execute/task_complete.d.ts +7 -0
- package/dist/tools/execute/task_complete.d.ts.map +1 -0
- package/dist/tools/execute/task_complete.js +38 -0
- package/dist/tools/execute/task_complete.js.map +1 -0
- package/dist/tools/fetch.d.ts.map +1 -1
- package/dist/tools/fetch.js +2 -0
- package/dist/tools/fetch.js.map +1 -1
- package/dist/tools/find.d.ts.map +1 -1
- package/dist/tools/find.js +2 -0
- package/dist/tools/find.js.map +1 -1
- package/dist/tools/git.d.ts.map +1 -1
- package/dist/tools/git.js +2 -0
- package/dist/tools/git.js.map +1 -1
- package/dist/tools/glob.d.ts.map +1 -1
- package/dist/tools/glob.js +2 -0
- package/dist/tools/glob.js.map +1 -1
- package/dist/tools/grep.d.ts.map +1 -1
- package/dist/tools/grep.js +2 -0
- package/dist/tools/grep.js.map +1 -1
- package/dist/tools/install/clawhub.d.ts +26 -0
- package/dist/tools/install/clawhub.d.ts.map +1 -0
- package/dist/tools/install/clawhub.js +182 -0
- package/dist/tools/install/clawhub.js.map +1 -0
- package/dist/tools/install/constants.d.ts +5 -0
- package/dist/tools/install/constants.d.ts.map +1 -0
- package/dist/tools/install/constants.js +5 -0
- package/dist/tools/install/constants.js.map +1 -0
- package/dist/tools/install/install_skill.d.ts +3 -0
- package/dist/tools/install/install_skill.d.ts.map +1 -0
- package/dist/tools/install/install_skill.js +132 -0
- package/dist/tools/install/install_skill.js.map +1 -0
- package/dist/tools/install/npm.d.ts +8 -0
- package/dist/tools/install/npm.d.ts.map +1 -0
- package/dist/tools/install/npm.js +52 -0
- package/dist/tools/install/npm.js.map +1 -0
- package/dist/tools/install/skill-content.d.ts +9 -0
- package/dist/tools/install/skill-content.d.ts.map +1 -0
- package/dist/tools/install/skill-content.js +89 -0
- package/dist/tools/install/skill-content.js.map +1 -0
- package/dist/tools/install_skill.d.ts.map +1 -1
- package/dist/tools/install_skill.js +2 -0
- package/dist/tools/install_skill.js.map +1 -1
- package/dist/tools/list_memory.d.ts +3 -0
- package/dist/tools/list_memory.d.ts.map +1 -0
- package/dist/tools/list_memory.js +55 -0
- package/dist/tools/list_memory.js.map +1 -0
- package/dist/tools/ls.d.ts.map +1 -1
- package/dist/tools/ls.js +2 -0
- package/dist/tools/ls.js.map +1 -1
- package/dist/tools/memory/delete_memory.d.ts +3 -0
- package/dist/tools/memory/delete_memory.d.ts.map +1 -0
- package/dist/tools/memory/delete_memory.js +46 -0
- package/dist/tools/memory/delete_memory.js.map +1 -0
- package/dist/tools/memory/list_memory.d.ts +3 -0
- package/dist/tools/memory/list_memory.d.ts.map +1 -0
- package/dist/tools/memory/list_memory.js +55 -0
- package/dist/tools/memory/list_memory.js.map +1 -0
- package/dist/tools/memory/save_memory.d.ts +3 -0
- package/dist/tools/memory/save_memory.d.ts.map +1 -0
- package/dist/tools/memory/save_memory.js +45 -0
- package/dist/tools/memory/save_memory.js.map +1 -0
- package/dist/tools/read.d.ts.map +1 -1
- package/dist/tools/read.js +2 -0
- package/dist/tools/read.js.map +1 -1
- package/dist/tools/registry.d.ts +7 -2
- package/dist/tools/registry.d.ts.map +1 -1
- package/dist/tools/registry.js +112 -17
- package/dist/tools/registry.js.map +1 -1
- package/dist/tools/save_memory.d.ts +3 -0
- package/dist/tools/save_memory.d.ts.map +1 -0
- package/dist/tools/save_memory.js +45 -0
- package/dist/tools/save_memory.js.map +1 -0
- package/dist/tools/search.d.ts.map +1 -1
- package/dist/tools/search.js +2 -0
- package/dist/tools/search.js.map +1 -1
- package/dist/tools/tree.d.ts +12 -0
- package/dist/tools/tree.d.ts.map +1 -0
- package/dist/tools/tree.js +87 -0
- package/dist/tools/tree.js.map +1 -0
- package/dist/tools/types.d.ts +12 -0
- package/dist/tools/types.d.ts.map +1 -1
- package/dist/tools/web/fetch.d.ts +3 -0
- package/dist/tools/web/fetch.d.ts.map +1 -0
- package/dist/tools/web/fetch.js +49 -0
- package/dist/tools/web/fetch.js.map +1 -0
- package/dist/tools/web/search.d.ts +3 -0
- package/dist/tools/web/search.d.ts.map +1 -0
- package/dist/tools/web/search.js +134 -0
- package/dist/tools/web/search.js.map +1 -0
- package/dist/tools/write_plan.d.ts.map +1 -1
- package/dist/tools/write_plan.js +2 -0
- package/dist/tools/write_plan.js.map +1 -1
- package/dist/tui/commands.d.ts +4 -0
- package/dist/tui/commands.d.ts.map +1 -0
- package/dist/tui/commands.js +118 -0
- package/dist/tui/commands.js.map +1 -0
- package/dist/tui/components/colors.d.ts +36 -0
- package/dist/tui/components/colors.d.ts.map +1 -0
- package/dist/tui/components/colors.js +48 -0
- package/dist/tui/components/colors.js.map +1 -0
- package/dist/tui/components/header-bar.d.ts +26 -0
- package/dist/tui/components/header-bar.d.ts.map +1 -0
- package/dist/tui/components/header-bar.js +78 -0
- package/dist/tui/components/header-bar.js.map +1 -0
- package/dist/tui/components/index.d.ts +9 -0
- package/dist/tui/components/index.d.ts.map +1 -0
- package/dist/tui/components/index.js +9 -0
- package/dist/tui/components/index.js.map +1 -0
- package/dist/tui/components/landing-screen.d.ts +12 -0
- package/dist/tui/components/landing-screen.d.ts.map +1 -0
- package/dist/tui/components/landing-screen.js +53 -0
- package/dist/tui/components/landing-screen.js.map +1 -0
- package/dist/tui/components/pixel-logo.d.ts +5 -0
- package/dist/tui/components/pixel-logo.d.ts.map +1 -0
- package/dist/tui/components/pixel-logo.js +27 -0
- package/dist/tui/components/pixel-logo.js.map +1 -0
- package/dist/tui/components/plan-utils.d.ts +11 -0
- package/dist/tui/components/plan-utils.d.ts.map +1 -0
- package/dist/tui/components/plan-utils.js +62 -0
- package/dist/tui/components/plan-utils.js.map +1 -0
- package/dist/tui/components/plans-list.d.ts +18 -0
- package/dist/tui/components/plans-list.d.ts.map +1 -0
- package/dist/tui/components/plans-list.js +46 -0
- package/dist/tui/components/plans-list.js.map +1 -0
- package/dist/tui/components/rich-footer.d.ts +29 -0
- package/dist/tui/components/rich-footer.d.ts.map +1 -0
- package/dist/tui/components/rich-footer.js +124 -0
- package/dist/tui/components/rich-footer.js.map +1 -0
- package/dist/tui/components/todo-panel.d.ts +14 -0
- package/dist/tui/components/todo-panel.d.ts.map +1 -0
- package/dist/tui/components/todo-panel.js +83 -0
- package/dist/tui/components/todo-panel.js.map +1 -0
- package/dist/tui/components.d.ts.map +1 -1
- package/dist/tui/components.js +14 -7
- package/dist/tui/components.js.map +1 -1
- package/dist/tui/index.d.ts +2 -1
- package/dist/tui/index.d.ts.map +1 -1
- package/dist/tui/index.js +99 -505
- package/dist/tui/index.js.map +1 -1
- package/dist/tui/overlays.d.ts +28 -0
- package/dist/tui/overlays.d.ts.map +1 -0
- package/dist/tui/overlays.js +154 -0
- package/dist/tui/overlays.js.map +1 -0
- package/dist/tui/themes.d.ts +5 -0
- package/dist/tui/themes.d.ts.map +1 -0
- package/dist/tui/themes.js +38 -0
- package/dist/tui/themes.js.map +1 -0
- package/dist/web/index.d.ts.map +1 -1
- package/dist/web/index.js +60 -122
- package/dist/web/index.js.map +1 -1
- package/dist/web/public/index.html +1 -1
- package/dist/web/public/messages.js +41 -25
- package/dist/web/public/state.js +72 -72
- package/dist/web/public/style.css +1126 -996
- package/dist/web/public/websocket.js +267 -267
- package/dist/web/session-bridge.d.ts.map +1 -1
- package/dist/web/session-bridge.js +82 -3
- package/dist/web/session-bridge.js.map +1 -1
- package/docs/ast-tools.md +117 -0
- package/package.json +60 -55
- package/scripts/check-line-count.mjs +53 -0
- package/scripts/copy-ast-wasm.mjs +32 -0
- package/src/agent/__tests__/session-restore.test.ts +284 -0
- package/src/agent/commands.ts +274 -0
- package/src/agent/compaction.ts +9 -2
- package/src/agent/index.ts +30 -25
- package/src/agent/memory.ts +60 -0
- package/src/agent/prompt-builder.ts +100 -26
- package/src/agent/providers/anthropic.ts +179 -179
- package/src/agent/providers/google.ts +210 -210
- package/src/agent/providers/ollama.ts +186 -186
- package/src/agent/providers/openai.ts +18 -3
- package/src/agent/session-chat.ts +480 -0
- package/src/agent/session-display.ts +195 -0
- package/src/agent/session-persistence.ts +146 -0
- package/src/agent/session-utils.ts +54 -0
- package/src/agent/session.ts +261 -718
- package/src/cli/index.ts +73 -4
- package/src/config/index.ts +342 -342
- package/src/index.ts +30 -3
- package/src/tools/__tests__/bash.test.ts +187 -1
- package/src/tools/__tests__/edit.test.ts +275 -11
- package/src/tools/__tests__/fetch.test.ts +1 -1
- package/src/tools/__tests__/glob.test.ts +1 -1
- package/src/tools/__tests__/grep.test.ts +1 -1
- package/src/tools/__tests__/ls.test.ts +1 -1
- package/src/tools/__tests__/read.test.ts +1 -1
- package/src/tools/__tests__/registry.test.ts +332 -0
- package/src/tools/__tests__/write_plan.test.ts +1 -1
- package/src/tools/codebase/ast/__tests__/integration.test.ts +452 -0
- package/src/tools/codebase/ast/__tests__/tree-sitter.test.ts +466 -0
- package/src/tools/codebase/ast/adapter.ts +44 -0
- package/src/tools/codebase/ast/tools.ts +322 -0
- package/src/tools/codebase/ast/tree-sitter-adapter.ts +468 -0
- package/src/tools/codebase/ast/tree-sitter-converters.ts +480 -0
- package/src/tools/codebase/ast/types.ts +102 -0
- package/src/tools/codebase/ast/wasm/tree-sitter-python.wasm +0 -0
- package/src/tools/codebase/ast/wasm/tree-sitter-tsx.wasm +0 -0
- package/src/tools/codebase/ast/wasm/tree-sitter-typescript.wasm +0 -0
- package/src/tools/codebase/ast/wasm/tree-sitter.wasm +0 -0
- package/src/tools/codebase/ast/wasm/web-tree-sitter.wasm +0 -0
- package/src/tools/{find.ts → codebase/find.ts} +4 -2
- package/src/tools/{glob.ts → codebase/glob.ts} +4 -2
- package/src/tools/{grep.ts → codebase/grep.ts} +4 -2
- package/src/tools/{ls.ts → codebase/ls.ts} +4 -2
- package/src/tools/{read.ts → codebase/read.ts} +5 -3
- package/src/tools/edit/diff-compute.ts +21 -0
- package/src/tools/edit/diff-render.ts +145 -0
- package/src/tools/edit/edit.ts +468 -0
- package/src/tools/edit/matcher.ts +70 -0
- package/src/tools/edit/parser.ts +131 -0
- package/src/tools/edit/types.ts +19 -0
- package/src/tools/{write_plan.ts → edit/write_plan.ts} +4 -2
- package/src/tools/execute/bash/constants.ts +93 -0
- package/src/tools/execute/bash/errors.ts +304 -0
- package/src/tools/execute/bash/execution.ts +211 -0
- package/src/tools/execute/bash/index.ts +131 -0
- package/src/tools/execute/bash/platform.ts +65 -0
- package/src/tools/execute/bash/security.ts +28 -0
- package/src/tools/execute/bash/validation.ts +78 -0
- package/src/tools/execute/git.ts +209 -0
- package/src/tools/execute/task_complete.ts +40 -0
- package/src/tools/install/clawhub.ts +222 -0
- package/src/tools/install/constants.ts +4 -0
- package/src/tools/install/install_skill.ts +150 -0
- package/src/tools/install/npm.ts +60 -0
- package/src/tools/install/skill-content.ts +108 -0
- package/src/tools/memory/delete_memory.ts +46 -0
- package/src/tools/memory/list_memory.ts +53 -0
- package/src/tools/memory/save_memory.ts +45 -0
- package/src/tools/registry.ts +119 -19
- package/src/tools/tree.ts +103 -0
- package/src/tools/types.ts +13 -0
- package/src/tools/{fetch.ts → web/fetch.ts} +4 -2
- package/src/tools/{search.ts → web/search.ts} +4 -2
- package/src/tui/commands.ts +135 -0
- package/src/tui/components/colors.ts +52 -0
- package/src/tui/components/header-bar.ts +88 -0
- package/src/tui/components/index.ts +8 -0
- package/src/tui/components/landing-screen.ts +67 -0
- package/src/tui/components/pixel-logo.ts +33 -0
- package/src/tui/components/plan-utils.ts +69 -0
- package/src/tui/components/plans-list.ts +55 -0
- package/src/tui/components/rich-footer.ts +146 -0
- package/src/tui/components/todo-panel.ts +95 -0
- package/src/tui/index.ts +335 -786
- package/src/tui/overlays.ts +203 -0
- package/src/tui/themes.ts +41 -0
- package/src/web/index.ts +64 -127
- package/src/web/public/index.html +1 -1
- package/src/web/public/messages.js +41 -25
- package/src/web/public/state.js +72 -72
- package/src/web/public/style.css +1126 -996
- package/src/web/public/websocket.js +267 -267
- package/src/web/session-bridge.ts +272 -193
- package/AGENT.md +0 -99
- package/src/tools/bash.ts +0 -125
- package/src/tools/edit.ts +0 -747
- package/src/tools/git.ts +0 -76
- package/src/tools/install_skill.ts +0 -539
- package/src/tui/components.ts +0 -635
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { DIFF_DELETE, DIFF_INSERT, diffLinesRaw } from 'jest-diff'
|
|
2
|
+
import type { DiffLine } from './types.js'
|
|
3
|
+
|
|
4
|
+
/** Compute diff lines using jest-diff for proper line-level diffs */
|
|
5
|
+
export function computeDiff(oldStr: string, newStr: string): DiffLine[] {
|
|
6
|
+
const oldLines = oldStr === '' ? [] : oldStr.split('\n')
|
|
7
|
+
const newLines = newStr === '' ? [] : newStr.split('\n')
|
|
8
|
+
|
|
9
|
+
if (oldLines.length === 0 && newLines.length === 0) return []
|
|
10
|
+
|
|
11
|
+
const rawDiff = diffLinesRaw(oldLines, newLines)
|
|
12
|
+
return rawDiff.map(d => ({
|
|
13
|
+
type:
|
|
14
|
+
d[0] === DIFF_DELETE
|
|
15
|
+
? ('delete' as const)
|
|
16
|
+
: d[0] === DIFF_INSERT
|
|
17
|
+
? ('insert' as const)
|
|
18
|
+
: ('equal' as const),
|
|
19
|
+
content: d[1],
|
|
20
|
+
}))
|
|
21
|
+
}
|
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
import { computeDiff } from './diff-compute.js'
|
|
2
|
+
import type { DiffLine } from './types.js'
|
|
3
|
+
|
|
4
|
+
// ── ANSI colors for terminal output ───────────────────────────────────────
|
|
5
|
+
const DIFF_RED = '\x1b[38;2;255;80;80m'
|
|
6
|
+
const DIFF_GREEN = '\x1b[38;2;0;200;100m'
|
|
7
|
+
const DIFF_DIM = '\x1b[38;2;100;100;100m'
|
|
8
|
+
const DIFF_RESET = '\x1b[0m'
|
|
9
|
+
|
|
10
|
+
// ── Colors for HTML output ────────────────────────────────────────────────
|
|
11
|
+
const HTML_RED = '#ff5050'
|
|
12
|
+
const HTML_GREEN = '#00c864'
|
|
13
|
+
const HTML_DIM = '#888888'
|
|
14
|
+
|
|
15
|
+
/** Terminal renderer — unified-diff format with color */
|
|
16
|
+
export function renderDiffTerminal(lines: DiffLine[], startLineNum?: number): string {
|
|
17
|
+
if (lines.length === 0) return ''
|
|
18
|
+
|
|
19
|
+
const output: string[] = []
|
|
20
|
+
let oldLn = startLineNum ?? 1
|
|
21
|
+
let newLn = startLineNum ?? 1
|
|
22
|
+
for (const line of lines) {
|
|
23
|
+
if (line.type === 'delete') {
|
|
24
|
+
output.push(` ${DIFF_RED}- ${oldLn} ${line.content}${DIFF_RESET}`)
|
|
25
|
+
oldLn++
|
|
26
|
+
} else if (line.type === 'insert') {
|
|
27
|
+
output.push(` ${DIFF_GREEN}+ ${newLn} ${line.content}${DIFF_RESET}`)
|
|
28
|
+
newLn++
|
|
29
|
+
} else {
|
|
30
|
+
output.push(` ${DIFF_DIM} ${oldLn} ${line.content}${DIFF_RESET}`)
|
|
31
|
+
oldLn++
|
|
32
|
+
newLn++
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
return output.join('\n')
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
/** HTML renderer for web output */
|
|
39
|
+
export function renderDiffHtml(lines: DiffLine[]): string {
|
|
40
|
+
if (lines.length === 0) return ''
|
|
41
|
+
|
|
42
|
+
const output: string[] = []
|
|
43
|
+
for (const line of lines) {
|
|
44
|
+
if (line.type === 'delete') {
|
|
45
|
+
output.push(` <span style="color: ${HTML_RED};">- ${escapeHtml(line.content)}</span>`)
|
|
46
|
+
} else if (line.type === 'insert') {
|
|
47
|
+
output.push(` <span style="color: ${HTML_GREEN};">+ ${escapeHtml(line.content)}</span>`)
|
|
48
|
+
} else {
|
|
49
|
+
output.push(` <span style="color: ${HTML_DIM};"> ${escapeHtml(line.content)}</span>`)
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
return output.join('\n')
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
/** Escape HTML special characters */
|
|
56
|
+
export function escapeHtml(str: string): string {
|
|
57
|
+
return str
|
|
58
|
+
.replace(/&/g, '&')
|
|
59
|
+
.replace(/</g, '<')
|
|
60
|
+
.replace(/>/g, '>')
|
|
61
|
+
.replace(/"/g, '"')
|
|
62
|
+
.replace(/'/g, ''')
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
/**
|
|
66
|
+
* Generate diff output using jest-diff.
|
|
67
|
+
* Returns terminal-colored unified-diff format with line numbers.
|
|
68
|
+
*/
|
|
69
|
+
export function generateDiff(oldStr: string, newStr: string, startLineNum?: number): string {
|
|
70
|
+
const lines = computeDiff(oldStr, newStr)
|
|
71
|
+
return renderDiffTerminal(lines, startLineNum)
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
/**
|
|
75
|
+
* Generate diff with surrounding context lines (1 before, 1 after)
|
|
76
|
+
* and line numbers. Context lines are extracted from the full file content.
|
|
77
|
+
*/
|
|
78
|
+
export function generateDiffWithContext(
|
|
79
|
+
fullContent: string,
|
|
80
|
+
oldStr: string,
|
|
81
|
+
newStr: string,
|
|
82
|
+
matchIndex: number,
|
|
83
|
+
matchLength: number,
|
|
84
|
+
): string {
|
|
85
|
+
// Calculate 1-based line number of the first matched line
|
|
86
|
+
const firstLineNum = fullContent.slice(0, matchIndex).split('\n').length
|
|
87
|
+
|
|
88
|
+
const contentLines = fullContent.split('\n')
|
|
89
|
+
|
|
90
|
+
// Find 0-based line index where matchIndex falls
|
|
91
|
+
let charPos = 0
|
|
92
|
+
let matchStartLineIdx = 0
|
|
93
|
+
for (let i = 0; i < contentLines.length; i++) {
|
|
94
|
+
if (charPos <= matchIndex && matchIndex < charPos + contentLines[i].length + 1) {
|
|
95
|
+
matchStartLineIdx = i
|
|
96
|
+
break
|
|
97
|
+
}
|
|
98
|
+
charPos += contentLines[i].length + 1 // +1 for \n
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
// How many lines does oldStr span in the original content?
|
|
102
|
+
const oldLines = oldStr === '' ? [] : oldStr.split('\n')
|
|
103
|
+
const oldLineCount = oldLines.length
|
|
104
|
+
const matchEndLineIdx = matchStartLineIdx + oldLineCount - 1
|
|
105
|
+
|
|
106
|
+
// Context before (1 line) and after (1 line)
|
|
107
|
+
const beforeLineIdx = matchStartLineIdx > 0 ? matchStartLineIdx - 1 : -1
|
|
108
|
+
const afterLineIdx = matchEndLineIdx < contentLines.length - 1 ? matchEndLineIdx + 1 : -1
|
|
109
|
+
|
|
110
|
+
// Compute diff between oldStr and newStr
|
|
111
|
+
const diffLines = computeDiff(oldStr, newStr)
|
|
112
|
+
|
|
113
|
+
const output: string[] = []
|
|
114
|
+
|
|
115
|
+
// Context before
|
|
116
|
+
if (beforeLineIdx !== -1) {
|
|
117
|
+
const lineNum = beforeLineIdx + 1
|
|
118
|
+
output.push(` ${DIFF_DIM} ${lineNum} ${contentLines[beforeLineIdx]}${DIFF_RESET}`)
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
// Diff lines with line numbers
|
|
122
|
+
let oldLn = firstLineNum
|
|
123
|
+
let newLn = firstLineNum
|
|
124
|
+
for (const line of diffLines) {
|
|
125
|
+
if (line.type === 'delete') {
|
|
126
|
+
output.push(` ${DIFF_RED}- ${oldLn} ${line.content}${DIFF_RESET}`)
|
|
127
|
+
oldLn++
|
|
128
|
+
} else if (line.type === 'insert') {
|
|
129
|
+
output.push(` ${DIFF_GREEN}+ ${newLn} ${line.content}${DIFF_RESET}`)
|
|
130
|
+
newLn++
|
|
131
|
+
} else {
|
|
132
|
+
output.push(` ${DIFF_DIM} ${oldLn} ${line.content}${DIFF_RESET}`)
|
|
133
|
+
oldLn++
|
|
134
|
+
newLn++
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
// Context after
|
|
139
|
+
if (afterLineIdx !== -1) {
|
|
140
|
+
const lineNum = afterLineIdx + 1
|
|
141
|
+
output.push(` ${DIFF_DIM} ${lineNum} ${contentLines[afterLineIdx]}${DIFF_RESET}`)
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
return output.join('\n')
|
|
145
|
+
}
|
|
@@ -0,0 +1,468 @@
|
|
|
1
|
+
import * as fs from 'node:fs'
|
|
2
|
+
import * as path from 'node:path'
|
|
3
|
+
import type { FileReadTracker } from '../../diff/apply.js'
|
|
4
|
+
import { fmtErr } from '../errors.js'
|
|
5
|
+
import type { Tool, ToolResult } from '../types.js'
|
|
6
|
+
import { generateDiff, generateDiffWithContext } from './diff-render.js'
|
|
7
|
+
import { findAllLinesTolerant, normalizeLine } from './matcher.js'
|
|
8
|
+
import { buildDiag, extractEditsFromJSON, parseMarkdownEdit, summarizeRawInput } from './parser.js'
|
|
9
|
+
import type { Edit, SingleEdit } from './types.js'
|
|
10
|
+
|
|
11
|
+
export function createEditTool(applier: FileReadTracker, cwd: string): Tool {
|
|
12
|
+
return {
|
|
13
|
+
definition: {
|
|
14
|
+
name: 'edit',
|
|
15
|
+
category: 'Edit',
|
|
16
|
+
group: 'File',
|
|
17
|
+
description: `Replace exact text in files using markdown code block format.
|
|
18
|
+
IMPORTANT: There is no "write" tool — always use this tool ("edit") to modify files.
|
|
19
|
+
|
|
20
|
+
HOW TO USE:
|
|
21
|
+
1. Read the file first with \`read\`
|
|
22
|
+
2. Copy the EXACT text to replace — include 2-3 lines of context before/after
|
|
23
|
+
3. Use markdown code block format below
|
|
24
|
+
|
|
25
|
+
FORMAT:
|
|
26
|
+
\`\`\`edit
|
|
27
|
+
file: <file_path>
|
|
28
|
+
old: |
|
|
29
|
+
<exact text to find>
|
|
30
|
+
new: |
|
|
31
|
+
<replacement text>
|
|
32
|
+
\`\`\`
|
|
33
|
+
|
|
34
|
+
EXAMPLES:
|
|
35
|
+
Single edit:
|
|
36
|
+
\`\`\`edit
|
|
37
|
+
file: src/config.ts
|
|
38
|
+
old: |
|
|
39
|
+
mode: 'code'
|
|
40
|
+
new: |
|
|
41
|
+
mode: 'plan'
|
|
42
|
+
\`\`\`
|
|
43
|
+
|
|
44
|
+
Create new file:
|
|
45
|
+
\`\`\`edit
|
|
46
|
+
file: src/new.ts
|
|
47
|
+
old: |
|
|
48
|
+
new: |
|
|
49
|
+
const x = 1
|
|
50
|
+
\`\`\`
|
|
51
|
+
|
|
52
|
+
Multiple files (use separate code blocks):
|
|
53
|
+
\`\`\`edit
|
|
54
|
+
file: src/config.ts
|
|
55
|
+
old: |
|
|
56
|
+
mode: 'code'
|
|
57
|
+
new: |
|
|
58
|
+
mode: 'plan'
|
|
59
|
+
\`\`\`
|
|
60
|
+
\`\`\`edit
|
|
61
|
+
file: src/constants.ts
|
|
62
|
+
old: |
|
|
63
|
+
MAX_RETRIES = 3
|
|
64
|
+
new: |
|
|
65
|
+
MAX_RETRIES = 5
|
|
66
|
+
\`\`\`
|
|
67
|
+
|
|
68
|
+
CRITICAL RULES:
|
|
69
|
+
- old and new are separated by "old:" and "new:" labels
|
|
70
|
+
- Use | after label for multi-line content
|
|
71
|
+
- old_string must match EXACTLY (whitespace, indentation, line breaks)
|
|
72
|
+
- Do NOT include the "<lineNumber>: " prefix from read output
|
|
73
|
+
- old_string must be CONTIGUOUS text from the file — you CANNOT skip lines between old_string and new_string boundaries. If you need to edit non-adjacent sections, use separate \`\`\`edit blocks.`,
|
|
74
|
+
parameters: {
|
|
75
|
+
content: {
|
|
76
|
+
type: 'string',
|
|
77
|
+
description: 'Markdown code block with edit instructions. See description for format.',
|
|
78
|
+
required: true,
|
|
79
|
+
},
|
|
80
|
+
},
|
|
81
|
+
},
|
|
82
|
+
async execute(input): Promise<ToolResult> {
|
|
83
|
+
// Debug: keep rawInput for error messages (capture early for all error paths)
|
|
84
|
+
const rawInput = input
|
|
85
|
+
|
|
86
|
+
// ── Parse markdown format ─────────────────────────────────────────
|
|
87
|
+
let edits: Edit[] = []
|
|
88
|
+
|
|
89
|
+
// If input has 'content' field (new markdown format)
|
|
90
|
+
if (typeof input.content === 'string') {
|
|
91
|
+
// Compat: handle double-JSON-wrapped content
|
|
92
|
+
let contentStr = input.content
|
|
93
|
+
try {
|
|
94
|
+
const parsed = JSON.parse(contentStr)
|
|
95
|
+
if (typeof parsed === 'string') {
|
|
96
|
+
contentStr = parsed
|
|
97
|
+
} else if (parsed && typeof parsed === 'object' && typeof parsed.content === 'string') {
|
|
98
|
+
contentStr = parsed.content
|
|
99
|
+
}
|
|
100
|
+
} catch {
|
|
101
|
+
// Not JSON — use as-is
|
|
102
|
+
}
|
|
103
|
+
edits = parseMarkdownEdit(contentStr)
|
|
104
|
+
if (edits.length === 0) {
|
|
105
|
+
return {
|
|
106
|
+
success: false,
|
|
107
|
+
output: '',
|
|
108
|
+
error: `Failed to parse edit format. Raw input: ${summarizeRawInput(rawInput)}\nUse: \`\`\`edit\\nfile: path\\nold: |\\ntext\\nnew: |\\ntext\\n\`\`\``,
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
} else {
|
|
112
|
+
// Legacy JSON format (backward compatibility)
|
|
113
|
+
edits = extractEditsFromJSON(input as Record<string, unknown>)
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
if (edits.length === 0) {
|
|
117
|
+
// Check if input specifically had empty edits array (for better error message)
|
|
118
|
+
const inputEdits = (input as Record<string, unknown>).edits
|
|
119
|
+
if ('edits' in input && Array.isArray(inputEdits) && inputEdits.length === 0) {
|
|
120
|
+
return {
|
|
121
|
+
success: false,
|
|
122
|
+
output: '',
|
|
123
|
+
error: `edit FAILED — no edits to apply. The edits array exists but is empty. Raw input: ${summarizeRawInput(rawInput)}`,
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
// Check if input has edits key but it's not an array
|
|
127
|
+
if ('edits' in input && !Array.isArray((input as Record<string, unknown>).edits)) {
|
|
128
|
+
return {
|
|
129
|
+
success: false,
|
|
130
|
+
output: '',
|
|
131
|
+
error: `edit requires "edits" array. Use markdown format: \`\`\`edit\\nfile: path\\nold: |\\ntext\\nnew: |\\ntext\\n\`\`\`\nRaw input: ${summarizeRawInput(rawInput)}`,
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
return {
|
|
135
|
+
success: false,
|
|
136
|
+
output: '',
|
|
137
|
+
error: `No valid edits found (empty or invalid format). The edit array must contain objects with file_path, old_string, and new_string. Use markdown code block format: \`\`\`edit\\nfile: path\\nold: |\\ntext\\nnew: |\\ntext\\n\`\`\`\nRaw input: ${summarizeRawInput(rawInput)}`,
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
// Validate each edit object
|
|
142
|
+
const editErrors: string[] = []
|
|
143
|
+
for (let i = 0; i < edits.length; i++) {
|
|
144
|
+
const e = edits[i]
|
|
145
|
+
const missing: string[] = []
|
|
146
|
+
if (typeof e.file_path !== 'string' || !e.file_path) missing.push('file_path')
|
|
147
|
+
if (typeof e.old_string !== 'string') missing.push('old_string')
|
|
148
|
+
if (typeof e.new_string !== 'string') missing.push('new_string')
|
|
149
|
+
if (e.new_string === '__MISSING_NEW_STRING__') {
|
|
150
|
+
missing.push('new_string (required — LLM must provide a non-empty replacement)')
|
|
151
|
+
}
|
|
152
|
+
if (missing.length > 0) {
|
|
153
|
+
const present = Object.keys(e)
|
|
154
|
+
.filter(k => typeof e[k as keyof Edit] === 'string')
|
|
155
|
+
.join(', ')
|
|
156
|
+
editErrors.push(
|
|
157
|
+
` edit #${i + 1}: missing ${missing.join(', ')}${present ? ` (has: ${present})` : ''}`,
|
|
158
|
+
)
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
if (editErrors.length > 0) {
|
|
162
|
+
return {
|
|
163
|
+
success: false,
|
|
164
|
+
output: '',
|
|
165
|
+
error: `edit FAILED — ${editErrors.length} of ${edits.length} edit(s) have missing fields.\n${editErrors.join('\n')}\n\nReceived: ${summarizeRawInput(rawInput)}\n\nEach edit object must be a COMPLETE find-replace pair with BOTH old_string AND new_string.`,
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
// ── Path traversal security check (symlink-aware) ─────────────────
|
|
170
|
+
const resolvedCwd = path.resolve(cwd)
|
|
171
|
+
let realCwd: string
|
|
172
|
+
try {
|
|
173
|
+
realCwd = fs.realpathSync(resolvedCwd)
|
|
174
|
+
} catch {
|
|
175
|
+
realCwd = resolvedCwd
|
|
176
|
+
}
|
|
177
|
+
for (let i = 0; i < edits.length; i++) {
|
|
178
|
+
const e = edits[i]
|
|
179
|
+
const resolved = path.resolve(cwd, e.file_path)
|
|
180
|
+
const relative = path.relative(resolvedCwd, resolved)
|
|
181
|
+
if (relative.startsWith('..') || path.isAbsolute(relative)) {
|
|
182
|
+
return {
|
|
183
|
+
success: false,
|
|
184
|
+
output: '',
|
|
185
|
+
error:
|
|
186
|
+
'edit FAILED — Path traversal detected: "' +
|
|
187
|
+
e.file_path +
|
|
188
|
+
'" resolves outside the working directory "' +
|
|
189
|
+
resolvedCwd +
|
|
190
|
+
'". All file paths must be within the project directory.',
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
// Symlink-aware check: resolve real path to detect traversal via symlink
|
|
194
|
+
let realPath: string
|
|
195
|
+
try {
|
|
196
|
+
realPath = fs.realpathSync(resolved)
|
|
197
|
+
} catch {
|
|
198
|
+
// File doesn't exist yet – resolve nearest existing ancestor through symlinks
|
|
199
|
+
let dir = path.dirname(resolved)
|
|
200
|
+
while (!fs.existsSync(dir)) {
|
|
201
|
+
const parent = path.dirname(dir)
|
|
202
|
+
if (parent === dir) break // root
|
|
203
|
+
dir = parent
|
|
204
|
+
}
|
|
205
|
+
try {
|
|
206
|
+
realPath = path.join(fs.realpathSync(dir), path.relative(dir, resolved))
|
|
207
|
+
} catch {
|
|
208
|
+
realPath = resolved
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
const realRelative = path.relative(realCwd, realPath)
|
|
212
|
+
if (realRelative.startsWith('..') || path.isAbsolute(realRelative)) {
|
|
213
|
+
return {
|
|
214
|
+
success: false,
|
|
215
|
+
output: '',
|
|
216
|
+
error:
|
|
217
|
+
'edit FAILED — Path traversal detected via symlink: "' +
|
|
218
|
+
e.file_path +
|
|
219
|
+
'" resolves outside "' +
|
|
220
|
+
realCwd +
|
|
221
|
+
'".',
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
const fileGroups = new Map<string, { edits: SingleEdit[]; originalContent: string | null }>()
|
|
227
|
+
for (const e of edits) {
|
|
228
|
+
const resolved = path.resolve(cwd, e.file_path)
|
|
229
|
+
if (!fileGroups.has(resolved)) {
|
|
230
|
+
let originalContent: string | null = null
|
|
231
|
+
try {
|
|
232
|
+
originalContent = fs.readFileSync(resolved, 'utf-8')
|
|
233
|
+
} catch {
|
|
234
|
+
/* file doesn't exist yet */
|
|
235
|
+
}
|
|
236
|
+
fileGroups.set(resolved, { edits: [], originalContent })
|
|
237
|
+
}
|
|
238
|
+
fileGroups.get(resolved)!.edits.push(e)
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
const results: string[] = []
|
|
242
|
+
let anyFailed = false
|
|
243
|
+
let firstError = ''
|
|
244
|
+
const modifiedFiles = new Map<string, string | null>()
|
|
245
|
+
|
|
246
|
+
for (const [resolved, group] of fileGroups) {
|
|
247
|
+
const relPath = path.relative(cwd, resolved).replace(/\\/g, '/')
|
|
248
|
+
let content =
|
|
249
|
+
group.originalContent !== null ? group.originalContent.replace(/\r\n/g, '\n') : null
|
|
250
|
+
|
|
251
|
+
// Check if file was read (for stale-content diagnostics)
|
|
252
|
+
const readWarning = content !== null ? applier.checkModified(resolved) : null
|
|
253
|
+
|
|
254
|
+
for (let i = group.edits.length - 1; i >= 0; i--) {
|
|
255
|
+
const e = group.edits[i]
|
|
256
|
+
// Normalize CRLF → LF in AI-provided strings (critical on Windows)
|
|
257
|
+
e.old_string = e.old_string.replace(/\r\n/g, '\n')
|
|
258
|
+
e.new_string = e.new_string.replace(/\r\n/g, '\n')
|
|
259
|
+
|
|
260
|
+
if (e.old_string === '') {
|
|
261
|
+
if (content !== null) {
|
|
262
|
+
// File already exists in-memory (from prior edit in this batch)
|
|
263
|
+
// or on disk — treat as error to prevent silent overwrites.
|
|
264
|
+
results.push(
|
|
265
|
+
` FAIL ${relPath}: Cannot create — file already exists (duplicate create in batch or file on disk)`,
|
|
266
|
+
)
|
|
267
|
+
if (!anyFailed) {
|
|
268
|
+
anyFailed = true
|
|
269
|
+
firstError = `Cannot create file "${relPath}": file already exists`
|
|
270
|
+
}
|
|
271
|
+
break
|
|
272
|
+
}
|
|
273
|
+
const newLines = e.new_string.split('\n').length
|
|
274
|
+
content = e.new_string
|
|
275
|
+
results.push(
|
|
276
|
+
` Created ${relPath} (${newLines} lines):\n${generateDiff('', e.new_string, 1)}`,
|
|
277
|
+
)
|
|
278
|
+
continue
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
if (content === null) {
|
|
282
|
+
const diag = buildDiag(e)
|
|
283
|
+
const suggestion = ` → Check the file path, or create it first with old_string: "" (empty string).`
|
|
284
|
+
results.push(` FAIL ${relPath}: File not found
|
|
285
|
+
Edit: ${diag}
|
|
286
|
+
${suggestion}`)
|
|
287
|
+
if (!anyFailed) {
|
|
288
|
+
anyFailed = true
|
|
289
|
+
firstError = `File not found: ${relPath}`
|
|
290
|
+
}
|
|
291
|
+
break
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
// ── Tier 1: Exact match ──────────────────────────────────────
|
|
295
|
+
const exactIdx = content.indexOf(e.old_string)
|
|
296
|
+
|
|
297
|
+
let matchInfo: { index: number; length: number; strategy: 'exact' | 'tolerant' } | null =
|
|
298
|
+
null
|
|
299
|
+
|
|
300
|
+
if (exactIdx !== -1) {
|
|
301
|
+
// Exact match found — check for duplicates
|
|
302
|
+
const lastIdx = content.lastIndexOf(e.old_string)
|
|
303
|
+
if (exactIdx !== lastIdx) {
|
|
304
|
+
const diag = buildDiag(e)
|
|
305
|
+
const suggestion = ` → Include more surrounding context lines (2-3 lines before and after) in old_string to make the match unique.`
|
|
306
|
+
results.push(` FAIL ${relPath}: old_string appears MULTIPLE times
|
|
307
|
+
Edit: ${diag}
|
|
308
|
+
${suggestion}`)
|
|
309
|
+
if (!anyFailed) {
|
|
310
|
+
anyFailed = true
|
|
311
|
+
firstError = `old_string appears MULTIPLE times in ${relPath}`
|
|
312
|
+
}
|
|
313
|
+
break
|
|
314
|
+
}
|
|
315
|
+
matchInfo = { index: exactIdx, length: e.old_string.length, strategy: 'exact' }
|
|
316
|
+
} else {
|
|
317
|
+
// ── Tier 2: Whitespace-normalized fallback ─────────────────
|
|
318
|
+
const tolerant = findAllLinesTolerant(content, e.old_string)
|
|
319
|
+
if (tolerant.length === 0) {
|
|
320
|
+
// Not found by any strategy — check if old_string lines are scattered (non-contiguous)
|
|
321
|
+
const contentLines = content.split('\n')
|
|
322
|
+
const oldLines = e.old_string.split('\n').filter(l => l.trim())
|
|
323
|
+
const foundIndices: number[] = []
|
|
324
|
+
for (const ol of oldLines) {
|
|
325
|
+
const normOl = normalizeLine(ol.trim())
|
|
326
|
+
if (!normOl) continue
|
|
327
|
+
const idx = contentLines.findIndex(
|
|
328
|
+
(cl, ci) => !foundIndices.includes(ci) && normalizeLine(cl).includes(normOl),
|
|
329
|
+
)
|
|
330
|
+
if (idx !== -1) foundIndices.push(idx)
|
|
331
|
+
}
|
|
332
|
+
let hint = ''
|
|
333
|
+
const isScattered =
|
|
334
|
+
foundIndices.length >= 2 &&
|
|
335
|
+
foundIndices[foundIndices.length - 1]! - foundIndices[0]! + 1 > foundIndices.length
|
|
336
|
+
|
|
337
|
+
if (isScattered) {
|
|
338
|
+
hint = `\n ⚠️ ${foundIndices.length} lines of old_string were found in the file, but they are NOT contiguous — you skipped lines between them.
|
|
339
|
+
old_string must be a CONTIGUOUS chunk of the file. Use separate \`\`\`edit blocks for each section (see "Multiple files" example above).
|
|
340
|
+
Matched at lines: ${foundIndices.map(i => i + 1).join(', ')}`
|
|
341
|
+
} else {
|
|
342
|
+
const firstLine = (e.old_string.split('\n')[0] || '').trim()
|
|
343
|
+
if (firstLine) {
|
|
344
|
+
const normFirst = normalizeLine(firstLine)
|
|
345
|
+
const similarIdx = contentLines.findIndex(
|
|
346
|
+
l =>
|
|
347
|
+
l.length > 0 && normFirst.length > 0 && normalizeLine(l).includes(normFirst),
|
|
348
|
+
)
|
|
349
|
+
if (similarIdx !== -1) {
|
|
350
|
+
const start = Math.max(0, similarIdx - 1)
|
|
351
|
+
const end = Math.min(contentLines.length, similarIdx + 2)
|
|
352
|
+
const snippet = contentLines.slice(start, end).join('\n')
|
|
353
|
+
hint = `\n Near line ${similarIdx + 1}:\n """\n${snippet}\n """`
|
|
354
|
+
}
|
|
355
|
+
}
|
|
356
|
+
if (!hint && contentLines.length > 0) {
|
|
357
|
+
const lines = contentLines.slice(0, Math.min(contentLines.length, 5))
|
|
358
|
+
hint = `\n File content (first ${lines.length} lines):\n """\n${lines.join('\n')}\n """`
|
|
359
|
+
}
|
|
360
|
+
}
|
|
361
|
+
const diag = buildDiag(e)
|
|
362
|
+
const readHint = readWarning ? `\n ${readWarning}` : ''
|
|
363
|
+
const suggestion = ` → Read the file again with read({ paths: ["${e.file_path}"] }) to get current content, then retry with exact matching text. Include 2-3 lines of surrounding context for uniqueness.${readHint}`
|
|
364
|
+
results.push(` FAIL ${relPath}: old_string not found${hint}
|
|
365
|
+
Edit: ${diag}
|
|
366
|
+
${suggestion}`)
|
|
367
|
+
if (!anyFailed) {
|
|
368
|
+
anyFailed = true
|
|
369
|
+
firstError = `old_string not found in ${relPath}${hint}`
|
|
370
|
+
}
|
|
371
|
+
break
|
|
372
|
+
}
|
|
373
|
+
if (tolerant.length > 1) {
|
|
374
|
+
const diag = buildDiag(e)
|
|
375
|
+
const suggestion = ` → Include more surrounding context lines (2-3 lines before and after) in old_string to make the match unique.`
|
|
376
|
+
results.push(
|
|
377
|
+
` FAIL ${relPath}: old_string appears MULTIPLE times (whitespace-normalized)\n Edit: ${diag}\n${suggestion}`,
|
|
378
|
+
)
|
|
379
|
+
if (!anyFailed) {
|
|
380
|
+
anyFailed = true
|
|
381
|
+
firstError = `old_string appears MULTIPLE times in ${relPath} (whitespace-normalized)`
|
|
382
|
+
}
|
|
383
|
+
break
|
|
384
|
+
}
|
|
385
|
+
matchInfo = {
|
|
386
|
+
index: tolerant[0]!.index,
|
|
387
|
+
length: tolerant[0]!.length,
|
|
388
|
+
strategy: 'tolerant',
|
|
389
|
+
}
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
// For tolerant matching, use the actual file text at the match position
|
|
393
|
+
// so the diff reflects what was really in the file (with original whitespace).
|
|
394
|
+
const matchedOld =
|
|
395
|
+
matchInfo.strategy === 'tolerant'
|
|
396
|
+
? content.slice(matchInfo.index, matchInfo.index + matchInfo.length)
|
|
397
|
+
: e.old_string
|
|
398
|
+
const diff = generateDiffWithContext(
|
|
399
|
+
content,
|
|
400
|
+
matchedOld,
|
|
401
|
+
e.new_string,
|
|
402
|
+
matchInfo.index,
|
|
403
|
+
matchInfo.length,
|
|
404
|
+
)
|
|
405
|
+
results.push(` Edited ${relPath}:\n${diff}`)
|
|
406
|
+
content =
|
|
407
|
+
content.slice(0, matchInfo.index) +
|
|
408
|
+
e.new_string +
|
|
409
|
+
content.slice(matchInfo.index + matchInfo.length)
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
if (anyFailed) break
|
|
413
|
+
modifiedFiles.set(resolved, content)
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
if (anyFailed) {
|
|
417
|
+
for (const [filePath, group] of fileGroups) {
|
|
418
|
+
const originalContent = group.originalContent
|
|
419
|
+
if (originalContent === null) {
|
|
420
|
+
try {
|
|
421
|
+
fs.unlinkSync(filePath)
|
|
422
|
+
} catch {
|
|
423
|
+
/* ok */
|
|
424
|
+
}
|
|
425
|
+
} else {
|
|
426
|
+
try {
|
|
427
|
+
fs.mkdirSync(path.dirname(filePath), { recursive: true })
|
|
428
|
+
fs.writeFileSync(filePath, originalContent, 'utf-8')
|
|
429
|
+
} catch {
|
|
430
|
+
/* ok */
|
|
431
|
+
}
|
|
432
|
+
}
|
|
433
|
+
applier.markRead(filePath)
|
|
434
|
+
}
|
|
435
|
+
// Only show FAIL lines in the error (successful edits were rolled back)
|
|
436
|
+
const failLines = results.filter(r => r.startsWith(' FAIL ')).join('\n')
|
|
437
|
+
return {
|
|
438
|
+
success: false,
|
|
439
|
+
output: '',
|
|
440
|
+
error: `Edit FAILED — all changes rolled back.\n${failLines}\n\n${firstError}`,
|
|
441
|
+
}
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
for (const [resolved, content] of modifiedFiles) {
|
|
445
|
+
try {
|
|
446
|
+
if (content === null) {
|
|
447
|
+
fs.unlinkSync(resolved)
|
|
448
|
+
} else {
|
|
449
|
+
fs.mkdirSync(path.dirname(resolved), { recursive: true })
|
|
450
|
+
fs.writeFileSync(resolved, content, 'utf-8')
|
|
451
|
+
}
|
|
452
|
+
} catch (err) {
|
|
453
|
+
return {
|
|
454
|
+
success: false,
|
|
455
|
+
output: '',
|
|
456
|
+
error: `Failed to write ${path.relative(cwd, resolved).replace(/\\/g, '/')}: ${fmtErr(err)}. Input: ${summarizeRawInput(rawInput)}`,
|
|
457
|
+
}
|
|
458
|
+
}
|
|
459
|
+
applier.markRead(resolved)
|
|
460
|
+
}
|
|
461
|
+
|
|
462
|
+
return {
|
|
463
|
+
success: true,
|
|
464
|
+
output: results.join('\n').replace(/^ {2}/gm, ''),
|
|
465
|
+
}
|
|
466
|
+
},
|
|
467
|
+
}
|
|
468
|
+
}
|