anymous 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +15 -0
- package/bin/anymous.cjs +45 -0
- package/package.json +155 -0
- package/src/account/account.ts +473 -0
- package/src/account/repo.ts +171 -0
- package/src/account/schema.ts +99 -0
- package/src/account/url.ts +8 -0
- package/src/acp/agent.ts +95 -0
- package/src/acp/config-option.ts +203 -0
- package/src/acp/content.ts +269 -0
- package/src/acp/directory.ts +212 -0
- package/src/acp/error.ts +97 -0
- package/src/acp/event.ts +342 -0
- package/src/acp/permission.ts +254 -0
- package/src/acp/profile.ts +42 -0
- package/src/acp/service.ts +1097 -0
- package/src/acp/session.ts +232 -0
- package/src/acp/tool.ts +364 -0
- package/src/acp/usage.ts +239 -0
- package/src/agent/agent.ts +581 -0
- package/src/agent/generate.txt +75 -0
- package/src/agent/prompt/compaction.txt +9 -0
- package/src/agent/prompt/debug-tools.txt +41 -0
- package/src/agent/prompt/exe-extractor.txt +37 -0
- package/src/agent/prompt/explore.txt +18 -0
- package/src/agent/prompt/memory-dump.txt +34 -0
- package/src/agent/prompt/reverser-automator.txt +24 -0
- package/src/agent/prompt/reverser-binary.txt +25 -0
- package/src/agent/prompt/reverser-dynamic.txt +29 -0
- package/src/agent/prompt/reverser-source.txt +22 -0
- package/src/agent/prompt/reverser-static.txt +28 -0
- package/src/agent/prompt/summary.txt +11 -0
- package/src/agent/prompt/title.txt +44 -0
- package/src/agent/subagent-permissions.ts +27 -0
- package/src/audio.d.ts +14 -0
- package/src/auth/index.ts +97 -0
- package/src/background/job.ts +37 -0
- package/src/bus/global.ts +22 -0
- package/src/cli/bootstrap.ts +11 -0
- package/src/cli/cmd/account.ts +264 -0
- package/src/cli/cmd/acp.ts +73 -0
- package/src/cli/cmd/agent.ts +259 -0
- package/src/cli/cmd/attach.ts +148 -0
- package/src/cli/cmd/cmd.ts +7 -0
- package/src/cli/cmd/db.ts +62 -0
- package/src/cli/cmd/debug/agent.handler.ts +193 -0
- package/src/cli/cmd/debug/agent.ts +27 -0
- package/src/cli/cmd/debug/config.ts +14 -0
- package/src/cli/cmd/debug/file.ts +73 -0
- package/src/cli/cmd/debug/index.ts +87 -0
- package/src/cli/cmd/debug/lsp.ts +50 -0
- package/src/cli/cmd/debug/ripgrep.ts +79 -0
- package/src/cli/cmd/debug/scrap.ts +16 -0
- package/src/cli/cmd/debug/skill.ts +15 -0
- package/src/cli/cmd/debug/snapshot.ts +50 -0
- package/src/cli/cmd/debug/startup.ts +11 -0
- package/src/cli/cmd/debug/v2.ts +42 -0
- package/src/cli/cmd/export.ts +292 -0
- package/src/cli/cmd/generate.ts +54 -0
- package/src/cli/cmd/github.handler.ts +1593 -0
- package/src/cli/cmd/github.shared.ts +30 -0
- package/src/cli/cmd/github.ts +42 -0
- package/src/cli/cmd/import.ts +230 -0
- package/src/cli/cmd/mcp.ts +840 -0
- package/src/cli/cmd/models.ts +66 -0
- package/src/cli/cmd/plug.ts +230 -0
- package/src/cli/cmd/pr.ts +115 -0
- package/src/cli/cmd/prompt-display.ts +1 -0
- package/src/cli/cmd/providers.ts +534 -0
- package/src/cli/cmd/run/demo.ts +1274 -0
- package/src/cli/cmd/run/entry.body.ts +205 -0
- package/src/cli/cmd/run/footer.command.tsx +1070 -0
- package/src/cli/cmd/run/footer.menu.tsx +351 -0
- package/src/cli/cmd/run/footer.permission.tsx +472 -0
- package/src/cli/cmd/run/footer.prompt.tsx +1315 -0
- package/src/cli/cmd/run/footer.question.tsx +573 -0
- package/src/cli/cmd/run/footer.subagent.tsx +175 -0
- package/src/cli/cmd/run/footer.ts +1129 -0
- package/src/cli/cmd/run/footer.view.tsx +945 -0
- package/src/cli/cmd/run/footer.width.ts +27 -0
- package/src/cli/cmd/run/permission.shared.ts +256 -0
- package/src/cli/cmd/run/prompt.editor.ts +157 -0
- package/src/cli/cmd/run/prompt.shared.ts +153 -0
- package/src/cli/cmd/run/question.shared.ts +340 -0
- package/src/cli/cmd/run/runtime.boot.ts +202 -0
- package/src/cli/cmd/run/runtime.lifecycle.ts +406 -0
- package/src/cli/cmd/run/runtime.queue.ts +349 -0
- package/src/cli/cmd/run/runtime.shared.ts +17 -0
- package/src/cli/cmd/run/runtime.stdin.ts +37 -0
- package/src/cli/cmd/run/runtime.ts +814 -0
- package/src/cli/cmd/run/scrollback.shared.ts +92 -0
- package/src/cli/cmd/run/scrollback.surface.ts +431 -0
- package/src/cli/cmd/run/scrollback.writer.tsx +352 -0
- package/src/cli/cmd/run/session-data.ts +1113 -0
- package/src/cli/cmd/run/session-replay.ts +374 -0
- package/src/cli/cmd/run/session.shared.ts +196 -0
- package/src/cli/cmd/run/splash.ts +280 -0
- package/src/cli/cmd/run/stream.transport.ts +1462 -0
- package/src/cli/cmd/run/stream.ts +175 -0
- package/src/cli/cmd/run/subagent-data.ts +876 -0
- package/src/cli/cmd/run/theme.ts +690 -0
- package/src/cli/cmd/run/tool.ts +1486 -0
- package/src/cli/cmd/run/trace.ts +94 -0
- package/src/cli/cmd/run/turn-summary.ts +47 -0
- package/src/cli/cmd/run/types.ts +350 -0
- package/src/cli/cmd/run/variant.shared.ts +216 -0
- package/src/cli/cmd/run.ts +1011 -0
- package/src/cli/cmd/serve.ts +24 -0
- package/src/cli/cmd/session.ts +147 -0
- package/src/cli/cmd/stats.ts +393 -0
- package/src/cli/cmd/tui.ts +309 -0
- package/src/cli/cmd/uninstall.ts +353 -0
- package/src/cli/cmd/upgrade.ts +74 -0
- package/src/cli/cmd/web.ts +84 -0
- package/src/cli/effect/prompt.ts +37 -0
- package/src/cli/effect-cmd.ts +96 -0
- package/src/cli/error.ts +130 -0
- package/src/cli/heap.ts +45 -0
- package/src/cli/logo.ts +1 -0
- package/src/cli/network.ts +80 -0
- package/src/cli/tui/layer.ts +8 -0
- package/src/cli/tui/validate-session.ts +29 -0
- package/src/cli/tui/worker.ts +80 -0
- package/src/cli/ui.ts +132 -0
- package/src/cli/upgrade.ts +53 -0
- package/src/command/index.ts +177 -0
- package/src/command/template/initialize.txt +66 -0
- package/src/command/template/review.txt +101 -0
- package/src/config/agent.ts +59 -0
- package/src/config/command.ts +39 -0
- package/src/config/config.ts +681 -0
- package/src/config/entry-name.ts +19 -0
- package/src/config/managed.ts +69 -0
- package/src/config/markdown.ts +36 -0
- package/src/config/parse.ts +79 -0
- package/src/config/paths.ts +45 -0
- package/src/config/plugin.ts +79 -0
- package/src/config/tui-cwd.ts +5 -0
- package/src/config/tui-host-attention.ts +21 -0
- package/src/config/tui-migrate.ts +132 -0
- package/src/config/tui.ts +276 -0
- package/src/config/variable.ts +91 -0
- package/src/control-plane/adapters/index.ts +41 -0
- package/src/control-plane/adapters/worktree.ts +96 -0
- package/src/control-plane/dev/README.md +19 -0
- package/src/control-plane/dev/debug-workspace-plugin.ts +73 -0
- package/src/control-plane/types.ts +59 -0
- package/src/control-plane/util.ts +39 -0
- package/src/control-plane/workspace-adapter-runtime.ts +51 -0
- package/src/control-plane/workspace-context.ts +26 -0
- package/src/control-plane/workspace.ts +964 -0
- package/src/effect/app-node-builder-v1.ts +12 -0
- package/src/effect/app-runtime.ts +135 -0
- package/src/effect/bootstrap-runtime.ts +19 -0
- package/src/effect/bridge.ts +84 -0
- package/src/effect/config-service.ts +67 -0
- package/src/effect/instance-ref.ts +11 -0
- package/src/effect/instance-registry.ts +12 -0
- package/src/effect/instance-state.ts +69 -0
- package/src/effect/promise.ts +17 -0
- package/src/effect/run-service.ts +47 -0
- package/src/effect/runner.ts +217 -0
- package/src/effect/runtime-flags.ts +78 -0
- package/src/env/index.ts +41 -0
- package/src/event-manifest.ts +3 -0
- package/src/event-v2-bridge.ts +71 -0
- package/src/format/formatter.ts +404 -0
- package/src/format/index.ts +203 -0
- package/src/git/index.ts +348 -0
- package/src/id/id.ts +80 -0
- package/src/ide/index.ts +54 -0
- package/src/image/image.ts +172 -0
- package/src/index.ts +142 -0
- package/src/installation/index.ts +336 -0
- package/src/lsp/client.ts +650 -0
- package/src/lsp/diagnostic.ts +29 -0
- package/src/lsp/language.ts +121 -0
- package/src/lsp/launch.ts +21 -0
- package/src/lsp/lsp.ts +507 -0
- package/src/lsp/server.ts +1983 -0
- package/src/markdown.d.ts +4 -0
- package/src/mcp/auth.ts +163 -0
- package/src/mcp/browser.ts +37 -0
- package/src/mcp/catalog.ts +170 -0
- package/src/mcp/index.ts +1004 -0
- package/src/mcp/oauth-callback.ts +194 -0
- package/src/mcp/oauth-provider.ts +259 -0
- package/src/node.ts +4 -0
- package/src/patch/index.ts +686 -0
- package/src/permission/arity.ts +163 -0
- package/src/permission/evaluate.ts +1 -0
- package/src/permission/index.ts +229 -0
- package/src/plugin/azure.ts +26 -0
- package/src/plugin/cloudflare.ts +76 -0
- package/src/plugin/digitalocean.ts +325 -0
- package/src/plugin/github-copilot/copilot.ts +414 -0
- package/src/plugin/github-copilot/models.ts +258 -0
- package/src/plugin/index.ts +314 -0
- package/src/plugin/install.ts +439 -0
- package/src/plugin/loader.ts +237 -0
- package/src/plugin/meta.ts +188 -0
- package/src/plugin/openai/README.md +31 -0
- package/src/plugin/openai/codex.ts +565 -0
- package/src/plugin/openai/ws-pool.ts +270 -0
- package/src/plugin/openai/ws.ts +381 -0
- package/src/plugin/pty-environment.ts +24 -0
- package/src/plugin/shared.ts +323 -0
- package/src/plugin/snowflake-cortex.ts +507 -0
- package/src/plugin/tui/internal.ts +10 -0
- package/src/plugin/tui/runtime.ts +1131 -0
- package/src/plugin/xai.ts +626 -0
- package/src/project/bootstrap-service.ts +9 -0
- package/src/project/bootstrap.ts +58 -0
- package/src/project/instance-context.ts +24 -0
- package/src/project/instance-runtime.ts +16 -0
- package/src/project/instance-store.ts +213 -0
- package/src/project/project.ts +483 -0
- package/src/project/vcs.ts +423 -0
- package/src/provider/auth.ts +229 -0
- package/src/provider/error.ts +188 -0
- package/src/provider/model-status.ts +8 -0
- package/src/provider/provider.ts +2006 -0
- package/src/provider/transform.ts +1832 -0
- package/src/question/index.ts +161 -0
- package/src/question/schema.ts +4 -0
- package/src/server/auth.ts +48 -0
- package/src/server/event.ts +10 -0
- package/src/server/global-lifecycle.ts +28 -0
- package/src/server/init-projectors.ts +3 -0
- package/src/server/mdns.ts +47 -0
- package/src/server/projectors.ts +1 -0
- package/src/server/proxy-util.ts +48 -0
- package/src/server/routes/instance/httpapi/AGENTS.md +39 -0
- package/src/server/routes/instance/httpapi/api.ts +97 -0
- package/src/server/routes/instance/httpapi/errors.ts +193 -0
- package/src/server/routes/instance/httpapi/groups/config.ts +65 -0
- package/src/server/routes/instance/httpapi/groups/control-plane.ts +35 -0
- package/src/server/routes/instance/httpapi/groups/control.ts +76 -0
- package/src/server/routes/instance/httpapi/groups/event.ts +29 -0
- package/src/server/routes/instance/httpapi/groups/experimental.ts +275 -0
- package/src/server/routes/instance/httpapi/groups/file.ts +185 -0
- package/src/server/routes/instance/httpapi/groups/global.ts +136 -0
- package/src/server/routes/instance/httpapi/groups/instance.ts +206 -0
- package/src/server/routes/instance/httpapi/groups/mcp.ts +156 -0
- package/src/server/routes/instance/httpapi/groups/metadata.ts +18 -0
- package/src/server/routes/instance/httpapi/groups/permission.ts +61 -0
- package/src/server/routes/instance/httpapi/groups/project-copy.ts +32 -0
- package/src/server/routes/instance/httpapi/groups/project.ts +93 -0
- package/src/server/routes/instance/httpapi/groups/provider.ts +101 -0
- package/src/server/routes/instance/httpapi/groups/pty.ts +172 -0
- package/src/server/routes/instance/httpapi/groups/query.ts +12 -0
- package/src/server/routes/instance/httpapi/groups/question.ts +74 -0
- package/src/server/routes/instance/httpapi/groups/session.ts +462 -0
- package/src/server/routes/instance/httpapi/groups/sync.ts +113 -0
- package/src/server/routes/instance/httpapi/groups/tui.ts +208 -0
- package/src/server/routes/instance/httpapi/groups/workspace.ts +141 -0
- package/src/server/routes/instance/httpapi/handlers/config.ts +34 -0
- package/src/server/routes/instance/httpapi/handlers/control-plane.ts +37 -0
- package/src/server/routes/instance/httpapi/handlers/control.ts +43 -0
- package/src/server/routes/instance/httpapi/handlers/event.ts +99 -0
- package/src/server/routes/instance/httpapi/handlers/experimental.ts +193 -0
- package/src/server/routes/instance/httpapi/handlers/file.ts +139 -0
- package/src/server/routes/instance/httpapi/handlers/global.ts +156 -0
- package/src/server/routes/instance/httpapi/handlers/instance.ts +110 -0
- package/src/server/routes/instance/httpapi/handlers/mcp.ts +111 -0
- package/src/server/routes/instance/httpapi/handlers/permission.ts +41 -0
- package/src/server/routes/instance/httpapi/handlers/project-copy.ts +83 -0
- package/src/server/routes/instance/httpapi/handlers/project.ts +63 -0
- package/src/server/routes/instance/httpapi/handlers/provider.ts +113 -0
- package/src/server/routes/instance/httpapi/handlers/pty.ts +273 -0
- package/src/server/routes/instance/httpapi/handlers/question.ts +54 -0
- package/src/server/routes/instance/httpapi/handlers/session-errors.ts +21 -0
- package/src/server/routes/instance/httpapi/handlers/session.ts +442 -0
- package/src/server/routes/instance/httpapi/handlers/sync.ts +89 -0
- package/src/server/routes/instance/httpapi/handlers/tui.ts +131 -0
- package/src/server/routes/instance/httpapi/handlers/workspace.ts +102 -0
- package/src/server/routes/instance/httpapi/lifecycle.ts +54 -0
- package/src/server/routes/instance/httpapi/middleware/authorization.ts +150 -0
- package/src/server/routes/instance/httpapi/middleware/compression.ts +64 -0
- package/src/server/routes/instance/httpapi/middleware/cors-vary.ts +29 -0
- package/src/server/routes/instance/httpapi/middleware/error.ts +43 -0
- package/src/server/routes/instance/httpapi/middleware/fence.ts +25 -0
- package/src/server/routes/instance/httpapi/middleware/instance-context.ts +43 -0
- package/src/server/routes/instance/httpapi/middleware/proxy.ts +108 -0
- package/src/server/routes/instance/httpapi/middleware/schema-error.ts +41 -0
- package/src/server/routes/instance/httpapi/middleware/workspace-routing.ts +250 -0
- package/src/server/routes/instance/httpapi/public.ts +537 -0
- package/src/server/routes/instance/httpapi/server.ts +325 -0
- package/src/server/routes/instance/httpapi/websocket-tracker.ts +60 -0
- package/src/server/server.ts +226 -0
- package/src/server/shared/fence.ts +60 -0
- package/src/server/shared/pty-ticket.ts +15 -0
- package/src/server/shared/public-ui.ts +12 -0
- package/src/server/shared/tui-control.ts +28 -0
- package/src/server/shared/ui.ts +108 -0
- package/src/server/shared/workspace-routing.ts +38 -0
- package/src/server/tui-event.ts +1 -0
- package/src/session/compaction.ts +562 -0
- package/src/session/instruction.ts +237 -0
- package/src/session/llm/AGENTS.md +90 -0
- package/src/session/llm/ai-sdk.ts +288 -0
- package/src/session/llm/native-request.ts +196 -0
- package/src/session/llm/native-runtime.ts +195 -0
- package/src/session/llm/request.ts +226 -0
- package/src/session/llm.ts +404 -0
- package/src/session/message-error.ts +14 -0
- package/src/session/message-v2.ts +734 -0
- package/src/session/message.ts +148 -0
- package/src/session/overflow.ts +34 -0
- package/src/session/processor.ts +718 -0
- package/src/session/prompt/anthropic.txt +105 -0
- package/src/session/prompt/beast.txt +147 -0
- package/src/session/prompt/build-switch.txt +5 -0
- package/src/session/prompt/codex.txt +79 -0
- package/src/session/prompt/copilot-gpt-5.txt +143 -0
- package/src/session/prompt/default.txt +95 -0
- package/src/session/prompt/gemini.txt +155 -0
- package/src/session/prompt/gpt.txt +107 -0
- package/src/session/prompt/kimi.txt +95 -0
- package/src/session/prompt/meta.txt +65 -0
- package/src/session/prompt/plan-mode.txt +70 -0
- package/src/session/prompt/plan-reminder-anthropic.txt +67 -0
- package/src/session/prompt/plan.txt +26 -0
- package/src/session/prompt/trinity.txt +97 -0
- package/src/session/prompt.ts +1631 -0
- package/src/session/reminders.ts +92 -0
- package/src/session/retry.ts +201 -0
- package/src/session/revert.ts +146 -0
- package/src/session/run-state.ts +151 -0
- package/src/session/schema.ts +26 -0
- package/src/session/session.ts +1018 -0
- package/src/session/status.ts +56 -0
- package/src/session/summary.ts +160 -0
- package/src/session/system.ts +145 -0
- package/src/session/todo.ts +74 -0
- package/src/session/tools.ts +590 -0
- package/src/share/session.ts +58 -0
- package/src/share/share-next.ts +371 -0
- package/src/skill/discovery.ts +140 -0
- package/src/skill/index.ts +354 -0
- package/src/snapshot/index.ts +807 -0
- package/src/sql.d.ts +4 -0
- package/src/storage/schema.ts +5 -0
- package/src/storage/storage.ts +327 -0
- package/src/sync/README.md +179 -0
- package/src/sync/schema.ts +11 -0
- package/src/temporary.ts +31 -0
- package/src/tool/apply_patch.ts +313 -0
- package/src/tool/apply_patch.txt +33 -0
- package/src/tool/code-mode.ts +310 -0
- package/src/tool/edit.ts +737 -0
- package/src/tool/edit.txt +10 -0
- package/src/tool/external-directory.ts +49 -0
- package/src/tool/glob.ts +76 -0
- package/src/tool/glob.txt +6 -0
- package/src/tool/grep.ts +115 -0
- package/src/tool/grep.txt +8 -0
- package/src/tool/invalid.ts +21 -0
- package/src/tool/json-schema.ts +164 -0
- package/src/tool/lsp.ts +113 -0
- package/src/tool/lsp.txt +24 -0
- package/src/tool/mcp-websearch.ts +96 -0
- package/src/tool/plan-enter.txt +14 -0
- package/src/tool/plan-exit.txt +13 -0
- package/src/tool/plan.ts +79 -0
- package/src/tool/question.ts +44 -0
- package/src/tool/question.txt +10 -0
- package/src/tool/read.ts +386 -0
- package/src/tool/read.txt +14 -0
- package/src/tool/registry.ts +450 -0
- package/src/tool/schema.ts +14 -0
- package/src/tool/shell/id.ts +19 -0
- package/src/tool/shell/prompt.ts +293 -0
- package/src/tool/shell/shell.txt +21 -0
- package/src/tool/shell.ts +645 -0
- package/src/tool/skill.ts +70 -0
- package/src/tool/skill.txt +5 -0
- package/src/tool/task.ts +360 -0
- package/src/tool/task.txt +19 -0
- package/src/tool/todo.ts +46 -0
- package/src/tool/todowrite.txt +44 -0
- package/src/tool/tool.ts +183 -0
- package/src/tool/truncate.ts +156 -0
- package/src/tool/truncation-dir.ts +4 -0
- package/src/tool/webfetch.ts +192 -0
- package/src/tool/webfetch.txt +13 -0
- package/src/tool/websearch.ts +143 -0
- package/src/tool/websearch.txt +14 -0
- package/src/tool/write.ts +104 -0
- package/src/tool/write.txt +8 -0
- package/src/util/archive.ts +17 -0
- package/src/util/bom.ts +27 -0
- package/src/util/data-url.ts +9 -0
- package/src/util/defer.ts +10 -0
- package/src/util/effect-http-client.ts +11 -0
- package/src/util/error.ts +1 -0
- package/src/util/filesystem.ts +251 -0
- package/src/util/html.ts +8 -0
- package/src/util/iife.ts +3 -0
- package/src/util/lazy.ts +20 -0
- package/src/util/local-context.ts +25 -0
- package/src/util/locale.ts +2 -0
- package/src/util/media.ts +26 -0
- package/src/util/process.ts +177 -0
- package/src/util/proxy-env.ts +72 -0
- package/src/util/queue.ts +32 -0
- package/src/util/record.ts +1 -0
- package/src/util/repository.ts +232 -0
- package/src/util/rpc.ts +66 -0
- package/src/util/signal.ts +12 -0
- package/src/util/timeout.ts +13 -0
- package/src/util/token.ts +1 -0
- package/src/util/wildcard.ts +59 -0
- package/src/worktree/index.ts +623 -0
- package/tsconfig.json +16 -0
|
@@ -0,0 +1,313 @@
|
|
|
1
|
+
import * as path from "path"
|
|
2
|
+
import { Effect, Schema } from "effect"
|
|
3
|
+
import * as Tool from "./tool"
|
|
4
|
+
import { EventV2Bridge } from "@/event-v2-bridge"
|
|
5
|
+
import { Watcher } from "@opencode-ai/core/filesystem/watcher"
|
|
6
|
+
import { InstanceState } from "@/effect/instance-state"
|
|
7
|
+
import { Patch } from "../patch"
|
|
8
|
+
import { createTwoFilesPatch, diffLines } from "diff"
|
|
9
|
+
import { assertExternalDirectoryEffect } from "./external-directory"
|
|
10
|
+
import { trimDiff } from "./edit"
|
|
11
|
+
import { LSP } from "@/lsp/lsp"
|
|
12
|
+
import { FSUtil } from "@opencode-ai/core/fs-util"
|
|
13
|
+
import DESCRIPTION from "./apply_patch.txt"
|
|
14
|
+
import { FileSystem } from "@opencode-ai/core/filesystem"
|
|
15
|
+
import { Format } from "../format"
|
|
16
|
+
import * as Bom from "@/util/bom"
|
|
17
|
+
|
|
18
|
+
export const Parameters = Schema.Struct({
|
|
19
|
+
patchText: Schema.String.annotate({ description: "The full patch text that describes all changes to be made" }),
|
|
20
|
+
})
|
|
21
|
+
|
|
22
|
+
export const ApplyPatchTool = Tool.define(
|
|
23
|
+
"apply_patch",
|
|
24
|
+
Effect.gen(function* () {
|
|
25
|
+
const lsp = yield* LSP.Service
|
|
26
|
+
const afs = yield* FSUtil.Service
|
|
27
|
+
const format = yield* Format.Service
|
|
28
|
+
const events = yield* EventV2Bridge.Service
|
|
29
|
+
|
|
30
|
+
const run = Effect.fn("ApplyPatchTool.execute")(function* (
|
|
31
|
+
params: Schema.Schema.Type<typeof Parameters>,
|
|
32
|
+
ctx: Tool.Context,
|
|
33
|
+
) {
|
|
34
|
+
if (!params.patchText) {
|
|
35
|
+
return yield* Effect.fail(new Error("patchText is required"))
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
// Parse the patch to get hunks
|
|
39
|
+
let hunks: Patch.Hunk[]
|
|
40
|
+
try {
|
|
41
|
+
const parseResult = Patch.parsePatch(params.patchText)
|
|
42
|
+
hunks = parseResult.hunks
|
|
43
|
+
} catch (error) {
|
|
44
|
+
return yield* Effect.fail(new Error(`apply_patch verification failed: ${error}`))
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
if (hunks.length === 0) {
|
|
48
|
+
const normalized = params.patchText.replace(/\r\n/g, "\n").replace(/\r/g, "\n").trim()
|
|
49
|
+
if (normalized === "*** Begin Patch\n*** End Patch") {
|
|
50
|
+
return yield* Effect.fail(new Error("patch rejected: empty patch"))
|
|
51
|
+
}
|
|
52
|
+
return yield* Effect.fail(new Error("apply_patch verification failed: no hunks found"))
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
const instance = yield* InstanceState.context
|
|
56
|
+
|
|
57
|
+
// Validate file paths and check permissions
|
|
58
|
+
const fileChanges: Array<{
|
|
59
|
+
filePath: string
|
|
60
|
+
oldContent: string
|
|
61
|
+
newContent: string
|
|
62
|
+
type: "add" | "update" | "delete" | "move"
|
|
63
|
+
movePath?: string
|
|
64
|
+
diff: string
|
|
65
|
+
additions: number
|
|
66
|
+
deletions: number
|
|
67
|
+
bom: boolean
|
|
68
|
+
}> = []
|
|
69
|
+
|
|
70
|
+
let totalDiff = ""
|
|
71
|
+
|
|
72
|
+
for (const hunk of hunks) {
|
|
73
|
+
const filePath = path.resolve(instance.directory, hunk.path)
|
|
74
|
+
yield* assertExternalDirectoryEffect(ctx, filePath)
|
|
75
|
+
|
|
76
|
+
switch (hunk.type) {
|
|
77
|
+
case "add": {
|
|
78
|
+
const oldContent = ""
|
|
79
|
+
const newContent =
|
|
80
|
+
hunk.contents.length === 0 || hunk.contents.endsWith("\n") ? hunk.contents : `${hunk.contents}\n`
|
|
81
|
+
const next = Bom.split(newContent)
|
|
82
|
+
const diff = trimDiff(createTwoFilesPatch(filePath, filePath, oldContent, next.text))
|
|
83
|
+
|
|
84
|
+
let additions = 0
|
|
85
|
+
let deletions = 0
|
|
86
|
+
for (const change of diffLines(oldContent, next.text)) {
|
|
87
|
+
if (change.added) additions += change.count || 0
|
|
88
|
+
if (change.removed) deletions += change.count || 0
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
fileChanges.push({
|
|
92
|
+
filePath,
|
|
93
|
+
oldContent,
|
|
94
|
+
newContent: next.text,
|
|
95
|
+
type: "add",
|
|
96
|
+
diff,
|
|
97
|
+
additions,
|
|
98
|
+
deletions,
|
|
99
|
+
bom: next.bom,
|
|
100
|
+
})
|
|
101
|
+
|
|
102
|
+
totalDiff += diff + "\n"
|
|
103
|
+
break
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
case "update": {
|
|
107
|
+
// Check if file exists for update
|
|
108
|
+
const stats = yield* afs.stat(filePath).pipe(Effect.catch(() => Effect.succeed(undefined)))
|
|
109
|
+
if (!stats || stats.type === "Directory") {
|
|
110
|
+
return yield* Effect.fail(
|
|
111
|
+
new Error(`apply_patch verification failed: Failed to read file to update: ${filePath}`),
|
|
112
|
+
)
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
const source = yield* Bom.readFile(afs, filePath)
|
|
116
|
+
const oldContent = source.text
|
|
117
|
+
let newContent = oldContent
|
|
118
|
+
let bom = source.bom
|
|
119
|
+
|
|
120
|
+
// Apply the update chunks to get new content
|
|
121
|
+
try {
|
|
122
|
+
const fileUpdate = Patch.deriveNewContentsFromChunks(
|
|
123
|
+
filePath,
|
|
124
|
+
hunk.chunks,
|
|
125
|
+
Bom.join(source.text, source.bom),
|
|
126
|
+
)
|
|
127
|
+
newContent = fileUpdate.content
|
|
128
|
+
bom = fileUpdate.bom
|
|
129
|
+
} catch (error) {
|
|
130
|
+
return yield* Effect.fail(new Error(`apply_patch verification failed: ${error}`))
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
const diff = trimDiff(createTwoFilesPatch(filePath, filePath, oldContent, newContent))
|
|
134
|
+
|
|
135
|
+
let additions = 0
|
|
136
|
+
let deletions = 0
|
|
137
|
+
for (const change of diffLines(oldContent, newContent)) {
|
|
138
|
+
if (change.added) additions += change.count || 0
|
|
139
|
+
if (change.removed) deletions += change.count || 0
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
const movePath = hunk.move_path ? path.resolve(instance.directory, hunk.move_path) : undefined
|
|
143
|
+
yield* assertExternalDirectoryEffect(ctx, movePath)
|
|
144
|
+
|
|
145
|
+
fileChanges.push({
|
|
146
|
+
filePath,
|
|
147
|
+
oldContent,
|
|
148
|
+
newContent,
|
|
149
|
+
type: hunk.move_path ? "move" : "update",
|
|
150
|
+
movePath,
|
|
151
|
+
diff,
|
|
152
|
+
additions,
|
|
153
|
+
deletions,
|
|
154
|
+
bom,
|
|
155
|
+
})
|
|
156
|
+
|
|
157
|
+
totalDiff += diff + "\n"
|
|
158
|
+
break
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
case "delete": {
|
|
162
|
+
const source = yield* Bom.readFile(afs, filePath).pipe(
|
|
163
|
+
Effect.catch((error) =>
|
|
164
|
+
Effect.fail(
|
|
165
|
+
new Error(
|
|
166
|
+
`apply_patch verification failed: ${error instanceof Error ? error.message : String(error)}`,
|
|
167
|
+
),
|
|
168
|
+
),
|
|
169
|
+
),
|
|
170
|
+
)
|
|
171
|
+
const contentToDelete = source.text
|
|
172
|
+
const deleteDiff = trimDiff(createTwoFilesPatch(filePath, filePath, contentToDelete, ""))
|
|
173
|
+
|
|
174
|
+
const deletions = contentToDelete.split("\n").length
|
|
175
|
+
|
|
176
|
+
fileChanges.push({
|
|
177
|
+
filePath,
|
|
178
|
+
oldContent: contentToDelete,
|
|
179
|
+
newContent: "",
|
|
180
|
+
type: "delete",
|
|
181
|
+
diff: deleteDiff,
|
|
182
|
+
additions: 0,
|
|
183
|
+
deletions,
|
|
184
|
+
bom: source.bom,
|
|
185
|
+
})
|
|
186
|
+
|
|
187
|
+
totalDiff += deleteDiff + "\n"
|
|
188
|
+
break
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
// Build per-file metadata for UI rendering (used for both permission and result)
|
|
194
|
+
const files = fileChanges.map((change) => ({
|
|
195
|
+
filePath: change.filePath,
|
|
196
|
+
relativePath: path.relative(instance.worktree, change.movePath ?? change.filePath).replaceAll("\\", "/"),
|
|
197
|
+
type: change.type,
|
|
198
|
+
patch: change.diff,
|
|
199
|
+
additions: change.additions,
|
|
200
|
+
deletions: change.deletions,
|
|
201
|
+
movePath: change.movePath,
|
|
202
|
+
}))
|
|
203
|
+
|
|
204
|
+
// Check permissions if needed
|
|
205
|
+
const relativePaths = fileChanges.map((c) => path.relative(instance.worktree, c.filePath).replaceAll("\\", "/"))
|
|
206
|
+
yield* ctx.ask({
|
|
207
|
+
permission: "edit",
|
|
208
|
+
patterns: relativePaths,
|
|
209
|
+
always: ["*"],
|
|
210
|
+
metadata: {
|
|
211
|
+
filepath: relativePaths.join(", "),
|
|
212
|
+
diff: totalDiff,
|
|
213
|
+
files,
|
|
214
|
+
},
|
|
215
|
+
})
|
|
216
|
+
|
|
217
|
+
// Apply the changes
|
|
218
|
+
const updates: Array<{ file: string; event: "add" | "change" | "unlink" }> = []
|
|
219
|
+
|
|
220
|
+
for (const change of fileChanges) {
|
|
221
|
+
const edited = change.type === "delete" ? undefined : (change.movePath ?? change.filePath)
|
|
222
|
+
switch (change.type) {
|
|
223
|
+
case "add":
|
|
224
|
+
// Create parent directories (recursive: true is safe on existing/root dirs)
|
|
225
|
+
|
|
226
|
+
yield* afs.writeWithDirs(change.filePath, Bom.join(change.newContent, change.bom))
|
|
227
|
+
updates.push({ file: change.filePath, event: "add" })
|
|
228
|
+
break
|
|
229
|
+
|
|
230
|
+
case "update":
|
|
231
|
+
yield* afs.writeWithDirs(change.filePath, Bom.join(change.newContent, change.bom))
|
|
232
|
+
updates.push({ file: change.filePath, event: "change" })
|
|
233
|
+
break
|
|
234
|
+
|
|
235
|
+
case "move":
|
|
236
|
+
if (change.movePath) {
|
|
237
|
+
// Create parent directories (recursive: true is safe on existing/root dirs)
|
|
238
|
+
|
|
239
|
+
yield* afs.writeWithDirs(change.movePath!, Bom.join(change.newContent, change.bom))
|
|
240
|
+
yield* afs.remove(change.filePath)
|
|
241
|
+
updates.push({ file: change.filePath, event: "unlink" })
|
|
242
|
+
updates.push({ file: change.movePath, event: "add" })
|
|
243
|
+
}
|
|
244
|
+
break
|
|
245
|
+
|
|
246
|
+
case "delete":
|
|
247
|
+
yield* afs.remove(change.filePath)
|
|
248
|
+
updates.push({ file: change.filePath, event: "unlink" })
|
|
249
|
+
break
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
if (edited) {
|
|
253
|
+
if (yield* format.file(edited)) {
|
|
254
|
+
yield* Bom.syncFile(afs, edited, change.bom)
|
|
255
|
+
}
|
|
256
|
+
yield* events.publish(FileSystem.Event.Edited, { file: edited })
|
|
257
|
+
}
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
// Publish file change events
|
|
261
|
+
for (const update of updates) {
|
|
262
|
+
yield* events.publish(Watcher.Event.Updated, update)
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
// Notify LSP of file changes and collect diagnostics
|
|
266
|
+
for (const change of fileChanges) {
|
|
267
|
+
if (change.type === "delete") continue
|
|
268
|
+
const target = change.movePath ?? change.filePath
|
|
269
|
+
yield* lsp.touchFile(target, "document")
|
|
270
|
+
}
|
|
271
|
+
const diagnostics = yield* lsp.diagnostics()
|
|
272
|
+
|
|
273
|
+
// Generate output summary
|
|
274
|
+
const summaryLines = fileChanges.map((change) => {
|
|
275
|
+
if (change.type === "add") {
|
|
276
|
+
return `A ${path.relative(instance.worktree, change.filePath).replaceAll("\\", "/")}`
|
|
277
|
+
}
|
|
278
|
+
if (change.type === "delete") {
|
|
279
|
+
return `D ${path.relative(instance.worktree, change.filePath).replaceAll("\\", "/")}`
|
|
280
|
+
}
|
|
281
|
+
const target = change.movePath ?? change.filePath
|
|
282
|
+
return `M ${path.relative(instance.worktree, target).replaceAll("\\", "/")}`
|
|
283
|
+
})
|
|
284
|
+
let output = `Success. Updated the following files:\n${summaryLines.join("\n")}`
|
|
285
|
+
|
|
286
|
+
for (const change of fileChanges) {
|
|
287
|
+
if (change.type === "delete") continue
|
|
288
|
+
const target = change.movePath ?? change.filePath
|
|
289
|
+
const block = LSP.Diagnostic.report(target, diagnostics[FSUtil.normalizePath(target)] ?? [])
|
|
290
|
+
if (!block) continue
|
|
291
|
+
const rel = path.relative(instance.worktree, target).replaceAll("\\", "/")
|
|
292
|
+
output += `\n\nLSP errors detected in ${rel}, please fix:\n${block}`
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
return {
|
|
296
|
+
title: output,
|
|
297
|
+
metadata: {
|
|
298
|
+
diff: totalDiff,
|
|
299
|
+
files,
|
|
300
|
+
diagnostics,
|
|
301
|
+
},
|
|
302
|
+
output,
|
|
303
|
+
}
|
|
304
|
+
})
|
|
305
|
+
|
|
306
|
+
return {
|
|
307
|
+
description: DESCRIPTION,
|
|
308
|
+
parameters: Parameters,
|
|
309
|
+
execute: (params: Schema.Schema.Type<typeof Parameters>, ctx: Tool.Context) =>
|
|
310
|
+
run(params, ctx).pipe(Effect.orDie),
|
|
311
|
+
}
|
|
312
|
+
}),
|
|
313
|
+
)
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
Use the `apply_patch` tool to edit files. Your patch language is a stripped‑down, file‑oriented diff format designed to be easy to parse and safe to apply. You can think of it as a high‑level envelope:
|
|
2
|
+
|
|
3
|
+
*** Begin Patch
|
|
4
|
+
[ one or more file sections ]
|
|
5
|
+
*** End Patch
|
|
6
|
+
|
|
7
|
+
Within that envelope, you get a sequence of file operations.
|
|
8
|
+
You MUST include a header to specify the action you are taking.
|
|
9
|
+
Each operation starts with one of three headers:
|
|
10
|
+
|
|
11
|
+
*** Add File: <path> - create a new file. Every following line is a + line (the initial contents).
|
|
12
|
+
*** Delete File: <path> - remove an existing file. Nothing follows.
|
|
13
|
+
*** Update File: <path> - patch an existing file in place (optionally with a rename).
|
|
14
|
+
|
|
15
|
+
Example patch:
|
|
16
|
+
|
|
17
|
+
```
|
|
18
|
+
*** Begin Patch
|
|
19
|
+
*** Add File: hello.txt
|
|
20
|
+
+Hello world
|
|
21
|
+
*** Update File: src/app.py
|
|
22
|
+
*** Move to: src/main.py
|
|
23
|
+
@@ def greet():
|
|
24
|
+
-print("Hi")
|
|
25
|
+
+print("Hello, world!")
|
|
26
|
+
*** Delete File: obsolete.txt
|
|
27
|
+
*** End Patch
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
It is important to remember:
|
|
31
|
+
|
|
32
|
+
- You must include a header with your intended action (Add/Delete/Update)
|
|
33
|
+
- You must prefix new lines with `+` even when creating a new file
|
|
@@ -0,0 +1,310 @@
|
|
|
1
|
+
import * as Tool from "./tool"
|
|
2
|
+
import { CallToolResultSchema, type CallToolResult } from "@modelcontextprotocol/sdk/types.js"
|
|
3
|
+
import { Cause, Effect, Schema } from "effect"
|
|
4
|
+
import { CodeMode, Tool as SandboxTool, toolError } from "@opencode-ai/codemode"
|
|
5
|
+
import { MCP } from "@/mcp"
|
|
6
|
+
import { McpCatalog } from "@/mcp/catalog"
|
|
7
|
+
import { Agent } from "@/agent/agent"
|
|
8
|
+
import { Session } from "@/session/session"
|
|
9
|
+
import { Permission } from "@/permission"
|
|
10
|
+
import { Plugin } from "@/plugin"
|
|
11
|
+
|
|
12
|
+
export const CODE_MODE_TOOL = "execute"
|
|
13
|
+
|
|
14
|
+
const DESCRIPTION = "Run a confined orchestration script with access to connected MCP tools."
|
|
15
|
+
|
|
16
|
+
export const Parameters = Schema.Struct({
|
|
17
|
+
code: Schema.String.annotate({
|
|
18
|
+
description: "Script body executed by the confined interpreter.",
|
|
19
|
+
}),
|
|
20
|
+
})
|
|
21
|
+
|
|
22
|
+
type CallEntry = { tool: string; status: "running" | "completed" | "error"; input?: Record<string, unknown> }
|
|
23
|
+
|
|
24
|
+
type Metadata = {
|
|
25
|
+
toolCalls: CallEntry[]
|
|
26
|
+
error?: boolean
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
type Attachment = NonNullable<Tool.ExecuteResult["attachments"]>[number]
|
|
30
|
+
|
|
31
|
+
type CatalogEntry = {
|
|
32
|
+
path: string
|
|
33
|
+
key: string
|
|
34
|
+
server: string
|
|
35
|
+
local: string
|
|
36
|
+
tool: MCP.McpTool
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
function groupByServer(mcpTools: Record<string, MCP.McpTool>, servers: readonly string[]): Map<string, CatalogEntry[]> {
|
|
40
|
+
const byLongest = [...servers].sort((a, b) => b.length - a.length)
|
|
41
|
+
const groups = new Map<string, CatalogEntry[]>()
|
|
42
|
+
for (const key of Object.keys(mcpTools).sort((a, b) => a.localeCompare(b))) {
|
|
43
|
+
const server =
|
|
44
|
+
byLongest.find((name) => key.startsWith(name + "_")) ?? (key.includes("_") ? key.slice(0, key.indexOf("_")) : key)
|
|
45
|
+
const local = server && key.startsWith(server + "_") ? key.slice(server.length + 1) : key
|
|
46
|
+
const entry: CatalogEntry = {
|
|
47
|
+
path: `${server}.${local}`,
|
|
48
|
+
key,
|
|
49
|
+
server,
|
|
50
|
+
local,
|
|
51
|
+
tool: mcpTools[key]!,
|
|
52
|
+
}
|
|
53
|
+
groups.set(server, [...(groups.get(server) ?? []), entry])
|
|
54
|
+
}
|
|
55
|
+
return groups
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
export function describeCatalog(mcpTools: Record<string, MCP.McpTool>, servers: readonly string[]): string {
|
|
59
|
+
return CodeMode.make({
|
|
60
|
+
tools: toolTree(
|
|
61
|
+
[...groupByServer(mcpTools, servers).values()].flat(),
|
|
62
|
+
() => () => Effect.fail(toolError("Tool preview is not executable.")),
|
|
63
|
+
),
|
|
64
|
+
}).instructions()
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
const lastSegment = (uri: string) => {
|
|
68
|
+
const trimmed = uri.split(/[?#]/, 1)[0]!.replace(/\/+$/, "")
|
|
69
|
+
const segment = trimmed.slice(trimmed.lastIndexOf("/") + 1)
|
|
70
|
+
return segment.length > 0 ? segment : undefined
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
const dataUrl = (mime: string, base64: string) => `data:${mime};base64,${base64}`
|
|
74
|
+
|
|
75
|
+
function projectMcpResult(result: CallToolResult, collect: (attachment: Attachment) => void): unknown {
|
|
76
|
+
const text: string[] = []
|
|
77
|
+
let files = 0
|
|
78
|
+
let images = 0
|
|
79
|
+
const push = (attachment: Attachment) => {
|
|
80
|
+
files += 1
|
|
81
|
+
if (attachment.mime.startsWith("image/")) images += 1
|
|
82
|
+
collect(attachment)
|
|
83
|
+
}
|
|
84
|
+
for (const block of result.content) {
|
|
85
|
+
switch (block.type) {
|
|
86
|
+
case "text":
|
|
87
|
+
text.push(block.text)
|
|
88
|
+
break
|
|
89
|
+
case "image":
|
|
90
|
+
case "audio":
|
|
91
|
+
push({ type: "file", mime: block.mimeType, url: dataUrl(block.mimeType, block.data) })
|
|
92
|
+
break
|
|
93
|
+
case "resource": {
|
|
94
|
+
if ("text" in block.resource) {
|
|
95
|
+
text.push(block.resource.text)
|
|
96
|
+
break
|
|
97
|
+
}
|
|
98
|
+
const mime = block.resource.mimeType ?? "application/octet-stream"
|
|
99
|
+
push({ type: "file", mime, url: dataUrl(mime, block.resource.blob), filename: lastSegment(block.resource.uri) })
|
|
100
|
+
break
|
|
101
|
+
}
|
|
102
|
+
case "resource_link":
|
|
103
|
+
// A link is a reference, not fetchable media; hand it to the program instead of the attachment channel.
|
|
104
|
+
text.push(`${block.name}: ${block.uri}`)
|
|
105
|
+
break
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
if (result.structuredContent !== undefined && result.structuredContent !== null) return result.structuredContent
|
|
110
|
+
if (text.length > 0) return text.join("\n")
|
|
111
|
+
if (files > 0) {
|
|
112
|
+
const noun = files === images ? "image" : "file"
|
|
113
|
+
return `[${files} ${noun}${files === 1 ? "" : "s"} attached to the result]`
|
|
114
|
+
}
|
|
115
|
+
return null
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
type Run = (input: unknown) => Effect.Effect<unknown, unknown>
|
|
119
|
+
|
|
120
|
+
function toolTree(catalog: readonly CatalogEntry[], run: (entry: CatalogEntry) => Run) {
|
|
121
|
+
const tree: Record<string, Record<string, SandboxTool.Definition>> = {}
|
|
122
|
+
for (const entry of catalog) {
|
|
123
|
+
const namespace = (tree[entry.server] ??= {})
|
|
124
|
+
namespace[entry.local] = SandboxTool.make({
|
|
125
|
+
description: entry.tool.def.description ?? "",
|
|
126
|
+
input: entry.tool.def.inputSchema as SandboxTool.JsonSchema,
|
|
127
|
+
output: entry.tool.def.outputSchema as SandboxTool.JsonSchema | undefined,
|
|
128
|
+
run: run(entry),
|
|
129
|
+
})
|
|
130
|
+
}
|
|
131
|
+
return tree
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
const invokeChildTool = Effect.fn("CodeMode.invokeChildTool")(function* (input: {
|
|
135
|
+
plugin: Plugin.Interface
|
|
136
|
+
entry: CatalogEntry
|
|
137
|
+
args: Record<string, unknown>
|
|
138
|
+
callID: string
|
|
139
|
+
ctx: Tool.Context
|
|
140
|
+
}) {
|
|
141
|
+
yield* input.plugin.trigger(
|
|
142
|
+
"tool.execute.before",
|
|
143
|
+
{ tool: input.entry.key, sessionID: input.ctx.sessionID, callID: input.callID },
|
|
144
|
+
{ args: input.args },
|
|
145
|
+
)
|
|
146
|
+
const result: CallToolResult = yield* Effect.gen(function* () {
|
|
147
|
+
yield* input.ctx.ask({ permission: input.entry.key, metadata: {}, patterns: ["*"], always: ["*"] })
|
|
148
|
+
// Deliberately mirrors McpCatalog.convertTool's transport call so the MCP service stays free of tool-loop concerns.
|
|
149
|
+
return yield* Effect.promise(async () => {
|
|
150
|
+
const raw = await input.entry.tool.client.callTool(
|
|
151
|
+
{ name: input.entry.tool.def.name, arguments: input.args },
|
|
152
|
+
CallToolResultSchema,
|
|
153
|
+
{
|
|
154
|
+
resetTimeoutOnProgress: true,
|
|
155
|
+
signal: input.ctx.abort,
|
|
156
|
+
timeout: input.entry.tool.timeout,
|
|
157
|
+
// The MCP SDK only sends a progress token when this hook is present, enabling timeout resets.
|
|
158
|
+
onprogress: () => {},
|
|
159
|
+
},
|
|
160
|
+
)
|
|
161
|
+
if (raw.isError)
|
|
162
|
+
throw new Error(
|
|
163
|
+
raw.content
|
|
164
|
+
.flatMap((item) => (item.type === "text" ? [item.text] : []))
|
|
165
|
+
.filter((text) => text.trim())
|
|
166
|
+
.join("\n\n") || "MCP tool returned an error",
|
|
167
|
+
)
|
|
168
|
+
return raw
|
|
169
|
+
})
|
|
170
|
+
}).pipe(
|
|
171
|
+
Effect.withSpan("Tool.execute", {
|
|
172
|
+
attributes: {
|
|
173
|
+
"tool.name": input.entry.key,
|
|
174
|
+
"tool.call_id": input.callID,
|
|
175
|
+
"session.id": input.ctx.sessionID,
|
|
176
|
+
"message.id": input.ctx.messageID,
|
|
177
|
+
},
|
|
178
|
+
}),
|
|
179
|
+
)
|
|
180
|
+
yield* input.plugin.trigger(
|
|
181
|
+
"tool.execute.after",
|
|
182
|
+
{ tool: input.entry.key, sessionID: input.ctx.sessionID, callID: input.callID, args: input.args },
|
|
183
|
+
result,
|
|
184
|
+
)
|
|
185
|
+
return result
|
|
186
|
+
})
|
|
187
|
+
|
|
188
|
+
export const CodeModeTool = Tool.define(
|
|
189
|
+
CODE_MODE_TOOL,
|
|
190
|
+
Effect.gen(function* () {
|
|
191
|
+
const mcp = yield* MCP.Service
|
|
192
|
+
const agents = yield* Agent.Service
|
|
193
|
+
const sessions = yield* Session.Service
|
|
194
|
+
const plugin = yield* Plugin.Service
|
|
195
|
+
|
|
196
|
+
const init: Tool.DefWithoutID<typeof Parameters, Metadata> = {
|
|
197
|
+
description: DESCRIPTION,
|
|
198
|
+
parameters: Parameters,
|
|
199
|
+
execute: Effect.fn("CodeMode.execute")(function* (params, ctx) {
|
|
200
|
+
if (ctx.abort.aborted) {
|
|
201
|
+
return {
|
|
202
|
+
title: CODE_MODE_TOOL,
|
|
203
|
+
metadata: { toolCalls: [], error: true },
|
|
204
|
+
output: "Execution cancelled.",
|
|
205
|
+
} satisfies Tool.ExecuteResult<Metadata>
|
|
206
|
+
}
|
|
207
|
+
const agent = yield* agents.get(ctx.agent)
|
|
208
|
+
const session = yield* sessions.get(ctx.sessionID).pipe(Effect.orDie)
|
|
209
|
+
const ruleset = Permission.merge(agent.permission, session.permission ?? [])
|
|
210
|
+
const mcpTools = Permission.visibleTools(yield* mcp.tools(), ruleset)
|
|
211
|
+
const servers = Object.keys(yield* mcp.clients()).map(McpCatalog.sanitize)
|
|
212
|
+
const catalog = [...groupByServer(mcpTools, servers).values()].flat()
|
|
213
|
+
|
|
214
|
+
const calls: CallEntry[] = []
|
|
215
|
+
const attachments: Attachment[] = []
|
|
216
|
+
const publish = () =>
|
|
217
|
+
ctx.metadata({ title: CODE_MODE_TOOL, metadata: { toolCalls: calls.map((c) => ({ ...c })) } })
|
|
218
|
+
|
|
219
|
+
let childCalls = 0
|
|
220
|
+
const callTool = (entry: CatalogEntry) => (input: unknown) =>
|
|
221
|
+
Effect.gen(function* () {
|
|
222
|
+
childCalls += 1
|
|
223
|
+
const result = yield* invokeChildTool({
|
|
224
|
+
plugin,
|
|
225
|
+
entry,
|
|
226
|
+
args: (input ?? {}) as Record<string, unknown>,
|
|
227
|
+
callID: `${ctx.callID ?? entry.key}/${childCalls}`,
|
|
228
|
+
ctx,
|
|
229
|
+
})
|
|
230
|
+
return projectMcpResult(result, (attachment: Attachment) => void attachments.push(attachment))
|
|
231
|
+
}).pipe(
|
|
232
|
+
Effect.catchCause((cause) => {
|
|
233
|
+
if (Cause.hasInterruptsOnly(cause)) return Effect.interrupt
|
|
234
|
+
const error = Cause.squash(cause)
|
|
235
|
+
return Effect.fail(toolError(error instanceof Error ? error.message : String(error), error))
|
|
236
|
+
}),
|
|
237
|
+
)
|
|
238
|
+
|
|
239
|
+
const runtime = CodeMode.make({
|
|
240
|
+
tools: toolTree(catalog, callTool),
|
|
241
|
+
onToolCallStart: ({ index, name, input }) =>
|
|
242
|
+
Effect.suspend(() => {
|
|
243
|
+
const shown = (() => {
|
|
244
|
+
if (input === null || input === undefined) return
|
|
245
|
+
if (typeof input === "object" && !Array.isArray(input)) {
|
|
246
|
+
const value = input as Record<string, unknown>
|
|
247
|
+
return Object.keys(value).length > 0 ? value : undefined
|
|
248
|
+
}
|
|
249
|
+
return { input }
|
|
250
|
+
})()
|
|
251
|
+
calls[index] = { tool: name, status: "running", ...(shown ? { input: shown } : {}) }
|
|
252
|
+
return publish()
|
|
253
|
+
}),
|
|
254
|
+
onToolCallEnd: ({ index, outcome }) =>
|
|
255
|
+
Effect.suspend(() => {
|
|
256
|
+
const current = calls[index]
|
|
257
|
+
if (current) calls[index] = { ...current, status: outcome === "success" ? "completed" : "error" }
|
|
258
|
+
return publish()
|
|
259
|
+
}),
|
|
260
|
+
})
|
|
261
|
+
|
|
262
|
+
const abort = Effect.callback<void>((resume) => {
|
|
263
|
+
if (ctx.abort.aborted) return resume(Effect.void)
|
|
264
|
+
const handler = () => resume(Effect.void)
|
|
265
|
+
ctx.abort.addEventListener("abort", handler, { once: true })
|
|
266
|
+
return Effect.sync(() => ctx.abort.removeEventListener("abort", handler))
|
|
267
|
+
})
|
|
268
|
+
const cancelled = (): CodeMode.Result => ({
|
|
269
|
+
ok: false,
|
|
270
|
+
error: { kind: "ExecutionFailure", message: "Execution cancelled." },
|
|
271
|
+
toolCalls: calls.map((call) => ({ name: call.tool })),
|
|
272
|
+
})
|
|
273
|
+
|
|
274
|
+
const result = yield* Effect.raceFirst(runtime.execute(params.code), abort.pipe(Effect.map(cancelled)))
|
|
275
|
+
const logs = result.logs ?? []
|
|
276
|
+
const withLogs = (text: string) => {
|
|
277
|
+
if (logs.length === 0) return text
|
|
278
|
+
return text.length > 0 ? `${text}\n\nLogs:\n${logs.join("\n")}` : `Logs:\n${logs.join("\n")}`
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
if (!result.ok) {
|
|
282
|
+
if (ctx.abort.aborted) {
|
|
283
|
+
return {
|
|
284
|
+
title: CODE_MODE_TOOL,
|
|
285
|
+
metadata: { toolCalls: calls, error: true },
|
|
286
|
+
output: "Execution cancelled.",
|
|
287
|
+
} satisfies Tool.ExecuteResult<Metadata>
|
|
288
|
+
}
|
|
289
|
+
const hints = (result.error.suggestions ?? []).filter((hint) => !result.error.message.includes(hint))
|
|
290
|
+
return yield* Effect.fail(new Error(withLogs([result.error.message, ...hints].join("\n"))))
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
// The interpreter validates returned values as plain JSON, so stringify cannot throw;
|
|
294
|
+
// it yields undefined only for a program that returns undefined.
|
|
295
|
+
const output =
|
|
296
|
+
typeof result.value === "string"
|
|
297
|
+
? result.value
|
|
298
|
+
: (JSON.stringify(result.value, null, 2) ?? String(result.value))
|
|
299
|
+
|
|
300
|
+
return {
|
|
301
|
+
title: CODE_MODE_TOOL,
|
|
302
|
+
metadata: { toolCalls: calls },
|
|
303
|
+
output: withLogs(output),
|
|
304
|
+
...(attachments.length > 0 ? { attachments } : {}),
|
|
305
|
+
} satisfies Tool.ExecuteResult<Metadata>
|
|
306
|
+
}, Effect.orDie),
|
|
307
|
+
}
|
|
308
|
+
return init
|
|
309
|
+
}),
|
|
310
|
+
)
|