@happy-creative/iroder 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/.qwen/settings.json +8 -0
- package/.qwen/settings.json.orig +7 -0
- package/AGENTS.md +69 -0
- package/BUN_SHELL_MIGRATION_PLAN.md +136 -0
- package/Dockerfile +20 -0
- package/README.md +15 -0
- package/bin/iroder +182 -0
- package/docker-compose.iroder.yml +18 -0
- package/drizzle.config.ts +10 -0
- package/git +0 -0
- package/migration/20260127222353_familiar_lady_ursula/migration.sql +90 -0
- package/migration/20260127222353_familiar_lady_ursula/snapshot.json +796 -0
- package/migration/20260211171708_add_project_commands/migration.sql +1 -0
- package/migration/20260211171708_add_project_commands/snapshot.json +806 -0
- package/migration/20260213144116_wakeful_the_professor/migration.sql +11 -0
- package/migration/20260213144116_wakeful_the_professor/snapshot.json +897 -0
- package/migration/20260225215848_workspace/migration.sql +7 -0
- package/migration/20260225215848_workspace/snapshot.json +959 -0
- package/migration/20260227213759_add_session_workspace_id/migration.sql +2 -0
- package/migration/20260227213759_add_session_workspace_id/snapshot.json +983 -0
- package/migration/20260228203230_blue_harpoon/migration.sql +17 -0
- package/migration/20260228203230_blue_harpoon/snapshot.json +1102 -0
- package/migration/20260303231226_add_workspace_fields/migration.sql +5 -0
- package/migration/20260303231226_add_workspace_fields/snapshot.json +1013 -0
- package/migration/20260309230000_move_org_to_state/migration.sql +3 -0
- package/migration/20260309230000_move_org_to_state/snapshot.json +1156 -0
- package/migration/20260312043431_session_message_cursor/migration.sql +4 -0
- package/migration/20260312043431_session_message_cursor/snapshot.json +1168 -0
- package/migration/20260323234822_events/migration.sql +13 -0
- package/migration/20260323234822_events/snapshot.json +1271 -0
- package/package.json +180 -0
- package/parsers-config.ts +290 -0
- package/script/build-node.ts +60 -0
- package/script/build.ts +281 -0
- package/script/check-migrations.ts +16 -0
- package/script/e2e-local-real-key.ts +197 -0
- package/script/fix-node-pty.ts +28 -0
- package/script/postinstall.mjs +131 -0
- package/script/publish-all.sh +68 -0
- package/script/publish.ts +181 -0
- package/script/schema.ts +63 -0
- package/script/seed-e2e.ts +60 -0
- package/script/upgrade-opentui.ts +64 -0
- package/specs/effect-migration.md +310 -0
- package/specs/tui-plugins.md +436 -0
- package/specs/v2/keymappings.md +10 -0
- package/specs/v2/message-shape.md +136 -0
- package/src/account/account.sql.ts +39 -0
- package/src/account/index.ts +488 -0
- package/src/account/repo.ts +166 -0
- package/src/account/schema.ts +119 -0
- package/src/account/url.ts +8 -0
- package/src/acp/README.md +174 -0
- package/src/acp/agent.ts +1847 -0
- package/src/acp/session.ts +116 -0
- package/src/acp/types.ts +24 -0
- package/src/agent/agent.ts +422 -0
- package/src/agent/generate.txt +75 -0
- package/src/agent/prompt/compaction.txt +15 -0
- package/src/agent/prompt/explore.txt +18 -0
- package/src/agent/prompt/summary.txt +11 -0
- package/src/agent/prompt/title.txt +44 -0
- package/src/auth/index.ts +110 -0
- package/src/bus/bus-event.ts +40 -0
- package/src/bus/global.ts +10 -0
- package/src/bus/index.ts +185 -0
- package/src/cli/bootstrap.ts +17 -0
- package/src/cli/cmd/account.ts +257 -0
- package/src/cli/cmd/acp.ts +72 -0
- package/src/cli/cmd/agent.ts +245 -0
- package/src/cli/cmd/cmd.ts +7 -0
- package/src/cli/cmd/db.ts +120 -0
- package/src/cli/cmd/debug/agent.ts +170 -0
- package/src/cli/cmd/debug/config.ts +16 -0
- package/src/cli/cmd/debug/file.ts +97 -0
- package/src/cli/cmd/debug/index.ts +48 -0
- package/src/cli/cmd/debug/lsp.ts +53 -0
- package/src/cli/cmd/debug/ripgrep.ts +87 -0
- package/src/cli/cmd/debug/scrap.ts +16 -0
- package/src/cli/cmd/debug/skill.ts +16 -0
- package/src/cli/cmd/debug/snapshot.ts +52 -0
- package/src/cli/cmd/export.ts +89 -0
- package/src/cli/cmd/generate.ts +38 -0
- package/src/cli/cmd/github.ts +1647 -0
- package/src/cli/cmd/import.ts +207 -0
- package/src/cli/cmd/mcp.ts +754 -0
- package/src/cli/cmd/models.ts +78 -0
- package/src/cli/cmd/plug.ts +233 -0
- package/src/cli/cmd/pr.ts +127 -0
- package/src/cli/cmd/providers.ts +480 -0
- package/src/cli/cmd/run.ts +692 -0
- package/src/cli/cmd/serve.ts +23 -0
- package/src/cli/cmd/session.ts +159 -0
- package/src/cli/cmd/stats.ts +410 -0
- package/src/cli/cmd/tui/app.tsx +940 -0
- package/src/cli/cmd/tui/attach.ts +88 -0
- package/src/cli/cmd/tui/component/border.tsx +21 -0
- package/src/cli/cmd/tui/component/dialog-agent.tsx +31 -0
- package/src/cli/cmd/tui/component/dialog-command.tsx +171 -0
- package/src/cli/cmd/tui/component/dialog-console-org.tsx +103 -0
- package/src/cli/cmd/tui/component/dialog-go-upsell.tsx +100 -0
- package/src/cli/cmd/tui/component/dialog-mcp.tsx +86 -0
- package/src/cli/cmd/tui/component/dialog-model.tsx +183 -0
- package/src/cli/cmd/tui/component/dialog-provider.tsx +360 -0
- package/src/cli/cmd/tui/component/dialog-session-list.tsx +108 -0
- package/src/cli/cmd/tui/component/dialog-session-rename.tsx +31 -0
- package/src/cli/cmd/tui/component/dialog-skill.tsx +36 -0
- package/src/cli/cmd/tui/component/dialog-stash.tsx +87 -0
- package/src/cli/cmd/tui/component/dialog-status.tsx +168 -0
- package/src/cli/cmd/tui/component/dialog-tag.tsx +44 -0
- package/src/cli/cmd/tui/component/dialog-theme-list.tsx +50 -0
- package/src/cli/cmd/tui/component/dialog-variant.tsx +39 -0
- package/src/cli/cmd/tui/component/dialog-workspace-list.tsx +320 -0
- package/src/cli/cmd/tui/component/error-component.tsx +93 -0
- package/src/cli/cmd/tui/component/logo.tsx +85 -0
- package/src/cli/cmd/tui/component/plugin-route-missing.tsx +14 -0
- package/src/cli/cmd/tui/component/prompt/autocomplete.tsx +672 -0
- package/src/cli/cmd/tui/component/prompt/frecency.tsx +90 -0
- package/src/cli/cmd/tui/component/prompt/history.tsx +108 -0
- package/src/cli/cmd/tui/component/prompt/index.tsx +1261 -0
- package/src/cli/cmd/tui/component/prompt/part.ts +16 -0
- package/src/cli/cmd/tui/component/prompt/stash.tsx +101 -0
- package/src/cli/cmd/tui/component/spinner.tsx +24 -0
- package/src/cli/cmd/tui/component/startup-loading.tsx +63 -0
- package/src/cli/cmd/tui/component/textarea-keybindings.ts +73 -0
- package/src/cli/cmd/tui/component/todo-item.tsx +32 -0
- package/src/cli/cmd/tui/component/workspace/dialog-session-list.tsx +151 -0
- package/src/cli/cmd/tui/context/args.tsx +15 -0
- package/src/cli/cmd/tui/context/directory.ts +13 -0
- package/src/cli/cmd/tui/context/exit.tsx +60 -0
- package/src/cli/cmd/tui/context/helper.tsx +25 -0
- package/src/cli/cmd/tui/context/keybind.tsx +105 -0
- package/src/cli/cmd/tui/context/kv.tsx +52 -0
- package/src/cli/cmd/tui/context/local.tsx +412 -0
- package/src/cli/cmd/tui/context/plugin-keybinds.ts +41 -0
- package/src/cli/cmd/tui/context/prompt.tsx +18 -0
- package/src/cli/cmd/tui/context/route.tsx +52 -0
- package/src/cli/cmd/tui/context/sdk.tsx +115 -0
- package/src/cli/cmd/tui/context/sync.tsx +516 -0
- package/src/cli/cmd/tui/context/theme/aura.json +69 -0
- package/src/cli/cmd/tui/context/theme/ayu.json +80 -0
- package/src/cli/cmd/tui/context/theme/carbonfox.json +248 -0
- package/src/cli/cmd/tui/context/theme/catppuccin-frappe.json +233 -0
- package/src/cli/cmd/tui/context/theme/catppuccin-macchiato.json +233 -0
- package/src/cli/cmd/tui/context/theme/catppuccin.json +112 -0
- package/src/cli/cmd/tui/context/theme/cobalt2.json +228 -0
- package/src/cli/cmd/tui/context/theme/cursor.json +249 -0
- package/src/cli/cmd/tui/context/theme/dracula.json +219 -0
- package/src/cli/cmd/tui/context/theme/everforest.json +241 -0
- package/src/cli/cmd/tui/context/theme/flexoki.json +237 -0
- package/src/cli/cmd/tui/context/theme/github.json +233 -0
- package/src/cli/cmd/tui/context/theme/gruvbox.json +242 -0
- package/src/cli/cmd/tui/context/theme/iroder.json +245 -0
- package/src/cli/cmd/tui/context/theme/kanagawa.json +77 -0
- package/src/cli/cmd/tui/context/theme/lucent-orng.json +237 -0
- package/src/cli/cmd/tui/context/theme/material.json +235 -0
- package/src/cli/cmd/tui/context/theme/matrix.json +77 -0
- package/src/cli/cmd/tui/context/theme/mercury.json +252 -0
- package/src/cli/cmd/tui/context/theme/monokai.json +221 -0
- package/src/cli/cmd/tui/context/theme/nightowl.json +221 -0
- package/src/cli/cmd/tui/context/theme/nord.json +223 -0
- package/src/cli/cmd/tui/context/theme/one-dark.json +84 -0
- package/src/cli/cmd/tui/context/theme/opencode.json +245 -0
- package/src/cli/cmd/tui/context/theme/orng.json +249 -0
- package/src/cli/cmd/tui/context/theme/osaka-jade.json +93 -0
- package/src/cli/cmd/tui/context/theme/palenight.json +222 -0
- package/src/cli/cmd/tui/context/theme/rosepine.json +234 -0
- package/src/cli/cmd/tui/context/theme/solarized.json +223 -0
- package/src/cli/cmd/tui/context/theme/synthwave84.json +226 -0
- package/src/cli/cmd/tui/context/theme/tokyonight.json +243 -0
- package/src/cli/cmd/tui/context/theme/vercel.json +245 -0
- package/src/cli/cmd/tui/context/theme/vesper.json +218 -0
- package/src/cli/cmd/tui/context/theme/zenburn.json +223 -0
- package/src/cli/cmd/tui/context/theme.tsx +1236 -0
- package/src/cli/cmd/tui/context/tui-config.tsx +9 -0
- package/src/cli/cmd/tui/event.ts +49 -0
- package/src/cli/cmd/tui/feature-plugins/home/footer.tsx +93 -0
- package/src/cli/cmd/tui/feature-plugins/home/tips-view.tsx +155 -0
- package/src/cli/cmd/tui/feature-plugins/home/tips.tsx +50 -0
- package/src/cli/cmd/tui/feature-plugins/sidebar/context.tsx +63 -0
- package/src/cli/cmd/tui/feature-plugins/sidebar/files.tsx +62 -0
- package/src/cli/cmd/tui/feature-plugins/sidebar/footer.tsx +93 -0
- package/src/cli/cmd/tui/feature-plugins/sidebar/lsp.tsx +66 -0
- package/src/cli/cmd/tui/feature-plugins/sidebar/mcp.tsx +96 -0
- package/src/cli/cmd/tui/feature-plugins/sidebar/todo.tsx +48 -0
- package/src/cli/cmd/tui/feature-plugins/system/plugins.tsx +270 -0
- package/src/cli/cmd/tui/plugin/api.tsx +397 -0
- package/src/cli/cmd/tui/plugin/index.ts +3 -0
- package/src/cli/cmd/tui/plugin/internal.ts +27 -0
- package/src/cli/cmd/tui/plugin/runtime.ts +1031 -0
- package/src/cli/cmd/tui/plugin/slots.tsx +60 -0
- package/src/cli/cmd/tui/routes/home.tsx +84 -0
- package/src/cli/cmd/tui/routes/session/dialog-fork-from-timeline.tsx +65 -0
- package/src/cli/cmd/tui/routes/session/dialog-message.tsx +110 -0
- package/src/cli/cmd/tui/routes/session/dialog-subagent.tsx +26 -0
- package/src/cli/cmd/tui/routes/session/dialog-timeline.tsx +47 -0
- package/src/cli/cmd/tui/routes/session/footer.tsx +91 -0
- package/src/cli/cmd/tui/routes/session/index.tsx +2281 -0
- package/src/cli/cmd/tui/routes/session/permission.tsx +691 -0
- package/src/cli/cmd/tui/routes/session/question.tsx +468 -0
- package/src/cli/cmd/tui/routes/session/sidebar.tsx +74 -0
- package/src/cli/cmd/tui/routes/session/subagent-footer.tsx +131 -0
- package/src/cli/cmd/tui/thread.ts +241 -0
- package/src/cli/cmd/tui/ui/dialog-alert.tsx +59 -0
- package/src/cli/cmd/tui/ui/dialog-confirm.tsx +89 -0
- package/src/cli/cmd/tui/ui/dialog-export-options.tsx +211 -0
- package/src/cli/cmd/tui/ui/dialog-help.tsx +40 -0
- package/src/cli/cmd/tui/ui/dialog-prompt.tsx +115 -0
- package/src/cli/cmd/tui/ui/dialog-select.tsx +417 -0
- package/src/cli/cmd/tui/ui/dialog.tsx +192 -0
- package/src/cli/cmd/tui/ui/link.tsx +28 -0
- package/src/cli/cmd/tui/ui/spinner.ts +368 -0
- package/src/cli/cmd/tui/ui/toast.tsx +100 -0
- package/src/cli/cmd/tui/util/clipboard.ts +192 -0
- package/src/cli/cmd/tui/util/editor.ts +37 -0
- package/src/cli/cmd/tui/util/model.ts +23 -0
- package/src/cli/cmd/tui/util/provider-origin.ts +7 -0
- package/src/cli/cmd/tui/util/scroll.ts +23 -0
- package/src/cli/cmd/tui/util/selection.ts +25 -0
- package/src/cli/cmd/tui/util/signal.ts +7 -0
- package/src/cli/cmd/tui/util/terminal.ts +114 -0
- package/src/cli/cmd/tui/util/transcript.ts +112 -0
- package/src/cli/cmd/tui/win32.ts +129 -0
- package/src/cli/cmd/tui/worker.ts +195 -0
- package/src/cli/cmd/uninstall.ts +353 -0
- package/src/cli/cmd/upgrade.ts +73 -0
- package/src/cli/cmd/web.ts +83 -0
- package/src/cli/commands.ts +58 -0
- package/src/cli/effect/prompt.ts +25 -0
- package/src/cli/error.ts +50 -0
- package/src/cli/heap.ts +59 -0
- package/src/cli/llm-ready.ts +22 -0
- package/src/cli/logo.ts +8 -0
- package/src/cli/network.ts +60 -0
- package/src/cli/ui.ts +132 -0
- package/src/cli/upgrade.ts +31 -0
- package/src/command/index.ts +195 -0
- package/src/command/template/initialize.txt +66 -0
- package/src/command/template/review.txt +101 -0
- package/src/config/config.ts +1659 -0
- package/src/config/console-state.ts +15 -0
- package/src/config/markdown.ts +99 -0
- package/src/config/paths.ts +167 -0
- package/src/config/tui-migrate.ts +156 -0
- package/src/config/tui-schema.ts +37 -0
- package/src/config/tui.ts +179 -0
- package/src/control-plane/adaptors/index.ts +23 -0
- package/src/control-plane/adaptors/remote-acp.ts +35 -0
- package/src/control-plane/adaptors/remote-http.ts +35 -0
- package/src/control-plane/adaptors/worktree.ts +42 -0
- package/src/control-plane/schema.ts +17 -0
- package/src/control-plane/sse.ts +66 -0
- package/src/control-plane/types.ts +32 -0
- package/src/control-plane/workspace.sql.ts +17 -0
- package/src/control-plane/workspace.ts +169 -0
- package/src/effect/cross-spawn-spawner.ts +502 -0
- package/src/effect/instance-ref.ts +6 -0
- package/src/effect/instance-registry.ts +12 -0
- package/src/effect/instance-state.ts +82 -0
- package/src/effect/oltp.ts +34 -0
- package/src/effect/run-service.ts +34 -0
- package/src/effect/runner.ts +216 -0
- package/src/env/index.ts +28 -0
- package/src/file/ignore.ts +82 -0
- package/src/file/index.ts +686 -0
- package/src/file/protected.ts +59 -0
- package/src/file/ripgrep.ts +376 -0
- package/src/file/time.ts +133 -0
- package/src/file/watcher.ts +171 -0
- package/src/filesystem/index.ts +236 -0
- package/src/flag/flag.ts +171 -0
- package/src/format/formatter.ts +413 -0
- package/src/format/index.ts +203 -0
- package/src/git/index.ts +303 -0
- package/src/global/index.ts +54 -0
- package/src/id/id.ts +85 -0
- package/src/ide/index.ts +74 -0
- package/src/index.ts +202 -0
- package/src/installation/index.ts +356 -0
- package/src/installation/meta.ts +7 -0
- package/src/lsp/client.ts +252 -0
- package/src/lsp/index.ts +558 -0
- package/src/lsp/language.ts +120 -0
- package/src/lsp/launch.ts +21 -0
- package/src/lsp/server.ts +1968 -0
- package/src/mcp/auth.ts +173 -0
- package/src/mcp/index.ts +921 -0
- package/src/mcp/oauth-callback.ts +216 -0
- package/src/mcp/oauth-provider.ts +186 -0
- package/src/node.ts +6 -0
- package/src/npm/index.ts +188 -0
- package/src/patch/index.ts +680 -0
- package/src/permission/arity.ts +163 -0
- package/src/permission/evaluate.ts +15 -0
- package/src/permission/index.ts +325 -0
- package/src/permission/schema.ts +17 -0
- package/src/plugin/cloudflare.ts +67 -0
- package/src/plugin/codex.ts +608 -0
- package/src/plugin/github-copilot/copilot.ts +361 -0
- package/src/plugin/github-copilot/models.ts +144 -0
- package/src/plugin/index.ts +293 -0
- package/src/plugin/install.ts +439 -0
- package/src/plugin/loader.ts +174 -0
- package/src/plugin/meta.ts +188 -0
- package/src/plugin/shared.ts +323 -0
- package/src/project/bootstrap.ts +31 -0
- package/src/project/instance.ts +175 -0
- package/src/project/project.sql.ts +16 -0
- package/src/project/project.ts +519 -0
- package/src/project/schema.ts +16 -0
- package/src/project/state.ts +70 -0
- package/src/project/vcs.ts +254 -0
- package/src/provider/auth.ts +253 -0
- package/src/provider/error.ts +197 -0
- package/src/provider/models.ts +159 -0
- package/src/provider/provider.ts +1748 -0
- package/src/provider/schema.ts +38 -0
- package/src/provider/sdk/copilot/README.md +5 -0
- package/src/provider/sdk/copilot/chat/convert-to-openai-compatible-chat-messages.ts +170 -0
- package/src/provider/sdk/copilot/chat/get-response-metadata.ts +15 -0
- package/src/provider/sdk/copilot/chat/map-openai-compatible-finish-reason.ts +19 -0
- package/src/provider/sdk/copilot/chat/openai-compatible-api-types.ts +64 -0
- package/src/provider/sdk/copilot/chat/openai-compatible-chat-language-model.ts +815 -0
- package/src/provider/sdk/copilot/chat/openai-compatible-chat-options.ts +28 -0
- package/src/provider/sdk/copilot/chat/openai-compatible-metadata-extractor.ts +44 -0
- package/src/provider/sdk/copilot/chat/openai-compatible-prepare-tools.ts +83 -0
- package/src/provider/sdk/copilot/copilot-provider.ts +100 -0
- package/src/provider/sdk/copilot/index.ts +2 -0
- package/src/provider/sdk/copilot/openai-compatible-error.ts +27 -0
- package/src/provider/sdk/copilot/responses/convert-to-openai-responses-input.ts +335 -0
- package/src/provider/sdk/copilot/responses/map-openai-responses-finish-reason.ts +22 -0
- package/src/provider/sdk/copilot/responses/openai-config.ts +18 -0
- package/src/provider/sdk/copilot/responses/openai-error.ts +22 -0
- package/src/provider/sdk/copilot/responses/openai-responses-api-types.ts +214 -0
- package/src/provider/sdk/copilot/responses/openai-responses-language-model.ts +1769 -0
- package/src/provider/sdk/copilot/responses/openai-responses-prepare-tools.ts +173 -0
- package/src/provider/sdk/copilot/responses/openai-responses-settings.ts +1 -0
- package/src/provider/sdk/copilot/responses/tool/code-interpreter.ts +87 -0
- package/src/provider/sdk/copilot/responses/tool/file-search.ts +127 -0
- package/src/provider/sdk/copilot/responses/tool/image-generation.ts +114 -0
- package/src/provider/sdk/copilot/responses/tool/local-shell.ts +64 -0
- package/src/provider/sdk/copilot/responses/tool/web-search-preview.ts +103 -0
- package/src/provider/sdk/copilot/responses/tool/web-search.ts +102 -0
- package/src/provider/transform.ts +1051 -0
- package/src/pty/index.ts +397 -0
- package/src/pty/pty.bun.ts +26 -0
- package/src/pty/pty.node.ts +27 -0
- package/src/pty/pty.ts +25 -0
- package/src/pty/schema.ts +17 -0
- package/src/question/index.ts +224 -0
- package/src/question/schema.ts +17 -0
- package/src/runtime/adapters/acp/index.ts +127 -0
- package/src/runtime/adapters/local/index.ts +6 -0
- package/src/runtime/core/agent.ts +13 -0
- package/src/runtime/core/mcp.ts +10 -0
- package/src/runtime/core/ports.ts +16 -0
- package/src/runtime/core/service.ts +19 -0
- package/src/runtime/core/session-summarize.ts +52 -0
- package/src/runtime/core/session.ts +110 -0
- package/src/runtime/core/skill.ts +10 -0
- package/src/runtime/core/transport.ts +10 -0
- package/src/runtime/factory.ts +20 -0
- package/src/runtime/ports.ts +74 -0
- package/src/server/error.ts +36 -0
- package/src/server/event.ts +7 -0
- package/src/server/instance.ts +322 -0
- package/src/server/mdns.ts +60 -0
- package/src/server/middleware.ts +33 -0
- package/src/server/projectors.ts +28 -0
- package/src/server/proxy.ts +134 -0
- package/src/server/router.ts +161 -0
- package/src/server/routes/config.ts +92 -0
- package/src/server/routes/event.ts +83 -0
- package/src/server/routes/experimental.ts +379 -0
- package/src/server/routes/file.ts +197 -0
- package/src/server/routes/global.ts +312 -0
- package/src/server/routes/mcp.ts +226 -0
- package/src/server/routes/permission.ts +69 -0
- package/src/server/routes/project.ts +118 -0
- package/src/server/routes/provider.ts +171 -0
- package/src/server/routes/pty.ts +210 -0
- package/src/server/routes/question.ts +99 -0
- package/src/server/routes/session.ts +1011 -0
- package/src/server/routes/tui.ts +379 -0
- package/src/server/routes/workspace.ts +94 -0
- package/src/server/server.ts +367 -0
- package/src/session/compaction.ts +425 -0
- package/src/session/index.ts +887 -0
- package/src/session/instruction.ts +258 -0
- package/src/session/llm.ts +412 -0
- package/src/session/message-v2.ts +1038 -0
- package/src/session/message.ts +191 -0
- package/src/session/overflow.ts +22 -0
- package/src/session/processor.ts +515 -0
- package/src/session/projectors.ts +135 -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 +105 -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/max-steps.txt +16 -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 +1908 -0
- package/src/session/retry.ts +123 -0
- package/src/session/revert.ts +176 -0
- package/src/session/schema.ts +38 -0
- package/src/session/session.sql.ts +103 -0
- package/src/session/status.ts +102 -0
- package/src/session/summary.ts +177 -0
- package/src/session/system.ts +76 -0
- package/src/session/todo.ts +95 -0
- package/src/share/share-next.ts +370 -0
- package/src/share/share.sql.ts +13 -0
- package/src/shell/shell.ts +110 -0
- package/src/skill/discovery.ts +116 -0
- package/src/skill/index.ts +289 -0
- package/src/snapshot/index.ts +723 -0
- package/src/sql.d.ts +4 -0
- package/src/storage/db.bun.ts +8 -0
- package/src/storage/db.node.ts +8 -0
- package/src/storage/db.ts +174 -0
- package/src/storage/json-migration.ts +425 -0
- package/src/storage/schema.sql.ts +10 -0
- package/src/storage/schema.ts +5 -0
- package/src/storage/storage.ts +353 -0
- package/src/sync/README.md +179 -0
- package/src/sync/event.sql.ts +16 -0
- package/src/sync/index.ts +263 -0
- package/src/sync/schema.ts +14 -0
- package/src/testing/llm-server.ts +2 -0
- package/src/tool/apply_patch.ts +279 -0
- package/src/tool/apply_patch.txt +33 -0
- package/src/tool/bash.ts +498 -0
- package/src/tool/bash.txt +117 -0
- package/src/tool/codesearch.ts +133 -0
- package/src/tool/codesearch.txt +12 -0
- package/src/tool/edit.ts +666 -0
- package/src/tool/edit.txt +10 -0
- package/src/tool/external-directory.ts +46 -0
- package/src/tool/glob.ts +78 -0
- package/src/tool/glob.txt +6 -0
- package/src/tool/grep.ts +156 -0
- package/src/tool/grep.txt +8 -0
- package/src/tool/invalid.ts +17 -0
- package/src/tool/ls.ts +121 -0
- package/src/tool/ls.txt +1 -0
- package/src/tool/lsp.ts +97 -0
- package/src/tool/lsp.txt +19 -0
- package/src/tool/multiedit.ts +46 -0
- package/src/tool/multiedit.txt +41 -0
- package/src/tool/plan-enter.txt +14 -0
- package/src/tool/plan-exit.txt +13 -0
- package/src/tool/plan.ts +131 -0
- package/src/tool/question.ts +46 -0
- package/src/tool/question.txt +10 -0
- package/src/tool/read.ts +330 -0
- package/src/tool/read.txt +14 -0
- package/src/tool/registry.ts +303 -0
- package/src/tool/schema.ts +17 -0
- package/src/tool/skill.ts +120 -0
- package/src/tool/task.ts +192 -0
- package/src/tool/task.txt +57 -0
- package/src/tool/todo.ts +48 -0
- package/src/tool/todowrite.txt +167 -0
- package/src/tool/tool.ts +137 -0
- package/src/tool/truncate.ts +144 -0
- package/src/tool/truncation-dir.ts +4 -0
- package/src/tool/webfetch.ts +210 -0
- package/src/tool/webfetch.txt +13 -0
- package/src/tool/websearch.ts +151 -0
- package/src/tool/websearch.txt +14 -0
- package/src/tool/write.ts +84 -0
- package/src/tool/write.txt +8 -0
- package/src/url/site.ts +118 -0
- package/src/util/abort.ts +35 -0
- package/src/util/archive.ts +17 -0
- package/src/util/color.ts +19 -0
- package/src/util/context.ts +25 -0
- package/src/util/data-url.ts +9 -0
- package/src/util/defer.ts +12 -0
- package/src/util/effect-http-client.ts +11 -0
- package/src/util/effect-zod.ts +98 -0
- package/src/util/error.ts +77 -0
- package/src/util/filesystem.ts +245 -0
- package/src/util/flock.ts +333 -0
- package/src/util/fn.ts +21 -0
- package/src/util/format.ts +20 -0
- package/src/util/glob.ts +34 -0
- package/src/util/hash.ts +7 -0
- package/src/util/iife.ts +3 -0
- package/src/util/keybind.ts +103 -0
- package/src/util/lazy.ts +23 -0
- package/src/util/locale.ts +81 -0
- package/src/util/lock.ts +98 -0
- package/src/util/log.ts +182 -0
- package/src/util/network.ts +9 -0
- package/src/util/process.ts +176 -0
- package/src/util/queue.ts +32 -0
- package/src/util/record.ts +3 -0
- package/src/util/rpc.ts +66 -0
- package/src/util/schema.ts +53 -0
- package/src/util/scrap.ts +10 -0
- package/src/util/signal.ts +12 -0
- package/src/util/timeout.ts +14 -0
- package/src/util/token.ts +7 -0
- package/src/util/update-schema.ts +13 -0
- package/src/util/which.ts +14 -0
- package/src/util/wildcard.ts +59 -0
- package/src/worktree/index.ts +612 -0
- package/sst-env.d.ts +10 -0
- package/test/AGENTS.md +81 -0
- package/test/account/repo.test.ts +352 -0
- package/test/account/service.test.ts +456 -0
- package/test/acp/agent-interface.test.ts +51 -0
- package/test/acp/event-subscription.test.ts +685 -0
- package/test/agent/agent.test.ts +717 -0
- package/test/auth/auth.test.ts +58 -0
- package/test/bus/bus-effect.test.ts +164 -0
- package/test/bus/bus-integration.test.ts +87 -0
- package/test/bus/bus.test.ts +219 -0
- package/test/cli/account.test.ts +26 -0
- package/test/cli/cmd/tui/prompt-part.test.ts +47 -0
- package/test/cli/commands.test.ts +49 -0
- package/test/cli/error.test.ts +18 -0
- package/test/cli/github-action.test.ts +198 -0
- package/test/cli/github-remote.test.ts +80 -0
- package/test/cli/import.test.ts +54 -0
- package/test/cli/llm-ready.test.ts +49 -0
- package/test/cli/plugin-auth-picker.test.ts +120 -0
- package/test/cli/tui/keybind-plugin.test.ts +90 -0
- package/test/cli/tui/plugin-add.test.ts +107 -0
- package/test/cli/tui/plugin-install.test.ts +89 -0
- package/test/cli/tui/plugin-lifecycle.test.ts +225 -0
- package/test/cli/tui/plugin-loader-entrypoint.test.ts +492 -0
- package/test/cli/tui/plugin-loader-pure.test.ts +72 -0
- package/test/cli/tui/plugin-loader.test.ts +752 -0
- package/test/cli/tui/plugin-toggle.test.ts +159 -0
- package/test/cli/tui/slot-replace.test.tsx +47 -0
- package/test/cli/tui/theme-store.test.ts +51 -0
- package/test/cli/tui/thread.test.ts +128 -0
- package/test/cli/tui/transcript.test.ts +426 -0
- package/test/config/agent-color.test.ts +71 -0
- package/test/config/config.test.ts +2364 -0
- package/test/config/fixtures/empty-frontmatter.md +4 -0
- package/test/config/fixtures/frontmatter.md +28 -0
- package/test/config/fixtures/markdown-header.md +11 -0
- package/test/config/fixtures/no-frontmatter.md +1 -0
- package/test/config/fixtures/weird-model-id.md +13 -0
- package/test/config/markdown.test.ts +228 -0
- package/test/config/tui.test.ts +800 -0
- package/test/control-plane/sse.test.ts +56 -0
- package/test/effect/cross-spawn-spawner.test.ts +412 -0
- package/test/effect/instance-state.test.ts +482 -0
- package/test/effect/run-service.test.ts +46 -0
- package/test/effect/runner.test.ts +523 -0
- package/test/fake/provider.ts +81 -0
- package/test/file/fsmonitor.test.ts +62 -0
- package/test/file/ignore.test.ts +10 -0
- package/test/file/index.test.ts +946 -0
- package/test/file/path-traversal.test.ts +198 -0
- package/test/file/ripgrep.test.ts +54 -0
- package/test/file/time.test.ts +445 -0
- package/test/file/watcher.test.ts +247 -0
- package/test/filesystem/filesystem.test.ts +319 -0
- package/test/fixture/db.ts +11 -0
- package/test/fixture/fixture.test.ts +26 -0
- package/test/fixture/fixture.ts +174 -0
- package/test/fixture/flock-worker.ts +72 -0
- package/test/fixture/lsp/fake-lsp-server.js +77 -0
- package/test/fixture/plug-worker.ts +93 -0
- package/test/fixture/plugin-meta-worker.ts +26 -0
- package/test/fixture/skills/agents-sdk/SKILL.md +152 -0
- package/test/fixture/skills/agents-sdk/references/callable.md +92 -0
- package/test/fixture/skills/cloudflare/SKILL.md +211 -0
- package/test/fixture/skills/index.json +6 -0
- package/test/fixture/tui-plugin.ts +328 -0
- package/test/fixture/tui-runtime.ts +27 -0
- package/test/format/format.test.ts +171 -0
- package/test/git/git.test.ts +128 -0
- package/test/ide/ide.test.ts +82 -0
- package/test/installation/installation.test.ts +151 -0
- package/test/keybind.test.ts +421 -0
- package/test/lib/effect.ts +53 -0
- package/test/lib/filesystem.ts +10 -0
- package/test/lib/llm-server.ts +795 -0
- package/test/lsp/client.test.ts +95 -0
- package/test/lsp/index.test.ts +138 -0
- package/test/lsp/launch.test.ts +22 -0
- package/test/lsp/lifecycle.test.ts +147 -0
- package/test/mcp/headers.test.ts +153 -0
- package/test/mcp/lifecycle.test.ts +750 -0
- package/test/mcp/oauth-auto-connect.test.ts +199 -0
- package/test/mcp/oauth-browser.test.ts +249 -0
- package/test/memory/abort-leak.test.ts +151 -0
- package/test/npm.test.ts +18 -0
- package/test/patch/patch.test.ts +348 -0
- package/test/permission/arity.test.ts +33 -0
- package/test/permission/next.test.ts +1148 -0
- package/test/permission-task.test.ts +323 -0
- package/test/plugin/auth-override.test.ts +74 -0
- package/test/plugin/codex.test.ts +123 -0
- package/test/plugin/github-copilot-models.test.ts +117 -0
- package/test/plugin/install-concurrency.test.ts +140 -0
- package/test/plugin/install.test.ts +570 -0
- package/test/plugin/loader-shared.test.ts +1136 -0
- package/test/plugin/meta.test.ts +137 -0
- package/test/plugin/shared.test.ts +88 -0
- package/test/plugin/trigger.test.ts +111 -0
- package/test/preload.ts +90 -0
- package/test/project/migrate-global.test.ts +141 -0
- package/test/project/project.test.ts +459 -0
- package/test/project/state.test.ts +115 -0
- package/test/project/vcs.test.ts +228 -0
- package/test/project/worktree-remove.test.ts +96 -0
- package/test/project/worktree.test.ts +173 -0
- package/test/provider/amazon-bedrock.test.ts +447 -0
- package/test/provider/copilot/convert-to-copilot-messages.test.ts +523 -0
- package/test/provider/copilot/copilot-chat-model.test.ts +592 -0
- package/test/provider/gitlab-duo.test.ts +412 -0
- package/test/provider/provider.test.ts +2494 -0
- package/test/provider/transform.test.ts +2839 -0
- package/test/pty/pty-output-isolation.test.ts +141 -0
- package/test/pty/pty-session.test.ts +92 -0
- package/test/pty/pty-shell.test.ts +59 -0
- package/test/question/question.test.ts +453 -0
- package/test/runtime/acp-adapter.test.ts +84 -0
- package/test/runtime/core-service.test.ts +16 -0
- package/test/runtime/session-summarize.test.ts +104 -0
- package/test/server/global-session-list.test.ts +89 -0
- package/test/server/project-init-git.test.ts +121 -0
- package/test/server/router.test.ts +52 -0
- package/test/server/session-actions.test.ts +83 -0
- package/test/server/session-list.test.ts +98 -0
- package/test/server/session-messages.test.ts +159 -0
- package/test/server/session-select.test.ts +84 -0
- package/test/session/compaction.test.ts +1239 -0
- package/test/session/instruction.test.ts +286 -0
- package/test/session/llm.test.ts +1093 -0
- package/test/session/message-v2.test.ts +957 -0
- package/test/session/messages-pagination.test.ts +885 -0
- package/test/session/processor-effect.test.ts +741 -0
- package/test/session/prompt-effect.test.ts +1339 -0
- package/test/session/prompt.test.ts +533 -0
- package/test/session/retry.test.ts +251 -0
- package/test/session/revert-compact.test.ts +621 -0
- package/test/session/session.test.ts +142 -0
- package/test/session/snapshot-tool-race.test.ts +242 -0
- package/test/session/structured-output-integration.test.ts +233 -0
- package/test/session/structured-output.test.ts +391 -0
- package/test/session/system.test.ts +59 -0
- package/test/share/share-next.test.ts +332 -0
- package/test/shell/shell.test.ts +73 -0
- package/test/skill/discovery.test.ts +116 -0
- package/test/skill/skill.test.ts +428 -0
- package/test/snapshot/snapshot.test.ts +1397 -0
- package/test/storage/db.test.ts +14 -0
- package/test/storage/json-migration.test.ts +832 -0
- package/test/storage/storage.test.ts +295 -0
- package/test/sync/index.test.ts +191 -0
- package/test/tool/apply_patch.test.ts +565 -0
- package/test/tool/bash.test.ts +1099 -0
- package/test/tool/edit.test.ts +681 -0
- package/test/tool/external-directory.test.ts +198 -0
- package/test/tool/fixtures/large-image.png +0 -0
- package/test/tool/fixtures/models-api.json +65179 -0
- package/test/tool/grep.test.ts +111 -0
- package/test/tool/question.test.ts +126 -0
- package/test/tool/read.test.ts +468 -0
- package/test/tool/registry.test.ts +157 -0
- package/test/tool/skill.test.ts +170 -0
- package/test/tool/task.test.ts +412 -0
- package/test/tool/tool-define.test.ts +49 -0
- package/test/tool/truncation.test.ts +161 -0
- package/test/tool/webfetch.test.ts +96 -0
- package/test/tool/write.test.ts +353 -0
- package/test/util/data-url.test.ts +14 -0
- package/test/util/effect-zod.test.ts +61 -0
- package/test/util/error.test.ts +38 -0
- package/test/util/filesystem.test.ts +656 -0
- package/test/util/flock.test.ts +383 -0
- package/test/util/format.test.ts +59 -0
- package/test/util/glob.test.ts +164 -0
- package/test/util/iife.test.ts +36 -0
- package/test/util/lazy.test.ts +50 -0
- package/test/util/lock.test.ts +72 -0
- package/test/util/module.test.ts +59 -0
- package/test/util/process.test.ts +128 -0
- package/test/util/timeout.test.ts +21 -0
- package/test/util/which.test.ts +100 -0
- package/test/util/wildcard.test.ts +90 -0
- package/tsconfig.json +23 -0
|
@@ -0,0 +1,1908 @@
|
|
|
1
|
+
import path from "path"
|
|
2
|
+
import os from "os"
|
|
3
|
+
import z from "zod"
|
|
4
|
+
import { SessionID, MessageID, PartID } from "./schema"
|
|
5
|
+
import { MessageV2 } from "./message-v2"
|
|
6
|
+
import { Log } from "../util/log"
|
|
7
|
+
import { SessionRevert } from "./revert"
|
|
8
|
+
import { Session } from "."
|
|
9
|
+
import { Agent } from "../agent/agent"
|
|
10
|
+
import { Provider } from "../provider/provider"
|
|
11
|
+
import { ModelID, ProviderID } from "../provider/schema"
|
|
12
|
+
import { type Tool as AITool, tool, jsonSchema, type ToolExecutionOptions, asSchema } from "ai"
|
|
13
|
+
import { SessionCompaction } from "./compaction"
|
|
14
|
+
import { Bus } from "../bus"
|
|
15
|
+
import { ProviderTransform } from "../provider/transform"
|
|
16
|
+
import { SystemPrompt } from "./system"
|
|
17
|
+
import { Instruction } from "./instruction"
|
|
18
|
+
import { Plugin } from "../plugin"
|
|
19
|
+
import PROMPT_PLAN from "../session/prompt/plan.txt"
|
|
20
|
+
import BUILD_SWITCH from "../session/prompt/build-switch.txt"
|
|
21
|
+
import MAX_STEPS from "../session/prompt/max-steps.txt"
|
|
22
|
+
import { ToolRegistry } from "../tool/registry"
|
|
23
|
+
import { Runner } from "@/effect/runner"
|
|
24
|
+
import { MCP } from "../mcp"
|
|
25
|
+
import { LSP } from "../lsp"
|
|
26
|
+
import { FileTime } from "../file/time"
|
|
27
|
+
import { Flag } from "../flag/flag"
|
|
28
|
+
import { ulid } from "ulid"
|
|
29
|
+
import { ChildProcess, ChildProcessSpawner } from "effect/unstable/process"
|
|
30
|
+
import * as CrossSpawnSpawner from "@/effect/cross-spawn-spawner"
|
|
31
|
+
import * as Stream from "effect/Stream"
|
|
32
|
+
import { Command } from "../command"
|
|
33
|
+
import { pathToFileURL, fileURLToPath } from "url"
|
|
34
|
+
import { ConfigMarkdown } from "../config/markdown"
|
|
35
|
+
import { SessionSummary } from "./summary"
|
|
36
|
+
import { NamedError } from "@happy-creative/util/error"
|
|
37
|
+
import { SessionProcessor } from "./processor"
|
|
38
|
+
import { Tool } from "@/tool/tool"
|
|
39
|
+
import { Permission } from "@/permission"
|
|
40
|
+
import { SessionStatus } from "./status"
|
|
41
|
+
import { LLM } from "./llm"
|
|
42
|
+
import { Shell } from "@/shell/shell"
|
|
43
|
+
import { AppFileSystem } from "@/filesystem"
|
|
44
|
+
import { Truncate } from "@/tool/truncate"
|
|
45
|
+
import { decodeDataUrl } from "@/util/data-url"
|
|
46
|
+
import { Process } from "@/util/process"
|
|
47
|
+
import { Cause, Effect, Exit, Layer, Option, Scope, ServiceMap } from "effect"
|
|
48
|
+
import { InstanceState } from "@/effect/instance-state"
|
|
49
|
+
import { makeRuntime } from "@/effect/run-service"
|
|
50
|
+
import { TaskTool } from "@/tool/task"
|
|
51
|
+
|
|
52
|
+
// @ts-ignore
|
|
53
|
+
globalThis.AI_SDK_LOG_WARNINGS = false
|
|
54
|
+
|
|
55
|
+
const STRUCTURED_OUTPUT_DESCRIPTION = `Use this tool to return your final response in the requested structured format.
|
|
56
|
+
|
|
57
|
+
IMPORTANT:
|
|
58
|
+
- You MUST call this tool exactly once at the end of your response
|
|
59
|
+
- The input must be valid JSON matching the required schema
|
|
60
|
+
- Complete all necessary research and tool calls BEFORE calling this tool
|
|
61
|
+
- This tool provides your final answer - no further actions are taken after calling it`
|
|
62
|
+
|
|
63
|
+
const STRUCTURED_OUTPUT_SYSTEM_PROMPT = `IMPORTANT: The user has requested structured output. You MUST use the StructuredOutput tool to provide your final response. Do NOT respond with plain text - you MUST call the StructuredOutput tool with your answer formatted according to the schema.`
|
|
64
|
+
|
|
65
|
+
export namespace SessionPrompt {
|
|
66
|
+
const log = Log.create({ service: "session.prompt" })
|
|
67
|
+
|
|
68
|
+
export interface Interface {
|
|
69
|
+
readonly assertNotBusy: (sessionID: SessionID) => Effect.Effect<void, Session.BusyError>
|
|
70
|
+
readonly cancel: (sessionID: SessionID) => Effect.Effect<void>
|
|
71
|
+
readonly prompt: (input: PromptInput) => Effect.Effect<MessageV2.WithParts>
|
|
72
|
+
readonly loop: (input: z.infer<typeof LoopInput>) => Effect.Effect<MessageV2.WithParts>
|
|
73
|
+
readonly shell: (input: ShellInput) => Effect.Effect<MessageV2.WithParts>
|
|
74
|
+
readonly command: (input: CommandInput) => Effect.Effect<MessageV2.WithParts>
|
|
75
|
+
readonly resolvePromptParts: (template: string) => Effect.Effect<PromptInput["parts"]>
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
export class Service extends ServiceMap.Service<Service, Interface>()("@iroder/SessionPrompt") { }
|
|
79
|
+
|
|
80
|
+
export const layer = Layer.effect(
|
|
81
|
+
Service,
|
|
82
|
+
Effect.gen(function* () {
|
|
83
|
+
const bus = yield* Bus.Service
|
|
84
|
+
const status = yield* SessionStatus.Service
|
|
85
|
+
const sessions = yield* Session.Service
|
|
86
|
+
const agents = yield* Agent.Service
|
|
87
|
+
const provider = yield* Provider.Service
|
|
88
|
+
const processor = yield* SessionProcessor.Service
|
|
89
|
+
const compaction = yield* SessionCompaction.Service
|
|
90
|
+
const plugin = yield* Plugin.Service
|
|
91
|
+
const commands = yield* Command.Service
|
|
92
|
+
const permission = yield* Permission.Service
|
|
93
|
+
const fsys = yield* AppFileSystem.Service
|
|
94
|
+
const mcp = yield* MCP.Service
|
|
95
|
+
const lsp = yield* LSP.Service
|
|
96
|
+
const filetime = yield* FileTime.Service
|
|
97
|
+
const registry = yield* ToolRegistry.Service
|
|
98
|
+
const truncate = yield* Truncate.Service
|
|
99
|
+
const spawner = yield* ChildProcessSpawner.ChildProcessSpawner
|
|
100
|
+
const scope = yield* Scope.Scope
|
|
101
|
+
const instruction = yield* Instruction.Service
|
|
102
|
+
|
|
103
|
+
const state = yield* InstanceState.make(
|
|
104
|
+
Effect.fn("SessionPrompt.state")(function* () {
|
|
105
|
+
const runners = new Map<string, Runner<MessageV2.WithParts>>()
|
|
106
|
+
yield* Effect.addFinalizer(
|
|
107
|
+
Effect.fnUntraced(function* () {
|
|
108
|
+
yield* Effect.forEach(runners.values(), (r) => r.cancel, { concurrency: "unbounded", discard: true })
|
|
109
|
+
runners.clear()
|
|
110
|
+
}),
|
|
111
|
+
)
|
|
112
|
+
return { runners }
|
|
113
|
+
}),
|
|
114
|
+
)
|
|
115
|
+
|
|
116
|
+
const getRunner = (runners: Map<string, Runner<MessageV2.WithParts>>, sessionID: SessionID) => {
|
|
117
|
+
const existing = runners.get(sessionID)
|
|
118
|
+
if (existing) return existing
|
|
119
|
+
const runner = Runner.make<MessageV2.WithParts>(scope, {
|
|
120
|
+
onIdle: Effect.gen(function* () {
|
|
121
|
+
runners.delete(sessionID)
|
|
122
|
+
yield* status.set(sessionID, { type: "idle" })
|
|
123
|
+
}),
|
|
124
|
+
onBusy: status.set(sessionID, { type: "busy" }),
|
|
125
|
+
onInterrupt: lastAssistant(sessionID),
|
|
126
|
+
busy: () => {
|
|
127
|
+
throw new Session.BusyError(sessionID)
|
|
128
|
+
},
|
|
129
|
+
})
|
|
130
|
+
runners.set(sessionID, runner)
|
|
131
|
+
return runner
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
const assertNotBusy: (sessionID: SessionID) => Effect.Effect<void, Session.BusyError> = Effect.fn(
|
|
135
|
+
"SessionPrompt.assertNotBusy",
|
|
136
|
+
)(function* (sessionID: SessionID) {
|
|
137
|
+
const s = yield* InstanceState.get(state)
|
|
138
|
+
const runner = s.runners.get(sessionID)
|
|
139
|
+
if (runner?.busy) throw new Session.BusyError(sessionID)
|
|
140
|
+
})
|
|
141
|
+
|
|
142
|
+
const cancel = Effect.fn("SessionPrompt.cancel")(function* (sessionID: SessionID) {
|
|
143
|
+
log.info("cancel", { sessionID })
|
|
144
|
+
const s = yield* InstanceState.get(state)
|
|
145
|
+
const runner = s.runners.get(sessionID)
|
|
146
|
+
if (!runner || !runner.busy) {
|
|
147
|
+
yield* status.set(sessionID, { type: "idle" })
|
|
148
|
+
return
|
|
149
|
+
}
|
|
150
|
+
yield* runner.cancel
|
|
151
|
+
})
|
|
152
|
+
|
|
153
|
+
const resolvePromptParts = Effect.fn("SessionPrompt.resolvePromptParts")(function* (template: string) {
|
|
154
|
+
const ctx = yield* InstanceState.context
|
|
155
|
+
const parts: PromptInput["parts"] = [{ type: "text", text: template }]
|
|
156
|
+
const files = ConfigMarkdown.files(template)
|
|
157
|
+
const seen = new Set<string>()
|
|
158
|
+
yield* Effect.forEach(
|
|
159
|
+
files,
|
|
160
|
+
Effect.fnUntraced(function* (match) {
|
|
161
|
+
const name = match[1]
|
|
162
|
+
if (seen.has(name)) return
|
|
163
|
+
seen.add(name)
|
|
164
|
+
const filepath = name.startsWith("~/")
|
|
165
|
+
? path.join(os.homedir(), name.slice(2))
|
|
166
|
+
: path.resolve(ctx.worktree, name)
|
|
167
|
+
|
|
168
|
+
const info = yield* fsys.stat(filepath).pipe(Effect.option)
|
|
169
|
+
if (Option.isNone(info)) {
|
|
170
|
+
const found = yield* agents.get(name)
|
|
171
|
+
if (found) parts.push({ type: "agent", name: found.name })
|
|
172
|
+
return
|
|
173
|
+
}
|
|
174
|
+
const stat = info.value
|
|
175
|
+
parts.push({
|
|
176
|
+
type: "file",
|
|
177
|
+
url: pathToFileURL(filepath).href,
|
|
178
|
+
filename: name,
|
|
179
|
+
mime: stat.type === "Directory" ? "application/x-directory" : "text/plain",
|
|
180
|
+
})
|
|
181
|
+
}),
|
|
182
|
+
{ concurrency: "unbounded", discard: true },
|
|
183
|
+
)
|
|
184
|
+
return parts
|
|
185
|
+
})
|
|
186
|
+
|
|
187
|
+
const title = Effect.fn("SessionPrompt.ensureTitle")(function* (input: {
|
|
188
|
+
session: Session.Info
|
|
189
|
+
history: MessageV2.WithParts[]
|
|
190
|
+
providerID: ProviderID
|
|
191
|
+
modelID: ModelID
|
|
192
|
+
}) {
|
|
193
|
+
if (input.session.parentID) return
|
|
194
|
+
if (!Session.isDefaultTitle(input.session.title)) return
|
|
195
|
+
|
|
196
|
+
const real = (m: MessageV2.WithParts) =>
|
|
197
|
+
m.info.role === "user" && !m.parts.every((p) => "synthetic" in p && p.synthetic)
|
|
198
|
+
const idx = input.history.findIndex(real)
|
|
199
|
+
if (idx === -1) return
|
|
200
|
+
if (input.history.filter(real).length !== 1) return
|
|
201
|
+
|
|
202
|
+
const context = input.history.slice(0, idx + 1)
|
|
203
|
+
const firstUser = context[idx]
|
|
204
|
+
if (!firstUser || firstUser.info.role !== "user") return
|
|
205
|
+
const firstInfo = firstUser.info
|
|
206
|
+
|
|
207
|
+
const subtasks = firstUser.parts.filter((p): p is MessageV2.SubtaskPart => p.type === "subtask")
|
|
208
|
+
const onlySubtasks = subtasks.length > 0 && firstUser.parts.every((p) => p.type === "subtask")
|
|
209
|
+
|
|
210
|
+
const ag = yield* agents.get("title")
|
|
211
|
+
if (!ag) return
|
|
212
|
+
const mdl = ag.model
|
|
213
|
+
? yield* provider.getModel(ag.model.providerID, ag.model.modelID)
|
|
214
|
+
: ((yield* provider.getSmallModel(input.providerID)) ??
|
|
215
|
+
(yield* provider.getModel(input.providerID, input.modelID)))
|
|
216
|
+
const msgs = onlySubtasks
|
|
217
|
+
? [{ role: "user" as const, content: subtasks.map((p) => p.prompt).join("\n") }]
|
|
218
|
+
: yield* MessageV2.toModelMessagesEffect(context, mdl)
|
|
219
|
+
const text = yield* Effect.promise(async (signal) => {
|
|
220
|
+
const result = await LLM.stream({
|
|
221
|
+
agent: ag,
|
|
222
|
+
user: firstInfo,
|
|
223
|
+
system: [],
|
|
224
|
+
small: true,
|
|
225
|
+
tools: {},
|
|
226
|
+
model: mdl,
|
|
227
|
+
abort: signal,
|
|
228
|
+
sessionID: input.session.id,
|
|
229
|
+
retries: 2,
|
|
230
|
+
messages: [{ role: "user", content: "Generate a title for this conversation:\n" }, ...msgs],
|
|
231
|
+
})
|
|
232
|
+
return result.text
|
|
233
|
+
})
|
|
234
|
+
const cleaned = text
|
|
235
|
+
.replace(/<think>[\s\S]*?<\/think>\s*/g, "")
|
|
236
|
+
.split("\n")
|
|
237
|
+
.map((line) => line.trim())
|
|
238
|
+
.find((line) => line.length > 0)
|
|
239
|
+
if (!cleaned) return
|
|
240
|
+
const t = cleaned.length > 100 ? cleaned.substring(0, 97) + "..." : cleaned
|
|
241
|
+
yield* sessions
|
|
242
|
+
.setTitle({ sessionID: input.session.id, title: t })
|
|
243
|
+
.pipe(
|
|
244
|
+
Effect.catchCause((cause) =>
|
|
245
|
+
Effect.sync(() => log.error("failed to generate title", { error: Cause.squash(cause) })),
|
|
246
|
+
),
|
|
247
|
+
)
|
|
248
|
+
})
|
|
249
|
+
|
|
250
|
+
const insertReminders = Effect.fn("SessionPrompt.insertReminders")(function* (input: {
|
|
251
|
+
messages: MessageV2.WithParts[]
|
|
252
|
+
agent: Agent.Info
|
|
253
|
+
session: Session.Info
|
|
254
|
+
}) {
|
|
255
|
+
const userMessage = input.messages.findLast((msg) => msg.info.role === "user")
|
|
256
|
+
if (!userMessage) return input.messages
|
|
257
|
+
|
|
258
|
+
if (!Flag.IRODER_EXPERIMENTAL_PLAN_MODE) {
|
|
259
|
+
if (input.agent.name === "plan") {
|
|
260
|
+
userMessage.parts.push({
|
|
261
|
+
id: PartID.ascending(),
|
|
262
|
+
messageID: userMessage.info.id,
|
|
263
|
+
sessionID: userMessage.info.sessionID,
|
|
264
|
+
type: "text",
|
|
265
|
+
text: PROMPT_PLAN,
|
|
266
|
+
synthetic: true,
|
|
267
|
+
})
|
|
268
|
+
}
|
|
269
|
+
const wasPlan = input.messages.some((msg) => msg.info.role === "assistant" && msg.info.agent === "plan")
|
|
270
|
+
if (wasPlan && input.agent.name === "build") {
|
|
271
|
+
userMessage.parts.push({
|
|
272
|
+
id: PartID.ascending(),
|
|
273
|
+
messageID: userMessage.info.id,
|
|
274
|
+
sessionID: userMessage.info.sessionID,
|
|
275
|
+
type: "text",
|
|
276
|
+
text: BUILD_SWITCH,
|
|
277
|
+
synthetic: true,
|
|
278
|
+
})
|
|
279
|
+
}
|
|
280
|
+
return input.messages
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
const assistantMessage = input.messages.findLast((msg) => msg.info.role === "assistant")
|
|
284
|
+
if (input.agent.name !== "plan" && assistantMessage?.info.agent === "plan") {
|
|
285
|
+
const plan = Session.plan(input.session)
|
|
286
|
+
if (!(yield* fsys.existsSafe(plan))) return input.messages
|
|
287
|
+
const part = yield* sessions.updatePart({
|
|
288
|
+
id: PartID.ascending(),
|
|
289
|
+
messageID: userMessage.info.id,
|
|
290
|
+
sessionID: userMessage.info.sessionID,
|
|
291
|
+
type: "text",
|
|
292
|
+
text:
|
|
293
|
+
BUILD_SWITCH + "\n\n" + `A plan file exists at ${plan}. You should execute on the plan defined within it`,
|
|
294
|
+
synthetic: true,
|
|
295
|
+
})
|
|
296
|
+
userMessage.parts.push(part)
|
|
297
|
+
return input.messages
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
if (input.agent.name !== "plan" || assistantMessage?.info.agent === "plan") return input.messages
|
|
301
|
+
|
|
302
|
+
const plan = Session.plan(input.session)
|
|
303
|
+
const exists = yield* fsys.existsSafe(plan)
|
|
304
|
+
if (!exists) yield* fsys.ensureDir(path.dirname(plan)).pipe(Effect.catch(Effect.die))
|
|
305
|
+
const part = yield* sessions.updatePart({
|
|
306
|
+
id: PartID.ascending(),
|
|
307
|
+
messageID: userMessage.info.id,
|
|
308
|
+
sessionID: userMessage.info.sessionID,
|
|
309
|
+
type: "text",
|
|
310
|
+
text: `<system-reminder>
|
|
311
|
+
Plan mode is active. The user indicated that they do not want you to execute yet -- you MUST NOT make any edits (with the exception of the plan file mentioned below), run any non-readonly tools (including changing configs or making commits), or otherwise make any changes to the system. This supersedes any other instructions you have received.
|
|
312
|
+
|
|
313
|
+
## Plan File Info:
|
|
314
|
+
${exists ? `A plan file already exists at ${plan}. You can read it and make incremental edits using the edit tool.` : `No plan file exists yet. You should create your plan at ${plan} using the write tool.`}
|
|
315
|
+
You should build your plan incrementally by writing to or editing this file. NOTE that this is the only file you are allowed to edit - other than this you are only allowed to take READ-ONLY actions.
|
|
316
|
+
|
|
317
|
+
## Plan Workflow
|
|
318
|
+
|
|
319
|
+
### Phase 1: Initial Understanding
|
|
320
|
+
Goal: Gain a comprehensive understanding of the user's request by reading through code and asking them questions. Critical: In this phase you should only use the explore subagent type.
|
|
321
|
+
|
|
322
|
+
1. Focus on understanding the user's request and the code associated with their request
|
|
323
|
+
|
|
324
|
+
2. **Launch up to 3 explore agents IN PARALLEL** (single message, multiple tool calls) to efficiently explore the codebase.
|
|
325
|
+
- Use 1 agent when the task is isolated to known files, the user provided specific file paths, or you're making a small targeted change.
|
|
326
|
+
- Use multiple agents when: the scope is uncertain, multiple areas of the codebase are involved, or you need to understand existing patterns before planning.
|
|
327
|
+
- Quality over quantity - 3 agents maximum, but you should try to use the minimum number of agents necessary (usually just 1)
|
|
328
|
+
- If using multiple agents: Provide each agent with a specific search focus or area to explore. Example: One agent searches for existing implementations, another explores related components, a third investigates testing patterns
|
|
329
|
+
|
|
330
|
+
3. After exploring the code, use the question tool to clarify ambiguities in the user request up front.
|
|
331
|
+
|
|
332
|
+
### Phase 2: Design
|
|
333
|
+
Goal: Design an implementation approach.
|
|
334
|
+
|
|
335
|
+
Launch general agent(s) to design the implementation based on the user's intent and your exploration results from Phase 1.
|
|
336
|
+
|
|
337
|
+
You can launch up to 1 agent(s) in parallel.
|
|
338
|
+
|
|
339
|
+
**Guidelines:**
|
|
340
|
+
- **Default**: Launch at least 1 Plan agent for most tasks - it helps validate your understanding and consider alternatives
|
|
341
|
+
- **Skip agents**: Only for truly trivial tasks (typo fixes, single-line changes, simple renames)
|
|
342
|
+
|
|
343
|
+
Examples of when to use multiple agents:
|
|
344
|
+
- The task touches multiple parts of the codebase
|
|
345
|
+
- It's a large refactor or architectural change
|
|
346
|
+
- There are many edge cases to consider
|
|
347
|
+
- You'd benefit from exploring different approaches
|
|
348
|
+
|
|
349
|
+
Example perspectives by task type:
|
|
350
|
+
- New feature: simplicity vs performance vs maintainability
|
|
351
|
+
- Bug fix: root cause vs workaround vs prevention
|
|
352
|
+
- Refactoring: minimal change vs clean architecture
|
|
353
|
+
|
|
354
|
+
In the agent prompt:
|
|
355
|
+
- Provide comprehensive background context from Phase 1 exploration including filenames and code path traces
|
|
356
|
+
- Describe requirements and constraints
|
|
357
|
+
- Request a detailed implementation plan
|
|
358
|
+
|
|
359
|
+
### Phase 3: Review
|
|
360
|
+
Goal: Review the plan(s) from Phase 2 and ensure alignment with the user's intentions.
|
|
361
|
+
1. Read the critical files identified by agents to deepen your understanding
|
|
362
|
+
2. Ensure that the plans align with the user's original request
|
|
363
|
+
3. Use question tool to clarify any remaining questions with the user
|
|
364
|
+
|
|
365
|
+
### Phase 4: Final Plan
|
|
366
|
+
Goal: Write your final plan to the plan file (the only file you can edit).
|
|
367
|
+
- Include only your recommended approach, not all alternatives
|
|
368
|
+
- Ensure that the plan file is concise enough to scan quickly, but detailed enough to execute effectively
|
|
369
|
+
- Include the paths of critical files to be modified
|
|
370
|
+
- Include a verification section describing how to test the changes end-to-end (run the code, use MCP tools, run tests)
|
|
371
|
+
|
|
372
|
+
### Phase 5: Call plan_exit tool
|
|
373
|
+
At the very end of your turn, once you have asked the user questions and are happy with your final plan file - you should always call plan_exit to indicate to the user that you are done planning.
|
|
374
|
+
This is critical - your turn should only end with either asking the user a question or calling plan_exit. Do not stop unless it's for these 2 reasons.
|
|
375
|
+
|
|
376
|
+
**Important:** Use question tool to clarify requirements/approach, use plan_exit to request plan approval. Do NOT use question tool to ask "Is this plan okay?" - that's what plan_exit does.
|
|
377
|
+
|
|
378
|
+
NOTE: At any point in time through this workflow you should feel free to ask the user questions or clarifications. Don't make large assumptions about user intent. The goal is to present a well researched plan to the user, and tie any loose ends before implementation begins.
|
|
379
|
+
</system-reminder>`,
|
|
380
|
+
synthetic: true,
|
|
381
|
+
})
|
|
382
|
+
userMessage.parts.push(part)
|
|
383
|
+
return input.messages
|
|
384
|
+
})
|
|
385
|
+
|
|
386
|
+
const resolveTools = Effect.fn("SessionPrompt.resolveTools")(function* (input: {
|
|
387
|
+
agent: Agent.Info
|
|
388
|
+
model: Provider.Model
|
|
389
|
+
session: Session.Info
|
|
390
|
+
tools?: Record<string, boolean>
|
|
391
|
+
processor: Pick<SessionProcessor.Handle, "message" | "partFromToolCall">
|
|
392
|
+
bypassAgentCheck: boolean
|
|
393
|
+
messages: MessageV2.WithParts[]
|
|
394
|
+
}) {
|
|
395
|
+
using _ = log.time("resolveTools")
|
|
396
|
+
const tools: Record<string, AITool> = {}
|
|
397
|
+
|
|
398
|
+
const context = (args: any, options: ToolExecutionOptions): Tool.Context => ({
|
|
399
|
+
sessionID: input.session.id,
|
|
400
|
+
abort: options.abortSignal!,
|
|
401
|
+
messageID: input.processor.message.id,
|
|
402
|
+
callID: options.toolCallId,
|
|
403
|
+
extra: { model: input.model, bypassAgentCheck: input.bypassAgentCheck },
|
|
404
|
+
agent: input.agent.name,
|
|
405
|
+
messages: input.messages,
|
|
406
|
+
metadata: (val) =>
|
|
407
|
+
Effect.runPromise(
|
|
408
|
+
Effect.gen(function* () {
|
|
409
|
+
const match = input.processor.partFromToolCall(options.toolCallId)
|
|
410
|
+
if (!match || !["running", "pending"].includes(match.state.status)) return
|
|
411
|
+
yield* sessions.updatePart({
|
|
412
|
+
...match,
|
|
413
|
+
state: {
|
|
414
|
+
title: val.title,
|
|
415
|
+
metadata: val.metadata,
|
|
416
|
+
status: "running",
|
|
417
|
+
input: args,
|
|
418
|
+
time: { start: Date.now() },
|
|
419
|
+
},
|
|
420
|
+
})
|
|
421
|
+
}),
|
|
422
|
+
),
|
|
423
|
+
ask: (req) =>
|
|
424
|
+
Effect.runPromise(
|
|
425
|
+
permission.ask({
|
|
426
|
+
...req,
|
|
427
|
+
sessionID: input.session.id,
|
|
428
|
+
tool: { messageID: input.processor.message.id, callID: options.toolCallId },
|
|
429
|
+
ruleset: Permission.merge(input.agent.permission, input.session.permission ?? []),
|
|
430
|
+
}),
|
|
431
|
+
),
|
|
432
|
+
})
|
|
433
|
+
|
|
434
|
+
for (const item of yield* registry.tools({
|
|
435
|
+
modelID: ModelID.make(input.model.api.id),
|
|
436
|
+
providerID: input.model.providerID,
|
|
437
|
+
agent: input.agent,
|
|
438
|
+
})) {
|
|
439
|
+
const schema = ProviderTransform.schema(input.model, z.toJSONSchema(item.parameters))
|
|
440
|
+
tools[item.id] = tool({
|
|
441
|
+
id: item.id as any,
|
|
442
|
+
description: item.description,
|
|
443
|
+
inputSchema: jsonSchema(schema as any),
|
|
444
|
+
execute(args, options) {
|
|
445
|
+
return Effect.runPromise(
|
|
446
|
+
Effect.gen(function* () {
|
|
447
|
+
const ctx = context(args, options)
|
|
448
|
+
yield* plugin.trigger(
|
|
449
|
+
"tool.execute.before",
|
|
450
|
+
{ tool: item.id, sessionID: ctx.sessionID, callID: ctx.callID },
|
|
451
|
+
{ args },
|
|
452
|
+
)
|
|
453
|
+
const result = yield* Effect.promise(() => item.execute(args, ctx))
|
|
454
|
+
const output = {
|
|
455
|
+
...result,
|
|
456
|
+
attachments: result.attachments?.map((attachment) => ({
|
|
457
|
+
...attachment,
|
|
458
|
+
id: PartID.ascending(),
|
|
459
|
+
sessionID: ctx.sessionID,
|
|
460
|
+
messageID: input.processor.message.id,
|
|
461
|
+
})),
|
|
462
|
+
}
|
|
463
|
+
yield* plugin.trigger(
|
|
464
|
+
"tool.execute.after",
|
|
465
|
+
{ tool: item.id, sessionID: ctx.sessionID, callID: ctx.callID, args },
|
|
466
|
+
output,
|
|
467
|
+
)
|
|
468
|
+
return output
|
|
469
|
+
}),
|
|
470
|
+
)
|
|
471
|
+
},
|
|
472
|
+
})
|
|
473
|
+
}
|
|
474
|
+
|
|
475
|
+
for (const [key, item] of Object.entries(yield* mcp.tools())) {
|
|
476
|
+
const execute = item.execute
|
|
477
|
+
if (!execute) continue
|
|
478
|
+
|
|
479
|
+
const schema = yield* Effect.promise(() => Promise.resolve(asSchema(item.inputSchema).jsonSchema))
|
|
480
|
+
const transformed = ProviderTransform.schema(input.model, schema)
|
|
481
|
+
item.inputSchema = jsonSchema(transformed)
|
|
482
|
+
item.execute = (args, opts) =>
|
|
483
|
+
Effect.runPromise(
|
|
484
|
+
Effect.gen(function* () {
|
|
485
|
+
const ctx = context(args, opts)
|
|
486
|
+
yield* plugin.trigger(
|
|
487
|
+
"tool.execute.before",
|
|
488
|
+
{ tool: key, sessionID: ctx.sessionID, callID: opts.toolCallId },
|
|
489
|
+
{ args },
|
|
490
|
+
)
|
|
491
|
+
yield* Effect.promise(() => ctx.ask({ permission: key, metadata: {}, patterns: ["*"], always: ["*"] }))
|
|
492
|
+
const result: Awaited<ReturnType<NonNullable<typeof execute>>> = yield* Effect.promise(() =>
|
|
493
|
+
execute(args, opts),
|
|
494
|
+
)
|
|
495
|
+
yield* plugin.trigger(
|
|
496
|
+
"tool.execute.after",
|
|
497
|
+
{ tool: key, sessionID: ctx.sessionID, callID: opts.toolCallId, args },
|
|
498
|
+
result,
|
|
499
|
+
)
|
|
500
|
+
|
|
501
|
+
const textParts: string[] = []
|
|
502
|
+
const attachments: Omit<MessageV2.FilePart, "id" | "sessionID" | "messageID">[] = []
|
|
503
|
+
for (const contentItem of result.content) {
|
|
504
|
+
if (contentItem.type === "text") textParts.push(contentItem.text)
|
|
505
|
+
else if (contentItem.type === "image") {
|
|
506
|
+
attachments.push({
|
|
507
|
+
type: "file",
|
|
508
|
+
mime: contentItem.mimeType,
|
|
509
|
+
url: `data:${contentItem.mimeType};base64,${contentItem.data}`,
|
|
510
|
+
})
|
|
511
|
+
} else if (contentItem.type === "resource") {
|
|
512
|
+
const { resource } = contentItem
|
|
513
|
+
if (resource.text) textParts.push(resource.text)
|
|
514
|
+
if (resource.blob) {
|
|
515
|
+
attachments.push({
|
|
516
|
+
type: "file",
|
|
517
|
+
mime: resource.mimeType ?? "application/octet-stream",
|
|
518
|
+
url: `data:${resource.mimeType ?? "application/octet-stream"};base64,${resource.blob}`,
|
|
519
|
+
filename: resource.uri,
|
|
520
|
+
})
|
|
521
|
+
}
|
|
522
|
+
}
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
const truncated = yield* truncate.output(textParts.join("\n\n"), {}, input.agent)
|
|
526
|
+
const metadata = {
|
|
527
|
+
...(result.metadata ?? {}),
|
|
528
|
+
truncated: truncated.truncated,
|
|
529
|
+
...(truncated.truncated && { outputPath: truncated.outputPath }),
|
|
530
|
+
}
|
|
531
|
+
|
|
532
|
+
return {
|
|
533
|
+
title: "",
|
|
534
|
+
metadata,
|
|
535
|
+
output: truncated.content,
|
|
536
|
+
attachments: attachments.map((attachment) => ({
|
|
537
|
+
...attachment,
|
|
538
|
+
id: PartID.ascending(),
|
|
539
|
+
sessionID: ctx.sessionID,
|
|
540
|
+
messageID: input.processor.message.id,
|
|
541
|
+
})),
|
|
542
|
+
content: result.content,
|
|
543
|
+
}
|
|
544
|
+
}),
|
|
545
|
+
)
|
|
546
|
+
tools[key] = item
|
|
547
|
+
}
|
|
548
|
+
|
|
549
|
+
return tools
|
|
550
|
+
})
|
|
551
|
+
|
|
552
|
+
const handleSubtask = Effect.fn("SessionPrompt.handleSubtask")(function* (input: {
|
|
553
|
+
task: MessageV2.SubtaskPart
|
|
554
|
+
model: Provider.Model
|
|
555
|
+
lastUser: MessageV2.User
|
|
556
|
+
sessionID: SessionID
|
|
557
|
+
session: Session.Info
|
|
558
|
+
msgs: MessageV2.WithParts[]
|
|
559
|
+
}) {
|
|
560
|
+
const { task, model, lastUser, sessionID, session, msgs } = input
|
|
561
|
+
const ctx = yield* InstanceState.context
|
|
562
|
+
const { task: taskTool } = yield* registry.named()
|
|
563
|
+
const taskModel = task.model ? yield* getModel(task.model.providerID, task.model.modelID, sessionID) : model
|
|
564
|
+
const assistantMessage: MessageV2.Assistant = yield* sessions.updateMessage({
|
|
565
|
+
id: MessageID.ascending(),
|
|
566
|
+
role: "assistant",
|
|
567
|
+
parentID: lastUser.id,
|
|
568
|
+
sessionID,
|
|
569
|
+
mode: task.agent,
|
|
570
|
+
agent: task.agent,
|
|
571
|
+
variant: lastUser.model.variant,
|
|
572
|
+
path: { cwd: ctx.directory, root: ctx.worktree },
|
|
573
|
+
cost: 0,
|
|
574
|
+
tokens: { input: 0, output: 0, reasoning: 0, cache: { read: 0, write: 0 } },
|
|
575
|
+
modelID: taskModel.id,
|
|
576
|
+
providerID: taskModel.providerID,
|
|
577
|
+
time: { created: Date.now() },
|
|
578
|
+
})
|
|
579
|
+
let part: MessageV2.ToolPart = yield* sessions.updatePart({
|
|
580
|
+
id: PartID.ascending(),
|
|
581
|
+
messageID: assistantMessage.id,
|
|
582
|
+
sessionID: assistantMessage.sessionID,
|
|
583
|
+
type: "tool",
|
|
584
|
+
callID: ulid(),
|
|
585
|
+
tool: TaskTool.id,
|
|
586
|
+
state: {
|
|
587
|
+
status: "running",
|
|
588
|
+
input: {
|
|
589
|
+
prompt: task.prompt,
|
|
590
|
+
description: task.description,
|
|
591
|
+
subagent_type: task.agent,
|
|
592
|
+
command: task.command,
|
|
593
|
+
},
|
|
594
|
+
time: { start: Date.now() },
|
|
595
|
+
},
|
|
596
|
+
})
|
|
597
|
+
const taskArgs = {
|
|
598
|
+
prompt: task.prompt,
|
|
599
|
+
description: task.description,
|
|
600
|
+
subagent_type: task.agent,
|
|
601
|
+
command: task.command,
|
|
602
|
+
}
|
|
603
|
+
yield* plugin.trigger(
|
|
604
|
+
"tool.execute.before",
|
|
605
|
+
{ tool: TaskTool.id, sessionID, callID: part.id },
|
|
606
|
+
{ args: taskArgs },
|
|
607
|
+
)
|
|
608
|
+
|
|
609
|
+
const taskAgent = yield* agents.get(task.agent)
|
|
610
|
+
if (!taskAgent) {
|
|
611
|
+
const available = (yield* agents.list()).filter((a) => !a.hidden).map((a) => a.name)
|
|
612
|
+
const hint = available.length ? ` Available agents: ${available.join(", ")}` : ""
|
|
613
|
+
const error = new NamedError.Unknown({ message: `Agent not found: "${task.agent}".${hint}` })
|
|
614
|
+
yield* bus.publish(Session.Event.Error, { sessionID, error: error.toObject() })
|
|
615
|
+
throw error
|
|
616
|
+
}
|
|
617
|
+
|
|
618
|
+
let error: Error | undefined
|
|
619
|
+
const result = yield* Effect.promise((signal) =>
|
|
620
|
+
taskTool
|
|
621
|
+
.execute(taskArgs, {
|
|
622
|
+
agent: task.agent,
|
|
623
|
+
messageID: assistantMessage.id,
|
|
624
|
+
sessionID,
|
|
625
|
+
abort: signal,
|
|
626
|
+
callID: part.callID,
|
|
627
|
+
extra: { bypassAgentCheck: true },
|
|
628
|
+
messages: msgs,
|
|
629
|
+
metadata(val: { title?: string; metadata?: Record<string, any> }) {
|
|
630
|
+
return Effect.runPromise(
|
|
631
|
+
Effect.gen(function* () {
|
|
632
|
+
part = yield* sessions.updatePart({
|
|
633
|
+
...part,
|
|
634
|
+
type: "tool",
|
|
635
|
+
state: { ...part.state, ...val },
|
|
636
|
+
} satisfies MessageV2.ToolPart)
|
|
637
|
+
}),
|
|
638
|
+
)
|
|
639
|
+
},
|
|
640
|
+
ask(req: any) {
|
|
641
|
+
return Effect.runPromise(
|
|
642
|
+
permission.ask({
|
|
643
|
+
...req,
|
|
644
|
+
sessionID,
|
|
645
|
+
ruleset: Permission.merge(taskAgent.permission, session.permission ?? []),
|
|
646
|
+
}),
|
|
647
|
+
)
|
|
648
|
+
},
|
|
649
|
+
})
|
|
650
|
+
.catch((e) => {
|
|
651
|
+
error = e instanceof Error ? e : new Error(String(e))
|
|
652
|
+
log.error("subtask execution failed", { error, agent: task.agent, description: task.description })
|
|
653
|
+
return undefined
|
|
654
|
+
}),
|
|
655
|
+
).pipe(
|
|
656
|
+
Effect.onInterrupt(() =>
|
|
657
|
+
Effect.gen(function* () {
|
|
658
|
+
assistantMessage.finish = "tool-calls"
|
|
659
|
+
assistantMessage.time.completed = Date.now()
|
|
660
|
+
yield* sessions.updateMessage(assistantMessage)
|
|
661
|
+
if (part.state.status === "running") {
|
|
662
|
+
yield* sessions.updatePart({
|
|
663
|
+
...part,
|
|
664
|
+
state: {
|
|
665
|
+
status: "error",
|
|
666
|
+
error: "Cancelled",
|
|
667
|
+
time: { start: part.state.time.start, end: Date.now() },
|
|
668
|
+
metadata: part.state.metadata,
|
|
669
|
+
input: part.state.input,
|
|
670
|
+
},
|
|
671
|
+
} satisfies MessageV2.ToolPart)
|
|
672
|
+
}
|
|
673
|
+
}),
|
|
674
|
+
),
|
|
675
|
+
)
|
|
676
|
+
|
|
677
|
+
const attachments = result?.attachments?.map((attachment) => ({
|
|
678
|
+
...attachment,
|
|
679
|
+
id: PartID.ascending(),
|
|
680
|
+
sessionID,
|
|
681
|
+
messageID: assistantMessage.id,
|
|
682
|
+
}))
|
|
683
|
+
|
|
684
|
+
yield* plugin.trigger(
|
|
685
|
+
"tool.execute.after",
|
|
686
|
+
{ tool: TaskTool.id, sessionID, callID: part.id, args: taskArgs },
|
|
687
|
+
result,
|
|
688
|
+
)
|
|
689
|
+
|
|
690
|
+
assistantMessage.finish = "tool-calls"
|
|
691
|
+
assistantMessage.time.completed = Date.now()
|
|
692
|
+
yield* sessions.updateMessage(assistantMessage)
|
|
693
|
+
|
|
694
|
+
if (result && part.state.status === "running") {
|
|
695
|
+
yield* sessions.updatePart({
|
|
696
|
+
...part,
|
|
697
|
+
state: {
|
|
698
|
+
status: "completed",
|
|
699
|
+
input: part.state.input,
|
|
700
|
+
title: result.title,
|
|
701
|
+
metadata: result.metadata,
|
|
702
|
+
output: result.output,
|
|
703
|
+
attachments,
|
|
704
|
+
time: { ...part.state.time, end: Date.now() },
|
|
705
|
+
},
|
|
706
|
+
} satisfies MessageV2.ToolPart)
|
|
707
|
+
}
|
|
708
|
+
|
|
709
|
+
if (!result) {
|
|
710
|
+
yield* sessions.updatePart({
|
|
711
|
+
...part,
|
|
712
|
+
state: {
|
|
713
|
+
status: "error",
|
|
714
|
+
error: error ? `Tool execution failed: ${error.message}` : "Tool execution failed",
|
|
715
|
+
time: {
|
|
716
|
+
start: part.state.status === "running" ? part.state.time.start : Date.now(),
|
|
717
|
+
end: Date.now(),
|
|
718
|
+
},
|
|
719
|
+
metadata: part.state.status === "pending" ? undefined : part.state.metadata,
|
|
720
|
+
input: part.state.input,
|
|
721
|
+
},
|
|
722
|
+
} satisfies MessageV2.ToolPart)
|
|
723
|
+
}
|
|
724
|
+
|
|
725
|
+
if (!task.command) return
|
|
726
|
+
|
|
727
|
+
const summaryUserMsg: MessageV2.User = {
|
|
728
|
+
id: MessageID.ascending(),
|
|
729
|
+
sessionID,
|
|
730
|
+
role: "user",
|
|
731
|
+
time: { created: Date.now() },
|
|
732
|
+
agent: lastUser.agent,
|
|
733
|
+
model: lastUser.model,
|
|
734
|
+
}
|
|
735
|
+
yield* sessions.updateMessage(summaryUserMsg)
|
|
736
|
+
yield* sessions.updatePart({
|
|
737
|
+
id: PartID.ascending(),
|
|
738
|
+
messageID: summaryUserMsg.id,
|
|
739
|
+
sessionID,
|
|
740
|
+
type: "text",
|
|
741
|
+
text: "Summarize the task tool output above and continue with your task.",
|
|
742
|
+
synthetic: true,
|
|
743
|
+
} satisfies MessageV2.TextPart)
|
|
744
|
+
})
|
|
745
|
+
|
|
746
|
+
const shellImpl = Effect.fn("SessionPrompt.shellImpl")(function* (input: ShellInput, signal: AbortSignal) {
|
|
747
|
+
const ctx = yield* InstanceState.context
|
|
748
|
+
const session = yield* sessions.get(input.sessionID)
|
|
749
|
+
if (session.revert) {
|
|
750
|
+
yield* Effect.promise(() => SessionRevert.cleanup(session))
|
|
751
|
+
}
|
|
752
|
+
const agent = yield* agents.get(input.agent)
|
|
753
|
+
if (!agent) {
|
|
754
|
+
const available = (yield* agents.list()).filter((a) => !a.hidden).map((a) => a.name)
|
|
755
|
+
const hint = available.length ? ` Available agents: ${available.join(", ")}` : ""
|
|
756
|
+
const error = new NamedError.Unknown({ message: `Agent not found: "${input.agent}".${hint}` })
|
|
757
|
+
yield* bus.publish(Session.Event.Error, { sessionID: input.sessionID, error: error.toObject() })
|
|
758
|
+
throw error
|
|
759
|
+
}
|
|
760
|
+
const model = input.model ?? agent.model ?? (yield* lastModel(input.sessionID))
|
|
761
|
+
const userMsg: MessageV2.User = {
|
|
762
|
+
id: input.messageID ?? MessageID.ascending(),
|
|
763
|
+
sessionID: input.sessionID,
|
|
764
|
+
time: { created: Date.now() },
|
|
765
|
+
role: "user",
|
|
766
|
+
agent: input.agent,
|
|
767
|
+
model: { providerID: model.providerID, modelID: model.modelID },
|
|
768
|
+
}
|
|
769
|
+
yield* sessions.updateMessage(userMsg)
|
|
770
|
+
const userPart: MessageV2.Part = {
|
|
771
|
+
type: "text",
|
|
772
|
+
id: PartID.ascending(),
|
|
773
|
+
messageID: userMsg.id,
|
|
774
|
+
sessionID: input.sessionID,
|
|
775
|
+
text: "The following tool was executed by the user",
|
|
776
|
+
synthetic: true,
|
|
777
|
+
}
|
|
778
|
+
yield* sessions.updatePart(userPart)
|
|
779
|
+
|
|
780
|
+
const msg: MessageV2.Assistant = {
|
|
781
|
+
id: MessageID.ascending(),
|
|
782
|
+
sessionID: input.sessionID,
|
|
783
|
+
parentID: userMsg.id,
|
|
784
|
+
mode: input.agent,
|
|
785
|
+
agent: input.agent,
|
|
786
|
+
cost: 0,
|
|
787
|
+
path: { cwd: ctx.directory, root: ctx.worktree },
|
|
788
|
+
time: { created: Date.now() },
|
|
789
|
+
role: "assistant",
|
|
790
|
+
tokens: { input: 0, output: 0, reasoning: 0, cache: { read: 0, write: 0 } },
|
|
791
|
+
modelID: model.modelID,
|
|
792
|
+
providerID: model.providerID,
|
|
793
|
+
}
|
|
794
|
+
yield* sessions.updateMessage(msg)
|
|
795
|
+
const part: MessageV2.ToolPart = {
|
|
796
|
+
type: "tool",
|
|
797
|
+
id: PartID.ascending(),
|
|
798
|
+
messageID: msg.id,
|
|
799
|
+
sessionID: input.sessionID,
|
|
800
|
+
tool: "bash",
|
|
801
|
+
callID: ulid(),
|
|
802
|
+
state: {
|
|
803
|
+
status: "running",
|
|
804
|
+
time: { start: Date.now() },
|
|
805
|
+
input: { command: input.command },
|
|
806
|
+
},
|
|
807
|
+
}
|
|
808
|
+
yield* sessions.updatePart(part)
|
|
809
|
+
|
|
810
|
+
const sh = Shell.preferred()
|
|
811
|
+
const shellName = (
|
|
812
|
+
process.platform === "win32" ? path.win32.basename(sh, ".exe") : path.basename(sh)
|
|
813
|
+
).toLowerCase()
|
|
814
|
+
const invocations: Record<string, { args: string[] }> = {
|
|
815
|
+
nu: { args: ["-c", input.command] },
|
|
816
|
+
fish: { args: ["-c", input.command] },
|
|
817
|
+
zsh: {
|
|
818
|
+
args: [
|
|
819
|
+
"-l",
|
|
820
|
+
"-c",
|
|
821
|
+
`
|
|
822
|
+
__oc_cwd=$PWD
|
|
823
|
+
[[ -f ~/.zshenv ]] && source ~/.zshenv >/dev/null 2>&1 || true
|
|
824
|
+
[[ -f "\${ZDOTDIR:-$HOME}/.zshrc" ]] && source "\${ZDOTDIR:-$HOME}/.zshrc" >/dev/null 2>&1 || true
|
|
825
|
+
cd "$__oc_cwd"
|
|
826
|
+
eval ${JSON.stringify(input.command)}
|
|
827
|
+
`,
|
|
828
|
+
],
|
|
829
|
+
},
|
|
830
|
+
bash: {
|
|
831
|
+
args: [
|
|
832
|
+
"-l",
|
|
833
|
+
"-c",
|
|
834
|
+
`
|
|
835
|
+
__oc_cwd=$PWD
|
|
836
|
+
shopt -s expand_aliases
|
|
837
|
+
[[ -f ~/.bashrc ]] && source ~/.bashrc >/dev/null 2>&1 || true
|
|
838
|
+
cd "$__oc_cwd"
|
|
839
|
+
eval ${JSON.stringify(input.command)}
|
|
840
|
+
`,
|
|
841
|
+
],
|
|
842
|
+
},
|
|
843
|
+
cmd: { args: ["/c", input.command] },
|
|
844
|
+
powershell: { args: ["-NoProfile", "-Command", input.command] },
|
|
845
|
+
pwsh: { args: ["-NoProfile", "-Command", input.command] },
|
|
846
|
+
"": { args: ["-c", input.command] },
|
|
847
|
+
}
|
|
848
|
+
|
|
849
|
+
const args = (invocations[shellName] ?? invocations[""]).args
|
|
850
|
+
const cwd = ctx.directory
|
|
851
|
+
const shellEnv = yield* plugin.trigger(
|
|
852
|
+
"shell.env",
|
|
853
|
+
{ cwd, sessionID: input.sessionID, callID: part.callID },
|
|
854
|
+
{ env: {} },
|
|
855
|
+
)
|
|
856
|
+
|
|
857
|
+
const cmd = ChildProcess.make(sh, args, {
|
|
858
|
+
cwd,
|
|
859
|
+
extendEnv: true,
|
|
860
|
+
env: { ...shellEnv.env, TERM: "dumb" },
|
|
861
|
+
stdin: "ignore",
|
|
862
|
+
forceKillAfter: "3 seconds",
|
|
863
|
+
})
|
|
864
|
+
|
|
865
|
+
let output = ""
|
|
866
|
+
let aborted = false
|
|
867
|
+
|
|
868
|
+
const finish = Effect.uninterruptible(
|
|
869
|
+
Effect.gen(function* () {
|
|
870
|
+
if (aborted) {
|
|
871
|
+
output += "\n\n" + ["<metadata>", "User aborted the command", "</metadata>"].join("\n")
|
|
872
|
+
}
|
|
873
|
+
if (!msg.time.completed) {
|
|
874
|
+
msg.time.completed = Date.now()
|
|
875
|
+
yield* sessions.updateMessage(msg)
|
|
876
|
+
}
|
|
877
|
+
if (part.state.status === "running") {
|
|
878
|
+
part.state = {
|
|
879
|
+
status: "completed",
|
|
880
|
+
time: { ...part.state.time, end: Date.now() },
|
|
881
|
+
input: part.state.input,
|
|
882
|
+
title: "",
|
|
883
|
+
metadata: { output, description: "" },
|
|
884
|
+
output,
|
|
885
|
+
}
|
|
886
|
+
yield* sessions.updatePart(part)
|
|
887
|
+
}
|
|
888
|
+
}),
|
|
889
|
+
)
|
|
890
|
+
|
|
891
|
+
const exit = yield* Effect.gen(function* () {
|
|
892
|
+
const handle = yield* spawner.spawn(cmd)
|
|
893
|
+
yield* Stream.runForEach(Stream.decodeText(handle.all), (chunk) =>
|
|
894
|
+
Effect.sync(() => {
|
|
895
|
+
output += chunk
|
|
896
|
+
if (part.state.status === "running") {
|
|
897
|
+
part.state.metadata = { output, description: "" }
|
|
898
|
+
void Effect.runFork(sessions.updatePart(part))
|
|
899
|
+
}
|
|
900
|
+
}),
|
|
901
|
+
)
|
|
902
|
+
yield* handle.exitCode
|
|
903
|
+
}).pipe(
|
|
904
|
+
Effect.scoped,
|
|
905
|
+
Effect.onInterrupt(() =>
|
|
906
|
+
Effect.sync(() => {
|
|
907
|
+
aborted = true
|
|
908
|
+
}),
|
|
909
|
+
),
|
|
910
|
+
Effect.orDie,
|
|
911
|
+
Effect.ensuring(finish),
|
|
912
|
+
Effect.exit,
|
|
913
|
+
)
|
|
914
|
+
|
|
915
|
+
if (Exit.isFailure(exit) && !Cause.hasInterruptsOnly(exit.cause)) {
|
|
916
|
+
return yield* Effect.failCause(exit.cause)
|
|
917
|
+
}
|
|
918
|
+
|
|
919
|
+
return { info: msg, parts: [part] }
|
|
920
|
+
})
|
|
921
|
+
|
|
922
|
+
const getModel = Effect.fn("SessionPrompt.getModel")(function* (
|
|
923
|
+
providerID: ProviderID,
|
|
924
|
+
modelID: ModelID,
|
|
925
|
+
sessionID: SessionID,
|
|
926
|
+
) {
|
|
927
|
+
const exit = yield* provider.getModel(providerID, modelID).pipe(Effect.exit)
|
|
928
|
+
if (Exit.isSuccess(exit)) return exit.value
|
|
929
|
+
const err = Cause.squash(exit.cause)
|
|
930
|
+
if (Provider.ModelNotFoundError.isInstance(err)) {
|
|
931
|
+
const hint = err.data.suggestions?.length ? ` Did you mean: ${err.data.suggestions.join(", ")}?` : ""
|
|
932
|
+
yield* bus.publish(Session.Event.Error, {
|
|
933
|
+
sessionID,
|
|
934
|
+
error: new NamedError.Unknown({
|
|
935
|
+
message: `Model not found: ${err.data.providerID}/${err.data.modelID}.${hint}`,
|
|
936
|
+
}).toObject(),
|
|
937
|
+
})
|
|
938
|
+
}
|
|
939
|
+
return yield* Effect.failCause(exit.cause)
|
|
940
|
+
})
|
|
941
|
+
|
|
942
|
+
const lastModel = Effect.fnUntraced(function* (sessionID: SessionID) {
|
|
943
|
+
const model = yield* Effect.promise(async () => {
|
|
944
|
+
for await (const item of MessageV2.stream(sessionID)) {
|
|
945
|
+
if (item.info.role === "user" && item.info.model) return item.info.model
|
|
946
|
+
}
|
|
947
|
+
})
|
|
948
|
+
if (model) return model
|
|
949
|
+
return yield* provider.defaultModel()
|
|
950
|
+
})
|
|
951
|
+
|
|
952
|
+
const createUserMessage = Effect.fn("SessionPrompt.createUserMessage")(function* (input: PromptInput) {
|
|
953
|
+
const agentName = input.agent || (yield* agents.defaultAgent())
|
|
954
|
+
const ag = yield* agents.get(agentName)
|
|
955
|
+
if (!ag) {
|
|
956
|
+
const available = (yield* agents.list()).filter((a) => !a.hidden).map((a) => a.name)
|
|
957
|
+
const hint = available.length ? ` Available agents: ${available.join(", ")}` : ""
|
|
958
|
+
const error = new NamedError.Unknown({ message: `Agent not found: "${agentName}".${hint}` })
|
|
959
|
+
yield* bus.publish(Session.Event.Error, { sessionID: input.sessionID, error: error.toObject() })
|
|
960
|
+
throw error
|
|
961
|
+
}
|
|
962
|
+
|
|
963
|
+
const model = input.model ?? ag.model ?? (yield* lastModel(input.sessionID))
|
|
964
|
+
const same = ag.model && model.providerID === ag.model.providerID && model.modelID === ag.model.modelID
|
|
965
|
+
const full =
|
|
966
|
+
!input.variant && ag.variant && same
|
|
967
|
+
? yield* provider.getModel(model.providerID, model.modelID).pipe(Effect.catchDefect(() => Effect.void))
|
|
968
|
+
: undefined
|
|
969
|
+
const variant = input.variant ?? (ag.variant && full?.variants?.[ag.variant] ? ag.variant : undefined)
|
|
970
|
+
|
|
971
|
+
const info: MessageV2.User = {
|
|
972
|
+
id: input.messageID ?? MessageID.ascending(),
|
|
973
|
+
role: "user",
|
|
974
|
+
sessionID: input.sessionID,
|
|
975
|
+
time: { created: Date.now() },
|
|
976
|
+
tools: input.tools,
|
|
977
|
+
agent: ag.name,
|
|
978
|
+
model: {
|
|
979
|
+
providerID: model.providerID,
|
|
980
|
+
modelID: model.modelID,
|
|
981
|
+
variant,
|
|
982
|
+
},
|
|
983
|
+
system: input.system,
|
|
984
|
+
format: input.format,
|
|
985
|
+
}
|
|
986
|
+
|
|
987
|
+
yield* Effect.addFinalizer(() => instruction.clear(info.id))
|
|
988
|
+
|
|
989
|
+
type Draft<T> = T extends MessageV2.Part ? Omit<T, "id"> & { id?: string } : never
|
|
990
|
+
const assign = (part: Draft<MessageV2.Part>): MessageV2.Part => ({
|
|
991
|
+
...part,
|
|
992
|
+
id: part.id ? PartID.make(part.id) : PartID.ascending(),
|
|
993
|
+
})
|
|
994
|
+
|
|
995
|
+
const resolvePart: (part: PromptInput["parts"][number]) => Effect.Effect<Draft<MessageV2.Part>[]> = Effect.fn(
|
|
996
|
+
"SessionPrompt.resolveUserPart",
|
|
997
|
+
)(function* (part) {
|
|
998
|
+
if (part.type === "file") {
|
|
999
|
+
if (part.source?.type === "resource") {
|
|
1000
|
+
const { clientName, uri } = part.source
|
|
1001
|
+
log.info("mcp resource", { clientName, uri, mime: part.mime })
|
|
1002
|
+
const pieces: Draft<MessageV2.Part>[] = [
|
|
1003
|
+
{
|
|
1004
|
+
messageID: info.id,
|
|
1005
|
+
sessionID: input.sessionID,
|
|
1006
|
+
type: "text",
|
|
1007
|
+
synthetic: true,
|
|
1008
|
+
text: `Reading MCP resource: ${part.filename} (${uri})`,
|
|
1009
|
+
},
|
|
1010
|
+
]
|
|
1011
|
+
const exit = yield* mcp.readResource(clientName, uri).pipe(Effect.exit)
|
|
1012
|
+
if (Exit.isSuccess(exit)) {
|
|
1013
|
+
const content = exit.value
|
|
1014
|
+
if (!content) throw new Error(`Resource not found: ${clientName}/${uri}`)
|
|
1015
|
+
const items = Array.isArray(content.contents) ? content.contents : [content.contents]
|
|
1016
|
+
for (const c of items) {
|
|
1017
|
+
if ("text" in c && c.text) {
|
|
1018
|
+
pieces.push({
|
|
1019
|
+
messageID: info.id,
|
|
1020
|
+
sessionID: input.sessionID,
|
|
1021
|
+
type: "text",
|
|
1022
|
+
synthetic: true,
|
|
1023
|
+
text: c.text,
|
|
1024
|
+
})
|
|
1025
|
+
} else if ("blob" in c && c.blob) {
|
|
1026
|
+
const mime = "mimeType" in c ? c.mimeType : part.mime
|
|
1027
|
+
pieces.push({
|
|
1028
|
+
messageID: info.id,
|
|
1029
|
+
sessionID: input.sessionID,
|
|
1030
|
+
type: "text",
|
|
1031
|
+
synthetic: true,
|
|
1032
|
+
text: `[Binary content: ${mime}]`,
|
|
1033
|
+
})
|
|
1034
|
+
}
|
|
1035
|
+
}
|
|
1036
|
+
pieces.push({ ...part, messageID: info.id, sessionID: input.sessionID })
|
|
1037
|
+
} else {
|
|
1038
|
+
const error = Cause.squash(exit.cause)
|
|
1039
|
+
log.error("failed to read MCP resource", { error, clientName, uri })
|
|
1040
|
+
const message = error instanceof Error ? error.message : String(error)
|
|
1041
|
+
pieces.push({
|
|
1042
|
+
messageID: info.id,
|
|
1043
|
+
sessionID: input.sessionID,
|
|
1044
|
+
type: "text",
|
|
1045
|
+
synthetic: true,
|
|
1046
|
+
text: `Failed to read MCP resource ${part.filename}: ${message}`,
|
|
1047
|
+
})
|
|
1048
|
+
}
|
|
1049
|
+
return pieces
|
|
1050
|
+
}
|
|
1051
|
+
const url = new URL(part.url)
|
|
1052
|
+
switch (url.protocol) {
|
|
1053
|
+
case "data:":
|
|
1054
|
+
if (part.mime === "text/plain") {
|
|
1055
|
+
return [
|
|
1056
|
+
{
|
|
1057
|
+
messageID: info.id,
|
|
1058
|
+
sessionID: input.sessionID,
|
|
1059
|
+
type: "text",
|
|
1060
|
+
synthetic: true,
|
|
1061
|
+
text: `Called the Read tool with the following input: ${JSON.stringify({ filePath: part.filename })}`,
|
|
1062
|
+
},
|
|
1063
|
+
{
|
|
1064
|
+
messageID: info.id,
|
|
1065
|
+
sessionID: input.sessionID,
|
|
1066
|
+
type: "text",
|
|
1067
|
+
synthetic: true,
|
|
1068
|
+
text: decodeDataUrl(part.url),
|
|
1069
|
+
},
|
|
1070
|
+
{ ...part, messageID: info.id, sessionID: input.sessionID },
|
|
1071
|
+
]
|
|
1072
|
+
}
|
|
1073
|
+
break
|
|
1074
|
+
case "file:": {
|
|
1075
|
+
log.info("file", { mime: part.mime })
|
|
1076
|
+
const filepath = fileURLToPath(part.url)
|
|
1077
|
+
if (yield* fsys.isDir(filepath)) part.mime = "application/x-directory"
|
|
1078
|
+
|
|
1079
|
+
const { read } = yield* registry.named()
|
|
1080
|
+
const execRead = (args: Parameters<typeof read.execute>[0], extra?: Tool.Context["extra"]) =>
|
|
1081
|
+
Effect.promise((signal: AbortSignal) =>
|
|
1082
|
+
read.execute(args, {
|
|
1083
|
+
sessionID: input.sessionID,
|
|
1084
|
+
abort: signal,
|
|
1085
|
+
agent: input.agent!,
|
|
1086
|
+
messageID: info.id,
|
|
1087
|
+
extra: { bypassCwdCheck: true, ...extra },
|
|
1088
|
+
messages: [],
|
|
1089
|
+
metadata: async () => { },
|
|
1090
|
+
ask: async () => { },
|
|
1091
|
+
}),
|
|
1092
|
+
)
|
|
1093
|
+
|
|
1094
|
+
if (part.mime === "text/plain") {
|
|
1095
|
+
let offset: number | undefined
|
|
1096
|
+
let limit: number | undefined
|
|
1097
|
+
const range = { start: url.searchParams.get("start"), end: url.searchParams.get("end") }
|
|
1098
|
+
if (range.start != null) {
|
|
1099
|
+
const filePathURI = part.url.split("?")[0]
|
|
1100
|
+
let start = parseInt(range.start)
|
|
1101
|
+
let end = range.end ? parseInt(range.end) : undefined
|
|
1102
|
+
if (start === end) {
|
|
1103
|
+
const symbols = yield* lsp
|
|
1104
|
+
.documentSymbol(filePathURI)
|
|
1105
|
+
.pipe(Effect.catch(() => Effect.succeed([])))
|
|
1106
|
+
for (const symbol of symbols) {
|
|
1107
|
+
let r: LSP.Range | undefined
|
|
1108
|
+
if ("range" in symbol) r = symbol.range
|
|
1109
|
+
else if ("location" in symbol) r = symbol.location.range
|
|
1110
|
+
if (r?.start?.line && r?.start?.line === start) {
|
|
1111
|
+
start = r.start.line
|
|
1112
|
+
end = r?.end?.line ?? start
|
|
1113
|
+
break
|
|
1114
|
+
}
|
|
1115
|
+
}
|
|
1116
|
+
}
|
|
1117
|
+
offset = Math.max(start, 1)
|
|
1118
|
+
if (end) limit = end - (offset - 1)
|
|
1119
|
+
}
|
|
1120
|
+
const args = { filePath: filepath, offset, limit }
|
|
1121
|
+
const pieces: Draft<MessageV2.Part>[] = [
|
|
1122
|
+
{
|
|
1123
|
+
messageID: info.id,
|
|
1124
|
+
sessionID: input.sessionID,
|
|
1125
|
+
type: "text",
|
|
1126
|
+
synthetic: true,
|
|
1127
|
+
text: `Called the Read tool with the following input: ${JSON.stringify(args)}`,
|
|
1128
|
+
},
|
|
1129
|
+
]
|
|
1130
|
+
const exit = yield* provider.getModel(info.model.providerID, info.model.modelID).pipe(
|
|
1131
|
+
Effect.flatMap((mdl) => execRead(args, { model: mdl })),
|
|
1132
|
+
Effect.exit,
|
|
1133
|
+
)
|
|
1134
|
+
if (Exit.isSuccess(exit)) {
|
|
1135
|
+
const result = exit.value
|
|
1136
|
+
pieces.push({
|
|
1137
|
+
messageID: info.id,
|
|
1138
|
+
sessionID: input.sessionID,
|
|
1139
|
+
type: "text",
|
|
1140
|
+
synthetic: true,
|
|
1141
|
+
text: result.output,
|
|
1142
|
+
})
|
|
1143
|
+
if (result.attachments?.length) {
|
|
1144
|
+
pieces.push(
|
|
1145
|
+
...result.attachments.map((a) => ({
|
|
1146
|
+
...a,
|
|
1147
|
+
synthetic: true,
|
|
1148
|
+
filename: a.filename ?? part.filename,
|
|
1149
|
+
messageID: info.id,
|
|
1150
|
+
sessionID: input.sessionID,
|
|
1151
|
+
})),
|
|
1152
|
+
)
|
|
1153
|
+
} else {
|
|
1154
|
+
pieces.push({ ...part, messageID: info.id, sessionID: input.sessionID })
|
|
1155
|
+
}
|
|
1156
|
+
} else {
|
|
1157
|
+
const error = Cause.squash(exit.cause)
|
|
1158
|
+
log.error("failed to read file", { error })
|
|
1159
|
+
const message = error instanceof Error ? error.message : String(error)
|
|
1160
|
+
yield* bus.publish(Session.Event.Error, {
|
|
1161
|
+
sessionID: input.sessionID,
|
|
1162
|
+
error: new NamedError.Unknown({ message }).toObject(),
|
|
1163
|
+
})
|
|
1164
|
+
pieces.push({
|
|
1165
|
+
messageID: info.id,
|
|
1166
|
+
sessionID: input.sessionID,
|
|
1167
|
+
type: "text",
|
|
1168
|
+
synthetic: true,
|
|
1169
|
+
text: `Read tool failed to read ${filepath} with the following error: ${message}`,
|
|
1170
|
+
})
|
|
1171
|
+
}
|
|
1172
|
+
return pieces
|
|
1173
|
+
}
|
|
1174
|
+
|
|
1175
|
+
if (part.mime === "application/x-directory") {
|
|
1176
|
+
const args = { filePath: filepath }
|
|
1177
|
+
const exit = yield* execRead(args).pipe(Effect.exit)
|
|
1178
|
+
if (Exit.isFailure(exit)) {
|
|
1179
|
+
const error = Cause.squash(exit.cause)
|
|
1180
|
+
log.error("failed to read directory", { error })
|
|
1181
|
+
const message = error instanceof Error ? error.message : String(error)
|
|
1182
|
+
yield* bus.publish(Session.Event.Error, {
|
|
1183
|
+
sessionID: input.sessionID,
|
|
1184
|
+
error: new NamedError.Unknown({ message }).toObject(),
|
|
1185
|
+
})
|
|
1186
|
+
return [
|
|
1187
|
+
{
|
|
1188
|
+
messageID: info.id,
|
|
1189
|
+
sessionID: input.sessionID,
|
|
1190
|
+
type: "text",
|
|
1191
|
+
synthetic: true,
|
|
1192
|
+
text: `Read tool failed to read ${filepath} with the following error: ${message}`,
|
|
1193
|
+
},
|
|
1194
|
+
]
|
|
1195
|
+
}
|
|
1196
|
+
return [
|
|
1197
|
+
{
|
|
1198
|
+
messageID: info.id,
|
|
1199
|
+
sessionID: input.sessionID,
|
|
1200
|
+
type: "text",
|
|
1201
|
+
synthetic: true,
|
|
1202
|
+
text: `Called the Read tool with the following input: ${JSON.stringify(args)}`,
|
|
1203
|
+
},
|
|
1204
|
+
{
|
|
1205
|
+
messageID: info.id,
|
|
1206
|
+
sessionID: input.sessionID,
|
|
1207
|
+
type: "text",
|
|
1208
|
+
synthetic: true,
|
|
1209
|
+
text: exit.value.output,
|
|
1210
|
+
},
|
|
1211
|
+
{ ...part, messageID: info.id, sessionID: input.sessionID },
|
|
1212
|
+
]
|
|
1213
|
+
}
|
|
1214
|
+
|
|
1215
|
+
yield* filetime.read(input.sessionID, filepath)
|
|
1216
|
+
return [
|
|
1217
|
+
{
|
|
1218
|
+
messageID: info.id,
|
|
1219
|
+
sessionID: input.sessionID,
|
|
1220
|
+
type: "text",
|
|
1221
|
+
synthetic: true,
|
|
1222
|
+
text: `Called the Read tool with the following input: {"filePath":"${filepath}"}`,
|
|
1223
|
+
},
|
|
1224
|
+
{
|
|
1225
|
+
id: part.id,
|
|
1226
|
+
messageID: info.id,
|
|
1227
|
+
sessionID: input.sessionID,
|
|
1228
|
+
type: "file",
|
|
1229
|
+
url:
|
|
1230
|
+
`data:${part.mime};base64,` +
|
|
1231
|
+
Buffer.from(yield* fsys.readFile(filepath).pipe(Effect.catch(Effect.die))).toString("base64"),
|
|
1232
|
+
mime: part.mime,
|
|
1233
|
+
filename: part.filename!,
|
|
1234
|
+
source: part.source,
|
|
1235
|
+
},
|
|
1236
|
+
]
|
|
1237
|
+
}
|
|
1238
|
+
}
|
|
1239
|
+
}
|
|
1240
|
+
|
|
1241
|
+
if (part.type === "agent") {
|
|
1242
|
+
const perm = Permission.evaluate("task", part.name, ag.permission)
|
|
1243
|
+
const hint = perm.action === "deny" ? " . Invoked by user; guaranteed to exist." : ""
|
|
1244
|
+
return [
|
|
1245
|
+
{ ...part, messageID: info.id, sessionID: input.sessionID },
|
|
1246
|
+
{
|
|
1247
|
+
messageID: info.id,
|
|
1248
|
+
sessionID: input.sessionID,
|
|
1249
|
+
type: "text",
|
|
1250
|
+
synthetic: true,
|
|
1251
|
+
text:
|
|
1252
|
+
" Use the above message and context to generate a prompt and call the task tool with subagent: " +
|
|
1253
|
+
part.name +
|
|
1254
|
+
hint,
|
|
1255
|
+
},
|
|
1256
|
+
]
|
|
1257
|
+
}
|
|
1258
|
+
|
|
1259
|
+
return [{ ...part, messageID: info.id, sessionID: input.sessionID }]
|
|
1260
|
+
})
|
|
1261
|
+
|
|
1262
|
+
const parts = yield* Effect.forEach(input.parts, resolvePart, { concurrency: "unbounded" }).pipe(
|
|
1263
|
+
Effect.map((x) => x.flat().map(assign)),
|
|
1264
|
+
)
|
|
1265
|
+
|
|
1266
|
+
yield* plugin.trigger(
|
|
1267
|
+
"chat.message",
|
|
1268
|
+
{
|
|
1269
|
+
sessionID: input.sessionID,
|
|
1270
|
+
agent: input.agent,
|
|
1271
|
+
model: input.model,
|
|
1272
|
+
messageID: input.messageID,
|
|
1273
|
+
variant: input.variant,
|
|
1274
|
+
},
|
|
1275
|
+
{ message: info, parts },
|
|
1276
|
+
)
|
|
1277
|
+
|
|
1278
|
+
const parsed = MessageV2.Info.safeParse(info)
|
|
1279
|
+
if (!parsed.success) {
|
|
1280
|
+
log.error("invalid user message before save", {
|
|
1281
|
+
sessionID: input.sessionID,
|
|
1282
|
+
messageID: info.id,
|
|
1283
|
+
agent: info.agent,
|
|
1284
|
+
model: info.model,
|
|
1285
|
+
issues: parsed.error.issues,
|
|
1286
|
+
})
|
|
1287
|
+
}
|
|
1288
|
+
parts.forEach((part, index) => {
|
|
1289
|
+
const p = MessageV2.Part.safeParse(part)
|
|
1290
|
+
if (p.success) return
|
|
1291
|
+
log.error("invalid user part before save", {
|
|
1292
|
+
sessionID: input.sessionID,
|
|
1293
|
+
messageID: info.id,
|
|
1294
|
+
partID: part.id,
|
|
1295
|
+
partType: part.type,
|
|
1296
|
+
index,
|
|
1297
|
+
issues: p.error.issues,
|
|
1298
|
+
part,
|
|
1299
|
+
})
|
|
1300
|
+
})
|
|
1301
|
+
|
|
1302
|
+
yield* sessions.updateMessage(info)
|
|
1303
|
+
for (const part of parts) yield* sessions.updatePart(part)
|
|
1304
|
+
|
|
1305
|
+
return { info, parts }
|
|
1306
|
+
}, Effect.scoped)
|
|
1307
|
+
|
|
1308
|
+
const prompt: (input: PromptInput) => Effect.Effect<MessageV2.WithParts> = Effect.fn("SessionPrompt.prompt")(
|
|
1309
|
+
function* (input: PromptInput) {
|
|
1310
|
+
const session = yield* sessions.get(input.sessionID)
|
|
1311
|
+
yield* Effect.promise(() => SessionRevert.cleanup(session))
|
|
1312
|
+
const message = yield* createUserMessage(input)
|
|
1313
|
+
yield* sessions.touch(input.sessionID)
|
|
1314
|
+
|
|
1315
|
+
const permissions: Permission.Ruleset = []
|
|
1316
|
+
for (const [t, enabled] of Object.entries(input.tools ?? {})) {
|
|
1317
|
+
permissions.push({ permission: t, action: enabled ? "allow" : "deny", pattern: "*" })
|
|
1318
|
+
}
|
|
1319
|
+
if (permissions.length > 0) {
|
|
1320
|
+
session.permission = permissions
|
|
1321
|
+
yield* sessions.setPermission({ sessionID: session.id, permission: permissions })
|
|
1322
|
+
}
|
|
1323
|
+
|
|
1324
|
+
if (input.noReply === true) return message
|
|
1325
|
+
return yield* loop({ sessionID: input.sessionID })
|
|
1326
|
+
},
|
|
1327
|
+
)
|
|
1328
|
+
|
|
1329
|
+
const lastAssistant = (sessionID: SessionID) =>
|
|
1330
|
+
Effect.promise(async () => {
|
|
1331
|
+
let latest: MessageV2.WithParts | undefined
|
|
1332
|
+
for await (const item of MessageV2.stream(sessionID)) {
|
|
1333
|
+
latest ??= item
|
|
1334
|
+
if (item.info.role !== "user") return item
|
|
1335
|
+
}
|
|
1336
|
+
if (latest) return latest
|
|
1337
|
+
throw new Error("Impossible")
|
|
1338
|
+
})
|
|
1339
|
+
|
|
1340
|
+
const runLoop: (sessionID: SessionID) => Effect.Effect<MessageV2.WithParts> = Effect.fn("SessionPrompt.run")(
|
|
1341
|
+
function* (sessionID: SessionID) {
|
|
1342
|
+
const ctx = yield* InstanceState.context
|
|
1343
|
+
let structured: unknown | undefined
|
|
1344
|
+
let step = 0
|
|
1345
|
+
const session = yield* sessions.get(sessionID)
|
|
1346
|
+
|
|
1347
|
+
while (true) {
|
|
1348
|
+
yield* status.set(sessionID, { type: "busy" })
|
|
1349
|
+
log.info("loop", { step, sessionID })
|
|
1350
|
+
|
|
1351
|
+
let msgs = yield* MessageV2.filterCompactedEffect(sessionID)
|
|
1352
|
+
|
|
1353
|
+
let lastUser: MessageV2.User | undefined
|
|
1354
|
+
let lastAssistant: MessageV2.Assistant | undefined
|
|
1355
|
+
let lastFinished: MessageV2.Assistant | undefined
|
|
1356
|
+
let tasks: (MessageV2.CompactionPart | MessageV2.SubtaskPart)[] = []
|
|
1357
|
+
for (let i = msgs.length - 1; i >= 0; i--) {
|
|
1358
|
+
const msg = msgs[i]
|
|
1359
|
+
if (!lastUser && msg.info.role === "user") lastUser = msg.info
|
|
1360
|
+
if (!lastAssistant && msg.info.role === "assistant") lastAssistant = msg.info
|
|
1361
|
+
if (!lastFinished && msg.info.role === "assistant" && msg.info.finish) lastFinished = msg.info
|
|
1362
|
+
if (lastUser && lastFinished) break
|
|
1363
|
+
const task = msg.parts.filter((part) => part.type === "compaction" || part.type === "subtask")
|
|
1364
|
+
if (task && !lastFinished) tasks.push(...task)
|
|
1365
|
+
}
|
|
1366
|
+
|
|
1367
|
+
if (!lastUser) throw new Error("No user message found in stream. This should never happen.")
|
|
1368
|
+
|
|
1369
|
+
const lastAssistantMsg = msgs.findLast(
|
|
1370
|
+
(msg) => msg.info.role === "assistant" && msg.info.id === lastAssistant?.id,
|
|
1371
|
+
)
|
|
1372
|
+
// Some providers return "stop" even when the assistant message contains tool calls.
|
|
1373
|
+
// Keep the loop running so tool results can be sent back to the model.
|
|
1374
|
+
// Skip provider-executed tool parts — those were fully handled within the
|
|
1375
|
+
// provider's stream (e.g. DWS Agent Platform) and don't need a re-loop.
|
|
1376
|
+
const hasToolCalls =
|
|
1377
|
+
lastAssistantMsg?.parts.some((part) => part.type === "tool" && !part.metadata?.providerExecuted) ?? false
|
|
1378
|
+
|
|
1379
|
+
if (
|
|
1380
|
+
lastAssistant?.finish &&
|
|
1381
|
+
!["tool-calls"].includes(lastAssistant.finish) &&
|
|
1382
|
+
!hasToolCalls &&
|
|
1383
|
+
lastUser.id < lastAssistant.id
|
|
1384
|
+
) {
|
|
1385
|
+
log.info("exiting loop", { sessionID })
|
|
1386
|
+
break
|
|
1387
|
+
}
|
|
1388
|
+
|
|
1389
|
+
step++
|
|
1390
|
+
if (step === 1)
|
|
1391
|
+
yield* title({
|
|
1392
|
+
session,
|
|
1393
|
+
modelID: lastUser.model.modelID,
|
|
1394
|
+
providerID: lastUser.model.providerID,
|
|
1395
|
+
history: msgs,
|
|
1396
|
+
}).pipe(Effect.ignore, Effect.forkIn(scope))
|
|
1397
|
+
|
|
1398
|
+
const model = yield* getModel(lastUser.model.providerID, lastUser.model.modelID, sessionID)
|
|
1399
|
+
const task = tasks.pop()
|
|
1400
|
+
|
|
1401
|
+
if (task?.type === "subtask") {
|
|
1402
|
+
yield* handleSubtask({ task, model, lastUser, sessionID, session, msgs })
|
|
1403
|
+
continue
|
|
1404
|
+
}
|
|
1405
|
+
|
|
1406
|
+
if (task?.type === "compaction") {
|
|
1407
|
+
const result = yield* compaction.process({
|
|
1408
|
+
messages: msgs,
|
|
1409
|
+
parentID: lastUser.id,
|
|
1410
|
+
sessionID,
|
|
1411
|
+
auto: task.auto,
|
|
1412
|
+
overflow: task.overflow,
|
|
1413
|
+
})
|
|
1414
|
+
if (result === "stop") break
|
|
1415
|
+
continue
|
|
1416
|
+
}
|
|
1417
|
+
|
|
1418
|
+
if (
|
|
1419
|
+
lastFinished &&
|
|
1420
|
+
lastFinished.summary !== true &&
|
|
1421
|
+
(yield* compaction.isOverflow({ tokens: lastFinished.tokens, model }))
|
|
1422
|
+
) {
|
|
1423
|
+
yield* compaction.create({ sessionID, agent: lastUser.agent, model: lastUser.model, auto: true })
|
|
1424
|
+
continue
|
|
1425
|
+
}
|
|
1426
|
+
|
|
1427
|
+
const agent = yield* agents.get(lastUser.agent)
|
|
1428
|
+
if (!agent) {
|
|
1429
|
+
const available = (yield* agents.list()).filter((a) => !a.hidden).map((a) => a.name)
|
|
1430
|
+
const hint = available.length ? ` Available agents: ${available.join(", ")}` : ""
|
|
1431
|
+
const error = new NamedError.Unknown({ message: `Agent not found: "${lastUser.agent}".${hint}` })
|
|
1432
|
+
yield* bus.publish(Session.Event.Error, { sessionID, error: error.toObject() })
|
|
1433
|
+
throw error
|
|
1434
|
+
}
|
|
1435
|
+
const maxSteps = agent.steps ?? Infinity
|
|
1436
|
+
const isLastStep = step >= maxSteps
|
|
1437
|
+
msgs = yield* insertReminders({ messages: msgs, agent, session })
|
|
1438
|
+
|
|
1439
|
+
const msg: MessageV2.Assistant = {
|
|
1440
|
+
id: MessageID.ascending(),
|
|
1441
|
+
parentID: lastUser.id,
|
|
1442
|
+
role: "assistant",
|
|
1443
|
+
mode: agent.name,
|
|
1444
|
+
agent: agent.name,
|
|
1445
|
+
variant: lastUser.model.variant,
|
|
1446
|
+
path: { cwd: ctx.directory, root: ctx.worktree },
|
|
1447
|
+
cost: 0,
|
|
1448
|
+
tokens: { input: 0, output: 0, reasoning: 0, cache: { read: 0, write: 0 } },
|
|
1449
|
+
modelID: model.id,
|
|
1450
|
+
providerID: model.providerID,
|
|
1451
|
+
time: { created: Date.now() },
|
|
1452
|
+
sessionID,
|
|
1453
|
+
}
|
|
1454
|
+
yield* sessions.updateMessage(msg)
|
|
1455
|
+
const handle = yield* processor.create({
|
|
1456
|
+
assistantMessage: msg,
|
|
1457
|
+
sessionID,
|
|
1458
|
+
model,
|
|
1459
|
+
})
|
|
1460
|
+
|
|
1461
|
+
const outcome: "break" | "continue" = yield* Effect.gen(function* () {
|
|
1462
|
+
const lastUserMsg = msgs.findLast((m) => m.info.role === "user")
|
|
1463
|
+
const bypassAgentCheck = lastUserMsg?.parts.some((p) => p.type === "agent") ?? false
|
|
1464
|
+
|
|
1465
|
+
const tools = yield* resolveTools({
|
|
1466
|
+
agent,
|
|
1467
|
+
session,
|
|
1468
|
+
model,
|
|
1469
|
+
tools: lastUser.tools,
|
|
1470
|
+
processor: handle,
|
|
1471
|
+
bypassAgentCheck,
|
|
1472
|
+
messages: msgs,
|
|
1473
|
+
})
|
|
1474
|
+
|
|
1475
|
+
if (lastUser.format?.type === "json_schema") {
|
|
1476
|
+
tools["StructuredOutput"] = createStructuredOutputTool({
|
|
1477
|
+
schema: lastUser.format.schema,
|
|
1478
|
+
onSuccess(output) {
|
|
1479
|
+
structured = output
|
|
1480
|
+
},
|
|
1481
|
+
})
|
|
1482
|
+
}
|
|
1483
|
+
|
|
1484
|
+
if (step === 1) SessionSummary.summarize({ sessionID, messageID: lastUser.id })
|
|
1485
|
+
|
|
1486
|
+
if (step > 1 && lastFinished) {
|
|
1487
|
+
for (const m of msgs) {
|
|
1488
|
+
if (m.info.role !== "user" || m.info.id <= lastFinished.id) continue
|
|
1489
|
+
for (const p of m.parts) {
|
|
1490
|
+
if (p.type !== "text" || p.ignored || p.synthetic) continue
|
|
1491
|
+
if (!p.text.trim()) continue
|
|
1492
|
+
p.text = [
|
|
1493
|
+
"<system-reminder>",
|
|
1494
|
+
"The user sent the following message:",
|
|
1495
|
+
p.text,
|
|
1496
|
+
"",
|
|
1497
|
+
"Please address this message and continue with your tasks.",
|
|
1498
|
+
"</system-reminder>",
|
|
1499
|
+
].join("\n")
|
|
1500
|
+
}
|
|
1501
|
+
}
|
|
1502
|
+
}
|
|
1503
|
+
|
|
1504
|
+
yield* plugin.trigger("experimental.chat.messages.transform", {}, { messages: msgs })
|
|
1505
|
+
|
|
1506
|
+
const [skills, env, instructions, modelMsgs] = yield* Effect.all([
|
|
1507
|
+
Effect.promise(() => SystemPrompt.skills(agent)),
|
|
1508
|
+
Effect.promise(() => SystemPrompt.environment(model)),
|
|
1509
|
+
instruction.system().pipe(Effect.orDie),
|
|
1510
|
+
Effect.promise(() => MessageV2.toModelMessages(msgs, model)),
|
|
1511
|
+
])
|
|
1512
|
+
const system = [...env, ...(skills ? [skills] : []), ...instructions]
|
|
1513
|
+
const format = lastUser.format ?? { type: "text" as const }
|
|
1514
|
+
if (format.type === "json_schema") system.push(STRUCTURED_OUTPUT_SYSTEM_PROMPT)
|
|
1515
|
+
const result = yield* handle.process({
|
|
1516
|
+
user: lastUser,
|
|
1517
|
+
agent,
|
|
1518
|
+
permission: session.permission,
|
|
1519
|
+
sessionID,
|
|
1520
|
+
parentSessionID: session.parentID,
|
|
1521
|
+
system,
|
|
1522
|
+
messages: [...modelMsgs, ...(isLastStep ? [{ role: "assistant" as const, content: MAX_STEPS }] : [])],
|
|
1523
|
+
tools,
|
|
1524
|
+
model,
|
|
1525
|
+
toolChoice: format.type === "json_schema" ? "required" : undefined,
|
|
1526
|
+
})
|
|
1527
|
+
|
|
1528
|
+
if (structured !== undefined) {
|
|
1529
|
+
handle.message.structured = structured
|
|
1530
|
+
handle.message.finish = handle.message.finish ?? "stop"
|
|
1531
|
+
yield* sessions.updateMessage(handle.message)
|
|
1532
|
+
return "break" as const
|
|
1533
|
+
}
|
|
1534
|
+
|
|
1535
|
+
const finished = handle.message.finish && !["tool-calls", "unknown"].includes(handle.message.finish)
|
|
1536
|
+
if (finished && !handle.message.error) {
|
|
1537
|
+
if (format.type === "json_schema") {
|
|
1538
|
+
handle.message.error = new MessageV2.StructuredOutputError({
|
|
1539
|
+
message: "Model did not produce structured output",
|
|
1540
|
+
retries: 0,
|
|
1541
|
+
}).toObject()
|
|
1542
|
+
yield* sessions.updateMessage(handle.message)
|
|
1543
|
+
return "break" as const
|
|
1544
|
+
}
|
|
1545
|
+
}
|
|
1546
|
+
|
|
1547
|
+
if (result === "stop") return "break" as const
|
|
1548
|
+
if (result === "compact") {
|
|
1549
|
+
yield* compaction.create({
|
|
1550
|
+
sessionID,
|
|
1551
|
+
agent: lastUser.agent,
|
|
1552
|
+
model: lastUser.model,
|
|
1553
|
+
auto: true,
|
|
1554
|
+
overflow: !handle.message.finish,
|
|
1555
|
+
})
|
|
1556
|
+
}
|
|
1557
|
+
return "continue" as const
|
|
1558
|
+
}).pipe(Effect.ensuring(instruction.clear(handle.message.id)))
|
|
1559
|
+
if (outcome === "break") break
|
|
1560
|
+
continue
|
|
1561
|
+
}
|
|
1562
|
+
|
|
1563
|
+
yield* compaction.prune({ sessionID }).pipe(Effect.ignore, Effect.forkIn(scope))
|
|
1564
|
+
return yield* lastAssistant(sessionID)
|
|
1565
|
+
},
|
|
1566
|
+
)
|
|
1567
|
+
|
|
1568
|
+
const loop: (input: z.infer<typeof LoopInput>) => Effect.Effect<MessageV2.WithParts> = Effect.fn(
|
|
1569
|
+
"SessionPrompt.loop",
|
|
1570
|
+
)(function* (input: z.infer<typeof LoopInput>) {
|
|
1571
|
+
const s = yield* InstanceState.get(state)
|
|
1572
|
+
const runner = getRunner(s.runners, input.sessionID)
|
|
1573
|
+
return yield* runner.ensureRunning(runLoop(input.sessionID))
|
|
1574
|
+
})
|
|
1575
|
+
|
|
1576
|
+
const shell: (input: ShellInput) => Effect.Effect<MessageV2.WithParts> = Effect.fn("SessionPrompt.shell")(
|
|
1577
|
+
function* (input: ShellInput) {
|
|
1578
|
+
const s = yield* InstanceState.get(state)
|
|
1579
|
+
const runner = getRunner(s.runners, input.sessionID)
|
|
1580
|
+
return yield* runner.startShell((signal) => shellImpl(input, signal))
|
|
1581
|
+
},
|
|
1582
|
+
)
|
|
1583
|
+
|
|
1584
|
+
const command = Effect.fn("SessionPrompt.command")(function* (input: CommandInput) {
|
|
1585
|
+
log.info("command", input)
|
|
1586
|
+
const cmd = yield* commands.get(input.command)
|
|
1587
|
+
if (!cmd) {
|
|
1588
|
+
const available = (yield* commands.list()).map((c) => c.name)
|
|
1589
|
+
const hint = available.length ? ` Available commands: ${available.join(", ")}` : ""
|
|
1590
|
+
const error = new NamedError.Unknown({ message: `Command not found: "${input.command}".${hint}` })
|
|
1591
|
+
yield* bus.publish(Session.Event.Error, { sessionID: input.sessionID, error: error.toObject() })
|
|
1592
|
+
throw error
|
|
1593
|
+
}
|
|
1594
|
+
const agentName = cmd.agent ?? input.agent ?? (yield* agents.defaultAgent())
|
|
1595
|
+
|
|
1596
|
+
const raw = input.arguments.match(argsRegex) ?? []
|
|
1597
|
+
const args = raw.map((arg) => arg.replace(quoteTrimRegex, ""))
|
|
1598
|
+
const templateCommand = yield* Effect.promise(async () => cmd.template)
|
|
1599
|
+
|
|
1600
|
+
const placeholders = templateCommand.match(placeholderRegex) ?? []
|
|
1601
|
+
let last = 0
|
|
1602
|
+
for (const item of placeholders) {
|
|
1603
|
+
const value = Number(item.slice(1))
|
|
1604
|
+
if (value > last) last = value
|
|
1605
|
+
}
|
|
1606
|
+
|
|
1607
|
+
const withArgs = templateCommand.replaceAll(placeholderRegex, (_, index) => {
|
|
1608
|
+
const position = Number(index)
|
|
1609
|
+
const argIndex = position - 1
|
|
1610
|
+
if (argIndex >= args.length) return ""
|
|
1611
|
+
if (position === last) return args.slice(argIndex).join(" ")
|
|
1612
|
+
return args[argIndex]
|
|
1613
|
+
})
|
|
1614
|
+
const usesArgumentsPlaceholder = templateCommand.includes("$ARGUMENTS")
|
|
1615
|
+
let template = withArgs.replaceAll("$ARGUMENTS", input.arguments)
|
|
1616
|
+
|
|
1617
|
+
if (placeholders.length === 0 && !usesArgumentsPlaceholder && input.arguments.trim()) {
|
|
1618
|
+
template = template + "\n\n" + input.arguments
|
|
1619
|
+
}
|
|
1620
|
+
|
|
1621
|
+
const shellMatches = ConfigMarkdown.shell(template)
|
|
1622
|
+
if (shellMatches.length > 0) {
|
|
1623
|
+
const sh = Shell.preferred()
|
|
1624
|
+
const results = yield* Effect.promise(() =>
|
|
1625
|
+
Promise.all(
|
|
1626
|
+
shellMatches.map(async ([, cmd]) => (await Process.text([cmd], { shell: sh, nothrow: true })).text),
|
|
1627
|
+
),
|
|
1628
|
+
)
|
|
1629
|
+
let index = 0
|
|
1630
|
+
template = template.replace(bashRegex, () => results[index++])
|
|
1631
|
+
}
|
|
1632
|
+
template = template.trim()
|
|
1633
|
+
|
|
1634
|
+
const taskModel = yield* Effect.gen(function* () {
|
|
1635
|
+
if (cmd.model) return Provider.parseModel(cmd.model)
|
|
1636
|
+
if (cmd.agent) {
|
|
1637
|
+
const cmdAgent = yield* agents.get(cmd.agent)
|
|
1638
|
+
if (cmdAgent?.model) return cmdAgent.model
|
|
1639
|
+
}
|
|
1640
|
+
if (input.model) return Provider.parseModel(input.model)
|
|
1641
|
+
return yield* lastModel(input.sessionID)
|
|
1642
|
+
})
|
|
1643
|
+
|
|
1644
|
+
yield* getModel(taskModel.providerID, taskModel.modelID, input.sessionID)
|
|
1645
|
+
|
|
1646
|
+
const agent = yield* agents.get(agentName)
|
|
1647
|
+
if (!agent) {
|
|
1648
|
+
const available = (yield* agents.list()).filter((a) => !a.hidden).map((a) => a.name)
|
|
1649
|
+
const hint = available.length ? ` Available agents: ${available.join(", ")}` : ""
|
|
1650
|
+
const error = new NamedError.Unknown({ message: `Agent not found: "${agentName}".${hint}` })
|
|
1651
|
+
yield* bus.publish(Session.Event.Error, { sessionID: input.sessionID, error: error.toObject() })
|
|
1652
|
+
throw error
|
|
1653
|
+
}
|
|
1654
|
+
|
|
1655
|
+
const templateParts = yield* resolvePromptParts(template)
|
|
1656
|
+
const isSubtask = (agent.mode === "subagent" && cmd.subtask !== false) || cmd.subtask === true
|
|
1657
|
+
const parts = isSubtask
|
|
1658
|
+
? [
|
|
1659
|
+
{
|
|
1660
|
+
type: "subtask" as const,
|
|
1661
|
+
agent: agent.name,
|
|
1662
|
+
description: cmd.description ?? "",
|
|
1663
|
+
command: input.command,
|
|
1664
|
+
model: { providerID: taskModel.providerID, modelID: taskModel.modelID },
|
|
1665
|
+
prompt: templateParts.find((y) => y.type === "text")?.text ?? "",
|
|
1666
|
+
},
|
|
1667
|
+
]
|
|
1668
|
+
: [...templateParts, ...(input.parts ?? [])]
|
|
1669
|
+
|
|
1670
|
+
const userAgent = isSubtask ? (input.agent ?? (yield* agents.defaultAgent())) : agentName
|
|
1671
|
+
const userModel = isSubtask
|
|
1672
|
+
? input.model
|
|
1673
|
+
? Provider.parseModel(input.model)
|
|
1674
|
+
: yield* lastModel(input.sessionID)
|
|
1675
|
+
: taskModel
|
|
1676
|
+
|
|
1677
|
+
yield* plugin.trigger(
|
|
1678
|
+
"command.execute.before",
|
|
1679
|
+
{ command: input.command, sessionID: input.sessionID, arguments: input.arguments },
|
|
1680
|
+
{ parts },
|
|
1681
|
+
)
|
|
1682
|
+
|
|
1683
|
+
const result = yield* prompt({
|
|
1684
|
+
sessionID: input.sessionID,
|
|
1685
|
+
messageID: input.messageID,
|
|
1686
|
+
model: userModel,
|
|
1687
|
+
agent: userAgent,
|
|
1688
|
+
parts,
|
|
1689
|
+
variant: input.variant,
|
|
1690
|
+
})
|
|
1691
|
+
yield* bus.publish(Command.Event.Executed, {
|
|
1692
|
+
name: input.command,
|
|
1693
|
+
sessionID: input.sessionID,
|
|
1694
|
+
arguments: input.arguments,
|
|
1695
|
+
messageID: result.info.id,
|
|
1696
|
+
})
|
|
1697
|
+
return result
|
|
1698
|
+
})
|
|
1699
|
+
|
|
1700
|
+
return Service.of({
|
|
1701
|
+
assertNotBusy,
|
|
1702
|
+
cancel,
|
|
1703
|
+
prompt,
|
|
1704
|
+
loop,
|
|
1705
|
+
shell,
|
|
1706
|
+
command,
|
|
1707
|
+
resolvePromptParts,
|
|
1708
|
+
})
|
|
1709
|
+
}),
|
|
1710
|
+
)
|
|
1711
|
+
|
|
1712
|
+
const defaultLayer = Layer.unwrap(
|
|
1713
|
+
Effect.sync(() =>
|
|
1714
|
+
layer.pipe(
|
|
1715
|
+
Layer.provide(SessionStatus.layer),
|
|
1716
|
+
Layer.provide(SessionCompaction.defaultLayer),
|
|
1717
|
+
Layer.provide(SessionProcessor.defaultLayer),
|
|
1718
|
+
Layer.provide(Command.defaultLayer),
|
|
1719
|
+
Layer.provide(Permission.defaultLayer),
|
|
1720
|
+
Layer.provide(MCP.defaultLayer),
|
|
1721
|
+
Layer.provide(LSP.defaultLayer),
|
|
1722
|
+
Layer.provide(FileTime.defaultLayer),
|
|
1723
|
+
Layer.provide(ToolRegistry.defaultLayer),
|
|
1724
|
+
Layer.provide(Truncate.layer),
|
|
1725
|
+
Layer.provide(Provider.defaultLayer),
|
|
1726
|
+
Layer.provide(Instruction.defaultLayer),
|
|
1727
|
+
Layer.provide(AppFileSystem.defaultLayer),
|
|
1728
|
+
Layer.provide(Plugin.defaultLayer),
|
|
1729
|
+
Layer.provide(Session.defaultLayer),
|
|
1730
|
+
Layer.provide(Agent.defaultLayer),
|
|
1731
|
+
Layer.provide(Bus.layer),
|
|
1732
|
+
Layer.provide(CrossSpawnSpawner.defaultLayer),
|
|
1733
|
+
),
|
|
1734
|
+
),
|
|
1735
|
+
)
|
|
1736
|
+
const { runPromise } = makeRuntime(Service, defaultLayer)
|
|
1737
|
+
|
|
1738
|
+
export async function assertNotBusy(sessionID: SessionID) {
|
|
1739
|
+
return runPromise((svc) => svc.assertNotBusy(SessionID.zod.parse(sessionID)))
|
|
1740
|
+
}
|
|
1741
|
+
|
|
1742
|
+
export const PromptInput = z.object({
|
|
1743
|
+
sessionID: SessionID.zod,
|
|
1744
|
+
messageID: MessageID.zod.optional(),
|
|
1745
|
+
model: z
|
|
1746
|
+
.object({
|
|
1747
|
+
providerID: ProviderID.zod,
|
|
1748
|
+
modelID: ModelID.zod,
|
|
1749
|
+
})
|
|
1750
|
+
.optional(),
|
|
1751
|
+
agent: z.string().optional(),
|
|
1752
|
+
noReply: z.boolean().optional(),
|
|
1753
|
+
tools: z
|
|
1754
|
+
.record(z.string(), z.boolean())
|
|
1755
|
+
.optional()
|
|
1756
|
+
.describe(
|
|
1757
|
+
"@deprecated tools and permissions have been merged, you can set permissions on the session itself now",
|
|
1758
|
+
),
|
|
1759
|
+
format: MessageV2.Format.optional(),
|
|
1760
|
+
system: z.string().optional(),
|
|
1761
|
+
variant: z.string().optional(),
|
|
1762
|
+
parts: z.array(
|
|
1763
|
+
z.discriminatedUnion("type", [
|
|
1764
|
+
MessageV2.TextPart.omit({
|
|
1765
|
+
messageID: true,
|
|
1766
|
+
sessionID: true,
|
|
1767
|
+
})
|
|
1768
|
+
.partial({
|
|
1769
|
+
id: true,
|
|
1770
|
+
})
|
|
1771
|
+
.meta({
|
|
1772
|
+
ref: "TextPartInput",
|
|
1773
|
+
}),
|
|
1774
|
+
MessageV2.FilePart.omit({
|
|
1775
|
+
messageID: true,
|
|
1776
|
+
sessionID: true,
|
|
1777
|
+
})
|
|
1778
|
+
.partial({
|
|
1779
|
+
id: true,
|
|
1780
|
+
})
|
|
1781
|
+
.meta({
|
|
1782
|
+
ref: "FilePartInput",
|
|
1783
|
+
}),
|
|
1784
|
+
MessageV2.AgentPart.omit({
|
|
1785
|
+
messageID: true,
|
|
1786
|
+
sessionID: true,
|
|
1787
|
+
})
|
|
1788
|
+
.partial({
|
|
1789
|
+
id: true,
|
|
1790
|
+
})
|
|
1791
|
+
.meta({
|
|
1792
|
+
ref: "AgentPartInput",
|
|
1793
|
+
}),
|
|
1794
|
+
MessageV2.SubtaskPart.omit({
|
|
1795
|
+
messageID: true,
|
|
1796
|
+
sessionID: true,
|
|
1797
|
+
})
|
|
1798
|
+
.partial({
|
|
1799
|
+
id: true,
|
|
1800
|
+
})
|
|
1801
|
+
.meta({
|
|
1802
|
+
ref: "SubtaskPartInput",
|
|
1803
|
+
}),
|
|
1804
|
+
]),
|
|
1805
|
+
),
|
|
1806
|
+
})
|
|
1807
|
+
export type PromptInput = z.infer<typeof PromptInput>
|
|
1808
|
+
|
|
1809
|
+
export async function prompt(input: PromptInput) {
|
|
1810
|
+
return runPromise((svc) => svc.prompt(PromptInput.parse(input)))
|
|
1811
|
+
}
|
|
1812
|
+
|
|
1813
|
+
export async function resolvePromptParts(template: string) {
|
|
1814
|
+
return runPromise((svc) => svc.resolvePromptParts(z.string().parse(template)))
|
|
1815
|
+
}
|
|
1816
|
+
|
|
1817
|
+
export async function cancel(sessionID: SessionID) {
|
|
1818
|
+
return runPromise((svc) => svc.cancel(SessionID.zod.parse(sessionID)))
|
|
1819
|
+
}
|
|
1820
|
+
|
|
1821
|
+
export const LoopInput = z.object({
|
|
1822
|
+
sessionID: SessionID.zod,
|
|
1823
|
+
})
|
|
1824
|
+
|
|
1825
|
+
export async function loop(input: z.infer<typeof LoopInput>) {
|
|
1826
|
+
return runPromise((svc) => svc.loop(LoopInput.parse(input)))
|
|
1827
|
+
}
|
|
1828
|
+
|
|
1829
|
+
export const ShellInput = z.object({
|
|
1830
|
+
sessionID: SessionID.zod,
|
|
1831
|
+
messageID: MessageID.zod.optional(),
|
|
1832
|
+
agent: z.string(),
|
|
1833
|
+
model: z
|
|
1834
|
+
.object({
|
|
1835
|
+
providerID: ProviderID.zod,
|
|
1836
|
+
modelID: ModelID.zod,
|
|
1837
|
+
})
|
|
1838
|
+
.optional(),
|
|
1839
|
+
command: z.string(),
|
|
1840
|
+
})
|
|
1841
|
+
export type ShellInput = z.infer<typeof ShellInput>
|
|
1842
|
+
|
|
1843
|
+
export async function shell(input: ShellInput) {
|
|
1844
|
+
return runPromise((svc) => svc.shell(ShellInput.parse(input)))
|
|
1845
|
+
}
|
|
1846
|
+
|
|
1847
|
+
export const CommandInput = z.object({
|
|
1848
|
+
messageID: MessageID.zod.optional(),
|
|
1849
|
+
sessionID: SessionID.zod,
|
|
1850
|
+
agent: z.string().optional(),
|
|
1851
|
+
model: z.string().optional(),
|
|
1852
|
+
arguments: z.string(),
|
|
1853
|
+
command: z.string(),
|
|
1854
|
+
variant: z.string().optional(),
|
|
1855
|
+
parts: z
|
|
1856
|
+
.array(
|
|
1857
|
+
z.discriminatedUnion("type", [
|
|
1858
|
+
MessageV2.FilePart.omit({
|
|
1859
|
+
messageID: true,
|
|
1860
|
+
sessionID: true,
|
|
1861
|
+
}).partial({
|
|
1862
|
+
id: true,
|
|
1863
|
+
}),
|
|
1864
|
+
]),
|
|
1865
|
+
)
|
|
1866
|
+
.optional(),
|
|
1867
|
+
})
|
|
1868
|
+
export type CommandInput = z.infer<typeof CommandInput>
|
|
1869
|
+
|
|
1870
|
+
export async function command(input: CommandInput) {
|
|
1871
|
+
return runPromise((svc) => svc.command(CommandInput.parse(input)))
|
|
1872
|
+
}
|
|
1873
|
+
|
|
1874
|
+
/** @internal Exported for testing */
|
|
1875
|
+
export function createStructuredOutputTool(input: {
|
|
1876
|
+
schema: Record<string, any>
|
|
1877
|
+
onSuccess: (output: unknown) => void
|
|
1878
|
+
}): AITool {
|
|
1879
|
+
// Remove $schema property if present (not needed for tool input)
|
|
1880
|
+
const { $schema, ...toolSchema } = input.schema
|
|
1881
|
+
|
|
1882
|
+
return tool({
|
|
1883
|
+
id: "StructuredOutput" as any,
|
|
1884
|
+
description: STRUCTURED_OUTPUT_DESCRIPTION,
|
|
1885
|
+
inputSchema: jsonSchema(toolSchema as any),
|
|
1886
|
+
async execute(args) {
|
|
1887
|
+
// AI SDK validates args against inputSchema before calling execute()
|
|
1888
|
+
input.onSuccess(args)
|
|
1889
|
+
return {
|
|
1890
|
+
output: "Structured output captured successfully.",
|
|
1891
|
+
title: "Structured Output",
|
|
1892
|
+
metadata: { valid: true },
|
|
1893
|
+
}
|
|
1894
|
+
},
|
|
1895
|
+
toModelOutput({ output }) {
|
|
1896
|
+
return {
|
|
1897
|
+
type: "text",
|
|
1898
|
+
value: output.output,
|
|
1899
|
+
}
|
|
1900
|
+
},
|
|
1901
|
+
})
|
|
1902
|
+
}
|
|
1903
|
+
const bashRegex = /!`([^`]+)`/g
|
|
1904
|
+
// Match [Image N] as single token, quoted strings, or non-space sequences
|
|
1905
|
+
const argsRegex = /(?:\[Image\s+\d+\]|"[^"]*"|'[^']*'|[^\s"']+)/gi
|
|
1906
|
+
const placeholderRegex = /\$(\d+)/g
|
|
1907
|
+
const quoteTrimRegex = /^["']|["']$/g
|
|
1908
|
+
}
|