saeeol 1.3.0 → 1.3.1
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/.turbo/turbo-typecheck.log +1 -0
- package/AGENTS.md +72 -0
- package/BUN_SHELL_MIGRATION_PLAN.md +136 -0
- package/Dockerfile +18 -0
- package/assets/saeeol.ico +0 -0
- package/bin/saeeol.cjs +0 -0
- package/database.db +0 -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/migration/20260410174513_workspace-name/migration.sql +16 -0
- package/migration/20260410174513_workspace-name/snapshot.json +1271 -0
- package/migration/20260413175956_chief_energizer/migration.sql +13 -0
- package/migration/20260413175956_chief_energizer/snapshot.json +1399 -0
- package/migration/20260423070820_add_icon_url_override/migration.sql +2 -0
- package/migration/20260423070820_add_icon_url_override/snapshot.json +1409 -0
- package/migration/20260428004200_add_session_path/migration.sql +1 -0
- package/migration/20260428004200_add_session_path/snapshot.json +1419 -0
- package/npm/bin/saeeol +42 -0
- package/npm/package.json +39 -0
- package/npm/postinstall.js +162 -0
- package/package.json +201 -207
- package/parsers-config.ts +289 -0
- package/script/build.ts +393 -0
- package/script/check-migrations.ts +16 -0
- package/script/fix-node-pty.ts +34 -0
- package/script/generate.ts +23 -0
- package/script/postinstall.mjs +189 -0
- package/script/publish.ts +200 -0
- package/script/run-workspace-server +106 -0
- package/script/schema.ts +63 -0
- package/script/test-runner.ts +420 -0
- package/script/time.ts +6 -0
- package/script/trace-imports.ts +153 -0
- package/script/upgrade-opentui.ts +64 -0
- package/scripts/diff-sdk-types.sh +52 -0
- package/specs/effect/facades.md +221 -0
- package/specs/effect/http-api.md +401 -0
- package/specs/effect/instance-context.md +309 -0
- package/specs/effect/loose-ends.md +34 -0
- package/specs/effect/migration.md +299 -0
- package/specs/effect/routes.md +64 -0
- package/specs/effect/schema.md +399 -0
- package/specs/effect/server-package.md +668 -0
- package/specs/effect/tools.md +90 -0
- package/specs/tui-plugins.md +433 -0
- package/specs/v2/api.ts +67 -0
- package/specs/v2/keymappings.md +10 -0
- package/specs/v2/message-shape.md +136 -0
- package/src/acp/agent-message.ts +1 -1
- package/src/acp/agent-utils.ts +1 -1
- package/src/boxes/ansi.ts +17 -0
- package/src/boxes/atomic-write.ts +35 -0
- package/src/boxes/b64.ts +58 -0
- package/src/boxes/bash-security.ts +129 -0
- package/src/boxes/bom.ts +18 -0
- package/src/boxes/cancel.ts +16 -0
- package/src/boxes/chop.ts +12 -0
- package/src/boxes/clamp.ts +3 -0
- package/src/boxes/compact.ts +9 -0
- package/src/boxes/cost-tracker.ts +116 -0
- package/src/boxes/dataurl.ts +29 -0
- package/src/boxes/delay.ts +27 -0
- package/src/boxes/diff-apply.ts +53 -0
- package/src/boxes/disposable.ts +13 -0
- package/src/boxes/err.ts +34 -0
- package/src/boxes/human.ts +47 -0
- package/src/boxes/iife.ts +9 -0
- package/src/boxes/latch.ts +8 -0
- package/src/boxes/memory.ts +198 -0
- package/src/boxes/net.ts +16 -0
- package/src/boxes/plural.ts +4 -0
- package/src/boxes/puny.ts +21 -0
- package/src/boxes/retry.ts +49 -0
- package/src/boxes/rwlock.ts +41 -0
- package/src/boxes/schedule.ts +71 -0
- package/src/boxes/scope.ts +21 -0
- package/src/boxes/tokens.ts +9 -0
- package/src/boxes/ttl-cache.ts +63 -0
- package/src/boxes/typed-event.ts +51 -0
- package/src/boxes/uid.ts +50 -0
- package/src/boxes/wave6.test.ts +296 -0
- package/src/boxes/wildcard.ts +58 -0
- package/src/bus/global.ts +1 -1
- package/src/cli/cmd/github-run-api.ts +2 -2
- package/src/cli/cmd/run-events.ts +2 -2
- package/src/cli/cmd/tui/component/logo.tsx +1 -1
- package/src/cli/cmd/tui/component/prompt/use-prompt-memos.ts +2 -2
- package/src/cli/cmd/tui/context/app/editor-zed.ts +1 -1
- package/src/cli/cmd/tui/context/app/editor.ts +1 -1
- package/src/cli/cmd/tui/context/app/theme.tsx +1 -1
- package/src/cli/cmd/tui/util/revert-diff.ts +1 -1
- package/src/overlay/cli/cmd/roll-call-call.ts +1 -1
- package/src/overlay/cost-tracker/format.ts +1 -1
- package/src/overlay/cost-tracker/index.ts +4 -4
- package/src/overlay/cost-tracker/state.ts +2 -2
- package/src/overlay/cost-tracker/types.ts +2 -2
- package/src/overlay/memory/age.ts +1 -1
- package/src/overlay/memory/index.ts +4 -4
- package/src/overlay/memory/paths.ts +2 -2
- package/src/overlay/memory/scan.ts +1 -1
- package/src/overlay/memory/types.ts +2 -2
- package/src/overlay/tool/bash-security.ts +3 -3
- package/src/overlay/util/url.ts +1 -1
- package/src/plugin/codex-auth.ts +1 -1
- package/src/provider/model-cache.ts +2 -2
- package/src/provider/provider-resolve.ts +3 -3
- package/src/provider/transform-message.ts +1 -1
- package/src/server/routes/game.ts +284 -0
- package/src/server/server.ts +2 -0
- package/src/session/core/compaction/compaction-helpers.ts +1 -1
- package/src/session/core/compaction/compaction.ts +1 -1
- package/src/session/core/session.ts +2 -0
- package/src/sessions/ingest-queue.ts +2 -2
- package/src/sessions/remote-ws.ts +1 -1
- package/src/tool/workflow/question.ts +1 -1
- package/src/util/abort.ts +1 -1
- package/src/util/bom.ts +2 -2
- package/src/util/color.ts +1 -1
- package/src/util/data-url.ts +1 -1
- package/src/util/defer.ts +1 -1
- package/src/util/error.ts +2 -2
- package/src/util/filesystem.ts +2 -2
- package/src/util/format.ts +1 -1
- package/src/util/iife.ts +1 -1
- package/src/util/local-context.ts +1 -1
- package/src/util/locale.ts +2 -2
- package/src/util/lock.ts +1 -1
- package/src/util/network.ts +1 -1
- package/src/util/signal.ts +1 -1
- package/src/util/token.ts +1 -1
- package/src/util/wildcard.ts +1 -1
- package/sst-env.d.ts +10 -0
- package/test/AGENTS.md +133 -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 +725 -0
- package/test/agent/agent.test.ts +890 -0
- package/test/auth/auth.test.ts +86 -0
- package/test/bun/registry.test.ts +75 -0
- package/test/bus/bus-effect.test.ts +161 -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/auto-mode.test.ts +75 -0
- package/test/cli/bin-saeeol.test.ts +8 -0
- package/test/cli/cmd/tui/prompt-part.test.ts +47 -0
- package/test/cli/cmd/tui/prompt-traits.test.ts +38 -0
- package/test/cli/cmd/tui/sync.test.tsx +159 -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 +85 -0
- package/test/cli/import.test.ts +97 -0
- package/test/cli/install-artifact.test.ts +72 -0
- package/test/cli/plugin-auth-picker.test.ts +120 -0
- package/test/cli/pr.test.ts +59 -0
- package/test/cli/tui/editor-context-zed.test.ts +356 -0
- package/test/cli/tui/editor-context.test.tsx +228 -0
- package/test/cli/tui/keybind-plugin.test.ts +90 -0
- package/test/cli/tui/markdown.test.ts +161 -0
- package/test/cli/tui/plugin-add.test.ts +111 -0
- package/test/cli/tui/plugin-install.test.ts +87 -0
- package/test/cli/tui/plugin-lifecycle.test.ts +224 -0
- package/test/cli/tui/plugin-loader-entrypoint.test.ts +484 -0
- package/test/cli/tui/plugin-loader-pure.test.ts +71 -0
- package/test/cli/tui/plugin-loader.test.ts +816 -0
- package/test/cli/tui/plugin-toggle.test.ts +157 -0
- package/test/cli/tui/revert-diff.test.ts +35 -0
- package/test/cli/tui/slot-replace.test.tsx +47 -0
- package/test/cli/tui/theme-store.test.ts +54 -0
- package/test/cli/tui/thread.test.ts +28 -0
- package/test/cli/tui/transcript.test.ts +426 -0
- package/test/cli/tui/usage.test.ts +60 -0
- package/test/cli/tui/use-event.test.tsx +175 -0
- package/test/config/agent-color.test.ts +67 -0
- package/test/config/config.test.ts +2544 -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/lsp.test.ts +87 -0
- package/test/config/markdown.test.ts +228 -0
- package/test/config/plugin.test.ts +0 -0
- package/test/config/tui.test.ts +624 -0
- package/test/control-plane/adapters.test.ts +71 -0
- package/test/control-plane/workspace.test.ts +1526 -0
- package/test/effect/app-runtime-logger.test.ts +98 -0
- package/test/effect/config-service.test.ts +65 -0
- package/test/effect/instance-state.test.ts +394 -0
- package/test/effect/run-service.test.ts +89 -0
- package/test/effect/runner.test.ts +523 -0
- package/test/fake/provider.ts +82 -0
- package/test/file/fsmonitor.test.ts +68 -0
- package/test/file/ignore.test.ts +10 -0
- package/test/file/index.test.ts +954 -0
- package/test/file/path-traversal.test.ts +205 -0
- package/test/file/ripgrep.test.ts +226 -0
- package/test/file/watcher.test.ts +249 -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 +175 -0
- package/test/fixture/flock-worker.ts +72 -0
- package/test/fixture/log-init-worker.ts +62 -0
- package/test/fixture/lsp/fake-lsp-server.js +249 -0
- package/test/fixture/plug-worker.ts +93 -0
- package/test/fixture/plugin-meta-worker.ts +19 -0
- package/test/fixture/skills/agents-sdk/SKILL.md +152 -0
- package/test/fixture/skills/cloudflare/SKILL.md +211 -0
- package/test/fixture/skills/index.json +6 -0
- package/test/fixture/tui-plugin.ts +323 -0
- package/test/fixture/tui-runtime.ts +31 -0
- package/test/format/format.test.ts +272 -0
- package/test/git/git.test.ts +128 -0
- package/test/ide/ide.test.ts +82 -0
- package/test/installation/installation.test.ts +168 -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 +778 -0
- package/test/lib/websocket.ts +46 -0
- package/test/lsp/client.test.ts +482 -0
- package/test/lsp/index.test.ts +160 -0
- package/test/lsp/launch.test.ts +22 -0
- package/test/lsp/lifecycle.test.ts +184 -0
- package/test/ltm/ltm.test.ts +230 -0
- package/test/mcp/headers.test.ts +178 -0
- package/test/mcp/lifecycle.test.ts +787 -0
- package/test/mcp/oauth-auto-connect.test.ts +311 -0
- package/test/mcp/oauth-browser.test.ts +276 -0
- package/test/mcp/oauth-callback.test.ts +34 -0
- package/test/memory/abort-leak-webfetch.ts +49 -0
- package/test/memory/abort-leak.test.ts +128 -0
- package/test/patch/patch.test.ts +348 -0
- package/test/permission/arity.test.ts +33 -0
- package/test/permission/next.test.ts +1227 -0
- package/test/permission/next.toConfig.test.ts +110 -0
- package/test/permission-task.test.ts +326 -0
- package/test/plugin/auth-override.test.ts +79 -0
- package/test/plugin/cloudflare.test.ts +68 -0
- package/test/plugin/codex.test.ts +123 -0
- package/test/plugin/github-copilot-models.test.ts +261 -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 +1169 -0
- package/test/plugin/meta.test.ts +137 -0
- package/test/plugin/plugin-contract.test.ts +291 -0
- package/test/plugin/shared.test.ts +88 -0
- package/test/plugin/trigger.test.ts +102 -0
- package/test/plugin/workspace-adapter.test.ts +109 -0
- package/test/preload.ts +77 -0
- package/test/project/instance.test.ts +276 -0
- package/test/project/migrate-global.test.ts +152 -0
- package/test/project/project.test.ts +600 -0
- package/test/project/vcs.test.ts +286 -0
- package/test/project/worktree-remove.test.ts +126 -0
- package/test/project/worktree.test.ts +223 -0
- package/test/provider/amazon-bedrock.test.ts +462 -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 +413 -0
- package/test/provider/local.test.ts +208 -0
- package/test/provider/models.test.ts +261 -0
- package/test/provider/provider-category.test.ts +190 -0
- package/test/provider/provider.test.ts +2758 -0
- package/test/provider/transform.test.ts +3681 -0
- package/test/pty/pty-output-isolation.test.ts +147 -0
- package/test/pty/pty-session.test.ts +102 -0
- package/test/pty/pty-shell.test.ts +104 -0
- package/test/question/question.test.ts +490 -0
- package/test/saeeol/agent-global-config-dirs.test.ts +24 -0
- package/test/saeeol/agent-manager-tool.test.ts +71 -0
- package/test/saeeol/agent-permission-overrides.test.ts +75 -0
- package/test/saeeol/agent-skill-permissions.test.ts +37 -0
- package/test/saeeol/ask-agent-permissions.test.ts +303 -0
- package/test/saeeol/bash-hierarchy.test.ts +64 -0
- package/test/saeeol/bash-permission-metadata.test.ts +66 -0
- package/test/saeeol/bash-security-extended.test.ts +243 -0
- package/test/saeeol/bedrock-claude-empty-content.test.ts +138 -0
- package/test/saeeol/boxes-integration.test.ts +415 -0
- package/test/saeeol/builtin-skills.test.ts +75 -0
- package/test/saeeol/cleanup.ts +28 -0
- package/test/saeeol/cli/dev-setup.test.ts +74 -0
- package/test/saeeol/cli/roll-call.test.ts +161 -0
- package/test/saeeol/cli-run-auto-helper.test.ts +58 -0
- package/test/saeeol/codex-auth-refresh.test.ts +124 -0
- package/test/saeeol/commit-message/generate.test.ts +188 -0
- package/test/saeeol/commit-message/git-context.test.ts +303 -0
- package/test/saeeol/commit-message-windows.test.ts +38 -0
- package/test/saeeol/compaction-payload-recovery.test.ts +406 -0
- package/test/saeeol/compaction-preservation-audit.test.ts +122 -0
- package/test/saeeol/compaction-skip-guard.test.ts +224 -0
- package/test/saeeol/compaction-smart-select.test.ts +100 -0
- package/test/saeeol/config/config.test.ts +166 -0
- package/test/saeeol/config/indexing-default-plugin.test.ts +82 -0
- package/test/saeeol/config/opentelemetry-default.test.ts +29 -0
- package/test/saeeol/config-gitignore.test.ts +70 -0
- package/test/saeeol/config-injector.test.ts +305 -0
- package/test/saeeol/config-resilience.test.ts +234 -0
- package/test/saeeol/config-validation.test.ts +183 -0
- package/test/saeeol/cost-propagation.test.ts +94 -0
- package/test/saeeol/cost-tracker-extended.test.ts +141 -0
- package/test/saeeol/cost-tracker.test.ts +64 -0
- package/test/saeeol/custom-provider-delete.test.ts +149 -0
- package/test/saeeol/diff-full.test.ts +226 -0
- package/test/saeeol/edit-permission-filediff.test.ts +223 -0
- package/test/saeeol/encoding.test.ts +364 -0
- package/test/saeeol/enhance-prompt.test.ts +61 -0
- package/test/saeeol/ensure-plan-dir.test.ts +32 -0
- package/test/saeeol/errors.test.ts +144 -0
- package/test/saeeol/external-directory-boundary.test.ts +96 -0
- package/test/saeeol/gateway-headers.test.ts +88 -0
- package/test/saeeol/help.test.ts +191 -0
- package/test/saeeol/ignore-migrator.test.ts +308 -0
- package/test/saeeol/indexing-auth.test.ts +45 -0
- package/test/saeeol/indexing-feature.test.ts +44 -0
- package/test/saeeol/indexing-label.test.ts +70 -0
- package/test/saeeol/indexing-startup.test.ts +381 -0
- package/test/saeeol/indexing-worktree.test.ts +73 -0
- package/test/saeeol/instruction.test.ts +136 -0
- package/test/saeeol/lancedb-runtime.test.ts +116 -0
- package/test/saeeol/loader-auth.test.ts +168 -0
- package/test/saeeol/local-model.test.ts +621 -0
- package/test/saeeol/logo.test.ts +31 -0
- package/test/saeeol/lsp-typescript-lightweight.test.ts +89 -0
- package/test/saeeol/mcp-branding.test.ts +33 -0
- package/test/saeeol/mcp-docker-rm.test.ts +32 -0
- package/test/saeeol/mcp-migrator.test.ts +736 -0
- package/test/saeeol/mcp-oauth-callback.test.ts +33 -0
- package/test/saeeol/memory-io.test.ts +198 -0
- package/test/saeeol/memory-paths.test.ts +87 -0
- package/test/saeeol/memory-security.test.ts +166 -0
- package/test/saeeol/model-cache-org.test.ts +164 -0
- package/test/saeeol/model-info-panel-utils.test.ts +52 -0
- package/test/saeeol/model-info-panel.types.test.ts +7 -0
- package/test/saeeol/models-401-fallback.test.ts +52 -0
- package/test/saeeol/modes-migrator.test.ts +320 -0
- package/test/saeeol/nvidia-headers.test.ts +74 -0
- package/test/saeeol/patch-jsonc.test.ts +73 -0
- package/test/saeeol/patch.test.ts +172 -0
- package/test/saeeol/paths.test.ts +265 -0
- package/test/saeeol/permission/config-paths.test.ts +174 -0
- package/test/saeeol/permission/env-read.test.ts +149 -0
- package/test/saeeol/permission/external-directory-allow.test.ts +327 -0
- package/test/saeeol/permission/next.always-rules.test.ts +882 -0
- package/test/saeeol/permission/next.reply-http.test.ts +205 -0
- package/test/saeeol/permission/next.reply-routing.test.ts +184 -0
- package/test/saeeol/plan-exit-detection.test.ts +494 -0
- package/test/saeeol/plan-followup.test.ts +1376 -0
- package/test/saeeol/project-config-update.test.ts +120 -0
- package/test/saeeol/project-id.test.ts +455 -0
- package/test/saeeol/provider-cost.test.ts +171 -0
- package/test/saeeol/provider-list-failed-state.test.ts +100 -0
- package/test/saeeol/question-dismiss-all.test.ts +174 -0
- package/test/saeeol/read-directory.test.ts +116 -0
- package/test/saeeol/rules-migrator.test.ts +257 -0
- package/test/saeeol/run-auto.test.ts +176 -0
- package/test/saeeol/run-network.test.ts +224 -0
- package/test/saeeol/semantic-search.test.ts +186 -0
- package/test/saeeol/server/permission-allow-everything.test.ts +125 -0
- package/test/saeeol/session/instruction-substitution.test.ts +72 -0
- package/test/saeeol/session/platform-attribution.test.ts +118 -0
- package/test/saeeol/session/session.test.ts +105 -0
- package/test/saeeol/session-compaction-cap.test.ts +399 -0
- package/test/saeeol/session-compaction-chunks.test.ts +501 -0
- package/test/saeeol/session-compaction-safety.test.ts +481 -0
- package/test/saeeol/session-fork-remap.test.ts +251 -0
- package/test/saeeol/session-import-service.test.ts +114 -0
- package/test/saeeol/session-list.test.ts +47 -0
- package/test/saeeol/session-message-metadata.test.ts +128 -0
- package/test/saeeol/session-overflow.test.ts +78 -0
- package/test/saeeol/session-processor-empty-tool-calls.test.ts +571 -0
- package/test/saeeol/session-processor-network-offline.test.ts +204 -0
- package/test/saeeol/session-processor-retry-limit.test.ts +238 -0
- package/test/saeeol/session-processor-review-telemetry.test.ts +82 -0
- package/test/saeeol/session-prompt-compaction-safety.test.ts +517 -0
- package/test/saeeol/session-prompt-queue.test.ts +815 -0
- package/test/saeeol/sessions/inflight-cache.test.ts +157 -0
- package/test/saeeol/sessions/ingest-queue.test.ts +402 -0
- package/test/saeeol/sessions/remote-protocol.test.ts +258 -0
- package/test/saeeol/sessions/remote-sender.test.ts +1036 -0
- package/test/saeeol/sessions/remote-ws.test.ts +367 -0
- package/test/saeeol/sessions/sessions-enable-remote.test.disable +181 -0
- package/test/saeeol/slot-prop-reactivity.test.ts +142 -0
- package/test/saeeol/snapshot-cache.test.ts +84 -0
- package/test/saeeol/snapshot-freeze-repro.test.ts +100 -0
- package/test/saeeol/snapshot-track-timeout.test.ts +519 -0
- package/test/saeeol/stats-subagent-cost.test.ts +123 -0
- package/test/saeeol/suggestion/auto-dismiss.test.ts +65 -0
- package/test/saeeol/suggestion/suggestion.test.ts +145 -0
- package/test/saeeol/suggestion/tool.test.ts +298 -0
- package/test/saeeol/summary-file-diff.test.ts +28 -0
- package/test/saeeol/system-prompt.test.ts +142 -0
- package/test/saeeol/task-nesting.test.ts +193 -0
- package/test/saeeol/telemetry/feedback.test.ts +8 -0
- package/test/saeeol/todo-view.test.ts +57 -0
- package/test/saeeol/tool-encoding.test.ts +455 -0
- package/test/saeeol/tool-registry-indexing-import-failure.test.ts +49 -0
- package/test/saeeol/tool-registry-indexing.test.ts +236 -0
- package/test/saeeol/tool-registry-semantic-import-failure.test.ts +55 -0
- package/test/saeeol/tool-task-model.test.ts +352 -0
- package/test/saeeol/transform-opus-4.7.test.ts +89 -0
- package/test/saeeol/tui-diff.test.ts +91 -0
- package/test/saeeol/tui-sync.test.ts +80 -0
- package/test/saeeol/util/url.test.ts +141 -0
- package/test/saeeol/workflows-migrator.test.ts +261 -0
- package/test/saeeol/worktree-diff-summary.test.ts +64 -0
- package/test/saeeol/worktree-diff.test.ts +223 -0
- package/test/saeeol/worktree-remove-lock.test.ts +82 -0
- package/test/server/AGENTS.md +15 -0
- package/test/server/contract.test.ts +357 -0
- package/test/server/experimental-session-list.test.ts +157 -0
- package/test/server/global-session-list.test.ts +155 -0
- package/test/server/httpapi-authorization.test.ts +103 -0
- package/test/server/httpapi-bridge.test.ts +440 -0
- package/test/server/httpapi-config.test.ts +67 -0
- package/test/server/httpapi-cors.test.ts +89 -0
- package/test/server/httpapi-event.test.ts +57 -0
- package/test/server/httpapi-experimental.test.ts +219 -0
- package/test/server/httpapi-file.test.ts +79 -0
- package/test/server/httpapi-instance-context.test.ts +237 -0
- package/test/server/httpapi-instance.legacy.test.ts +140 -0
- package/test/server/httpapi-instance.test.ts +83 -0
- package/test/server/httpapi-json-parity.test.ts +263 -0
- package/test/server/httpapi-mcp-oauth.test.ts +76 -0
- package/test/server/httpapi-mcp.test.ts +189 -0
- package/test/server/httpapi-provider.test.ts +153 -0
- package/test/server/httpapi-pty-websocket.test.ts +16 -0
- package/test/server/httpapi-pty.test.ts +175 -0
- package/test/server/httpapi-raw-route-auth.test.ts +89 -0
- package/test/server/httpapi-sdk.test.ts +681 -0
- package/test/server/httpapi-session.test.ts +464 -0
- package/test/server/httpapi-sync.test.ts +130 -0
- package/test/server/httpapi-tui.test.ts +121 -0
- package/test/server/httpapi-workspace-routing.test.ts +471 -0
- package/test/server/httpapi-workspace.test.ts +427 -0
- package/test/server/lib/conformance.ts +88 -0
- package/test/server/lib/stateful.ts +112 -0
- package/test/server/project-init-git.test.ts +113 -0
- package/test/server/proxy-util.test.ts +113 -0
- package/test/server/session-actions.test.ts +49 -0
- package/test/server/session-list.test.ts +238 -0
- package/test/server/session-messages.test.ts +167 -0
- package/test/server/session-select.test.ts +100 -0
- package/test/server/trace-attributes.test.ts +76 -0
- package/test/server/workspace-proxy.test.ts +165 -0
- package/test/server/workspace-routing.test.ts +85 -0
- package/test/session/compaction.test.ts +2420 -0
- package/test/session/instruction.test.ts +247 -0
- package/test/session/llm.test.ts +1273 -0
- package/test/session/message-v2.test.ts +1291 -0
- package/test/session/messages-pagination.test.ts +1173 -0
- package/test/session/network.test.ts +249 -0
- package/test/session/processor-effect.test.ts +847 -0
- package/test/session/prompt.test.ts +2131 -0
- package/test/session/retry.test.ts +340 -0
- package/test/session/revert-compact.test.ts +639 -0
- package/test/session/schema-decoding.test.ts +311 -0
- package/test/session/session-entry-stepper.test.ts +917 -0
- package/test/session/session-schema.test.ts +76 -0
- package/test/session/snapshot-tool-race.test.ts +257 -0
- package/test/session/structured-output-integration.test.ts +265 -0
- package/test/session/structured-output.test.ts +381 -0
- package/test/session/system.test.ts +73 -0
- package/test/share/share-next.test.ts +333 -0
- package/test/shell/shell.test.ts +99 -0
- package/test/skill/discovery.test.ts +116 -0
- package/test/skill/skill.test.ts +393 -0
- package/test/snapshot/snapshot.test.ts +1531 -0
- package/test/storage/db.test.ts +23 -0
- package/test/storage/json-migration.test.ts +832 -0
- package/test/storage/storage.test.ts +293 -0
- package/test/suggestion/suggestion.test.ts +1 -0
- package/test/sync/index.test.ts +256 -0
- package/test/tool/__snapshots__/parameters.test.ts.snap +500 -0
- package/test/tool/__snapshots__/tool.test.ts.snap +9 -0
- package/test/tool/apply_patch.test.ts +614 -0
- package/test/tool/bash.test.ts +1225 -0
- package/test/tool/diagnostics-filter.test.ts +55 -0
- package/test/tool/edit.test.ts +754 -0
- package/test/tool/external-directory.test.ts +169 -0
- package/test/tool/fixtures/large-image.png +0 -0
- package/test/tool/fixtures/models-api.json +65179 -0
- package/test/tool/glob.test.ts +107 -0
- package/test/tool/grep.test.ts +114 -0
- package/test/tool/lsp.test.ts +187 -0
- package/test/tool/parameters.test.ts +243 -0
- package/test/tool/question.test.ts +129 -0
- package/test/tool/read.test.ts +500 -0
- package/test/tool/recall.test.ts +151 -0
- package/test/tool/registry.test.ts +203 -0
- package/test/tool/skill.test.ts +135 -0
- package/test/tool/suggest.test.ts +1 -0
- package/test/tool/task.test.ts +612 -0
- package/test/tool/tool-define.test.ts +99 -0
- package/test/tool/truncation.test.ts +260 -0
- package/test/tool/webfetch.test.ts +103 -0
- package/test/tool/write.test.ts +291 -0
- package/test/util/data-url.test.ts +14 -0
- package/test/util/effect-zod.test.ts +754 -0
- package/test/util/error.test.ts +38 -0
- package/test/util/filesystem.test.ts +656 -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/log.test.ts +86 -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/test/workspace/workspace-restore.test.ts +296 -0
- package/src/provider/models-snapshot.d.ts +0 -2
- package/src/provider/models-snapshot.js +0 -3
|
@@ -0,0 +1,221 @@
|
|
|
1
|
+
# Facade removal checklist
|
|
2
|
+
|
|
3
|
+
Concrete inventory of the remaining `makeRuntime(...)`-backed facades in `packages/saeeol`.
|
|
4
|
+
|
|
5
|
+
Current status on this branch:
|
|
6
|
+
|
|
7
|
+
- `src/` has 5 `makeRuntime(...)` call sites total.
|
|
8
|
+
- 2 are intentionally excluded from this checklist: `src/bus/index.ts` and `src/effect/cross-spawn-spawner.ts`.
|
|
9
|
+
- 1 is tracked primarily by the instance-context migration rather than facade removal: `src/project/instance.ts`.
|
|
10
|
+
- That leaves 2 live runtime-backed service facades still worth tracking here: `src/npm/index.ts` and `src/cli/cmd/tui/config/tui.ts`.
|
|
11
|
+
|
|
12
|
+
Recent progress:
|
|
13
|
+
|
|
14
|
+
- Wave 1 is merged: `Pty`, `Skill`, `Vcs`, `ToolRegistry`, `Auth`.
|
|
15
|
+
- Wave 2 is merged: `Config`, `Provider`, `File`, `LSP`, `MCP`.
|
|
16
|
+
|
|
17
|
+
## Priority hotspots
|
|
18
|
+
|
|
19
|
+
- `src/cli/cmd/tui/config/tui.ts` still exports `makeRuntime(...)` plus async facade helpers for `get()` and `waitForDependencies()`.
|
|
20
|
+
- `src/npm/index.ts` still exports `makeRuntime(...)` plus async facade helpers for `install()`, `add()`, `outdated()`, and `which()`.
|
|
21
|
+
- `src/project/instance.ts` still uses a dedicated runtime for project boot, but that file is really part of the broader legacy instance-context transition tracked in `instance-context.md`.
|
|
22
|
+
|
|
23
|
+
## Completed Batches
|
|
24
|
+
|
|
25
|
+
Low-risk batch, all merged:
|
|
26
|
+
|
|
27
|
+
1. `src/pty/index.ts`
|
|
28
|
+
2. `src/skill/index.ts`
|
|
29
|
+
3. `src/project/vcs.ts`
|
|
30
|
+
4. `src/tool/registry.ts`
|
|
31
|
+
5. `src/auth/index.ts`
|
|
32
|
+
|
|
33
|
+
Caller-heavy batch, all merged:
|
|
34
|
+
|
|
35
|
+
1. `src/config/config.ts`
|
|
36
|
+
2. `src/provider/provider.ts`
|
|
37
|
+
3. `src/file/index.ts`
|
|
38
|
+
4. `src/lsp/index.ts`
|
|
39
|
+
5. `src/mcp/index.ts`
|
|
40
|
+
|
|
41
|
+
Shared pattern:
|
|
42
|
+
|
|
43
|
+
- one service file still exports `makeRuntime(...)` + async facades
|
|
44
|
+
- one or two route or CLI entrypoints call those facades directly
|
|
45
|
+
- tests call the facade directly and need to switch to `yield* svc.method(...)`
|
|
46
|
+
- once callers are gone, delete `makeRuntime(...)`, remove async facade exports, and drop the `makeRuntime` import
|
|
47
|
+
|
|
48
|
+
## Done means
|
|
49
|
+
|
|
50
|
+
For each service in the low-risk batch, the work is complete only when all of these are true:
|
|
51
|
+
|
|
52
|
+
1. all production callers stop using `Namespace.method(...)` facade calls
|
|
53
|
+
2. all direct test callers stop using the facade and instead yield the service from context
|
|
54
|
+
3. the service file no longer has `makeRuntime(...)`
|
|
55
|
+
4. the service file no longer exports runtime-backed facade helpers
|
|
56
|
+
5. `grep` for the migrated facade methods only finds the service implementation itself or unrelated names
|
|
57
|
+
|
|
58
|
+
## Caller templates
|
|
59
|
+
|
|
60
|
+
### Route handlers
|
|
61
|
+
|
|
62
|
+
Use one `AppRuntime.runPromise(Effect.gen(...))` body and yield the service inside it.
|
|
63
|
+
|
|
64
|
+
```ts
|
|
65
|
+
const value = await AppRuntime.runPromise(
|
|
66
|
+
Effect.gen(function* () {
|
|
67
|
+
const pty = yield* Pty.Service
|
|
68
|
+
return yield* pty.list()
|
|
69
|
+
}),
|
|
70
|
+
)
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
If two service calls are independent, keep them in the same effect body and use `Effect.all(...)`.
|
|
74
|
+
|
|
75
|
+
### Plain async CLI or script entrypoints
|
|
76
|
+
|
|
77
|
+
If the caller is not itself an Effect service yet, still prefer one contiguous `AppRuntime.runPromise(Effect.gen(...))` block for the whole unit of work.
|
|
78
|
+
|
|
79
|
+
```ts
|
|
80
|
+
const skills = await AppRuntime.runPromise(
|
|
81
|
+
Effect.gen(function* () {
|
|
82
|
+
const auth = yield* Auth.Service
|
|
83
|
+
const skill = yield* Skill.Service
|
|
84
|
+
yield* auth.set(key, info)
|
|
85
|
+
return yield* skill.all()
|
|
86
|
+
}),
|
|
87
|
+
)
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
Only fall back to `AppRuntime.runPromise(Service.use(...))` for truly isolated one-off calls or awkward callback boundaries. Do not stack multiple tiny `runPromise(...)` calls in the same contiguous workflow.
|
|
91
|
+
|
|
92
|
+
This is the right intermediate state. Do not block facade removal on effectifying the whole CLI file.
|
|
93
|
+
|
|
94
|
+
### Bootstrap or fire-and-forget startup code
|
|
95
|
+
|
|
96
|
+
If the old facade call existed only to kick off initialization, call the service through the existing runtime for that file.
|
|
97
|
+
|
|
98
|
+
```ts
|
|
99
|
+
void BootstrapRuntime.runPromise(Vcs.Service.use((svc) => svc.init()))
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
Do not reintroduce a dedicated runtime in the service just for bootstrap.
|
|
103
|
+
|
|
104
|
+
### Tests
|
|
105
|
+
|
|
106
|
+
Convert facade tests to full effect style.
|
|
107
|
+
|
|
108
|
+
```ts
|
|
109
|
+
it.effect("does the thing", () =>
|
|
110
|
+
Effect.gen(function* () {
|
|
111
|
+
const svc = yield* Pty.Service
|
|
112
|
+
const info = yield* svc.create({ command: "cat", title: "a" })
|
|
113
|
+
yield* svc.remove(info.id)
|
|
114
|
+
}).pipe(Effect.provide(Pty.defaultLayer)),
|
|
115
|
+
)
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
If the repo test already uses `testEffect(...)`, prefer `testEffect(Service.defaultLayer)` and `yield* Service.Service` inside the test body.
|
|
119
|
+
|
|
120
|
+
Do not route tests through `AppRuntime` unless the test is explicitly exercising the app runtime. For facade removal, tests should usually provide the specific service layer they need.
|
|
121
|
+
|
|
122
|
+
If the test uses `provideTmpdirInstance(...)`, remember that fixture needs a live `ChildProcessSpawner` layer. For services whose `defaultLayer` does not already provide that infra, prefer the repo-standard cross-spawn layer:
|
|
123
|
+
|
|
124
|
+
```ts
|
|
125
|
+
const infra = CrossSpawnSpawner.defaultLayer
|
|
126
|
+
|
|
127
|
+
const it = testEffect(Layer.mergeAll(MyService.defaultLayer, infra))
|
|
128
|
+
```
|
|
129
|
+
|
|
130
|
+
Without that extra layer, tests fail at runtime with `Service not found: effect/process/ChildProcessSpawner`.
|
|
131
|
+
|
|
132
|
+
## Questions already answered
|
|
133
|
+
|
|
134
|
+
### Do we need to effectify the whole caller first?
|
|
135
|
+
|
|
136
|
+
No.
|
|
137
|
+
|
|
138
|
+
- route files: compose the handler with `AppRuntime.runPromise(Effect.gen(...))`
|
|
139
|
+
- CLI and scripts: use `AppRuntime.runPromise(Service.use(...))`
|
|
140
|
+
- bootstrap: use the existing bootstrap runtime
|
|
141
|
+
|
|
142
|
+
Facade removal does not require a bigger refactor than that.
|
|
143
|
+
|
|
144
|
+
### Should tests keep calling the namespace from async test bodies?
|
|
145
|
+
|
|
146
|
+
No. Convert them now.
|
|
147
|
+
|
|
148
|
+
The end state is `yield* svc.method(...)`, not `await Namespace.method(...)` inside `async` tests.
|
|
149
|
+
|
|
150
|
+
### Should we keep `runPromise` exported for convenience?
|
|
151
|
+
|
|
152
|
+
No. For this batch the goal is to delete the service-local runtime entirely.
|
|
153
|
+
|
|
154
|
+
### What if a route has websocket callbacks or nested async handlers?
|
|
155
|
+
|
|
156
|
+
Keep the route shape, but replace each facade call with `AppRuntime.runPromise(Service.use(...))` or wrap the surrounding async section in one `Effect.gen(...)` when practical. Do not keep the service facade just because the route has callback-shaped code.
|
|
157
|
+
|
|
158
|
+
### Should we use one `runPromise` per service call?
|
|
159
|
+
|
|
160
|
+
No.
|
|
161
|
+
|
|
162
|
+
Default to one contiguous `AppRuntime.runPromise(Effect.gen(...))` block per handler, command, or workflow. Yield every service you need inside that block.
|
|
163
|
+
|
|
164
|
+
Multiple tiny `runPromise(...)` calls are only acceptable when the caller structure forces it, such as websocket lifecycle callbacks, external callback APIs, or genuinely unrelated one-off operations.
|
|
165
|
+
|
|
166
|
+
### Should we wrap a single service expression in `Effect.gen(...)`?
|
|
167
|
+
|
|
168
|
+
Usually no.
|
|
169
|
+
|
|
170
|
+
Prefer the direct form when there is only one expression:
|
|
171
|
+
|
|
172
|
+
```ts
|
|
173
|
+
await AppRuntime.runPromise(File.Service.use((svc) => svc.read(path)))
|
|
174
|
+
```
|
|
175
|
+
|
|
176
|
+
Use `Effect.gen(...)` when the workflow actually needs multiple yielded values or branching.
|
|
177
|
+
|
|
178
|
+
## Learnings
|
|
179
|
+
|
|
180
|
+
These were the recurring mistakes and useful corrections from the first two batches:
|
|
181
|
+
|
|
182
|
+
1. Tests should usually provide the specific service layer, not `AppRuntime`.
|
|
183
|
+
2. If a test uses `provideTmpdirInstance(...)` and needs child processes, prefer `CrossSpawnSpawner.defaultLayer`.
|
|
184
|
+
3. Instance-scoped services may need both the service layer and the right instance fixture. `File` tests, for example, needed `provideInstance(...)` plus `File.defaultLayer`.
|
|
185
|
+
4. Do not wrap a single `Service.use(...)` call in `Effect.gen(...)` just to return it. Use the direct form.
|
|
186
|
+
5. For CLI readability, extract file-local preload helpers when the handler starts doing config load + service load + batched effect fanout inline.
|
|
187
|
+
6. When rebasing a facade branch after nearby merges, prefer the already-cleaned service/test version over older inline facade-era code.
|
|
188
|
+
|
|
189
|
+
## Remaining work
|
|
190
|
+
|
|
191
|
+
Most of the original facade-removal backlog is already done. The practical remaining work is narrower now:
|
|
192
|
+
|
|
193
|
+
1. remove the `Npm` runtime-backed facade from `src/npm/index.ts`
|
|
194
|
+
2. remove the `TuiConfig` runtime-backed facade from `src/cli/cmd/tui/config/tui.ts`
|
|
195
|
+
3. keep `src/project/instance.ts` in the separate instance-context migration, not this checklist
|
|
196
|
+
|
|
197
|
+
## Checklist
|
|
198
|
+
|
|
199
|
+
- [ ] `src/npm/index.ts` (`Npm`) - still exports runtime-backed async facade helpers on top of `Npm.Service`
|
|
200
|
+
- [ ] `src/cli/cmd/tui/config/tui.ts` (`TuiConfig`) - still exports runtime-backed async facade helpers on top of `TuiConfig.Service`
|
|
201
|
+
- [x] `src/session/session.ts` / `src/session/prompt.ts` / `src/session/revert.ts` / `src/session/summary.ts` - service-local facades removed
|
|
202
|
+
- [x] `src/agent/agent.ts` (`Agent`) - service-local facades removed
|
|
203
|
+
- [x] `src/permission/index.ts` (`Permission`) - service-local facades removed
|
|
204
|
+
- [x] `src/worktree/index.ts` (`Worktree`) - service-local facades removed
|
|
205
|
+
- [x] `src/plugin/index.ts` (`Plugin`) - service-local facades removed
|
|
206
|
+
- [x] `src/snapshot/index.ts` (`Snapshot`) - service-local facades removed
|
|
207
|
+
- [x] `src/file/index.ts` (`File`) - facades removed and merged
|
|
208
|
+
- [x] `src/lsp/index.ts` (`LSP`) - facades removed and merged
|
|
209
|
+
- [x] `src/mcp/index.ts` (`MCP`) - facades removed and merged
|
|
210
|
+
- [x] `src/config/config.ts` (`Config`) - facades removed and merged
|
|
211
|
+
- [x] `src/provider/provider.ts` (`Provider`) - facades removed and merged
|
|
212
|
+
- [x] `src/pty/index.ts` (`Pty`) - facades removed and merged
|
|
213
|
+
- [x] `src/skill/index.ts` (`Skill`) - facades removed and merged
|
|
214
|
+
- [x] `src/project/vcs.ts` (`Vcs`) - facades removed and merged
|
|
215
|
+
- [x] `src/tool/registry.ts` (`ToolRegistry`) - facades removed and merged
|
|
216
|
+
- [x] `src/auth/index.ts` (`Auth`) - facades removed and merged
|
|
217
|
+
|
|
218
|
+
## Excluded `makeRuntime(...)` sites
|
|
219
|
+
|
|
220
|
+
- `src/bus/index.ts` - core bus plumbing, not a normal facade-removal target.
|
|
221
|
+
- `src/effect/cross-spawn-spawner.ts` - runtime helper for `ChildProcessSpawner`, not a service namespace facade.
|
|
@@ -0,0 +1,401 @@
|
|
|
1
|
+
# HttpApi migration
|
|
2
|
+
|
|
3
|
+
Plan for replacing instance Hono route implementations with Effect `HttpApi` while preserving behavior, OpenAPI, and SDK output during the transition.
|
|
4
|
+
|
|
5
|
+
## End State
|
|
6
|
+
|
|
7
|
+
- JSON route contracts and handlers live in `src/server/routes/instance/httpapi/*`.
|
|
8
|
+
- Route modules own their `HttpApiGroup`, schemas, handlers, and route-level middleware.
|
|
9
|
+
- `httpapi/server.ts` only composes groups, instance lookup, observability, and the web handler bridge.
|
|
10
|
+
- Hono route implementations are deleted once their `HttpApi` replacements are default, tested, and represented in the SDK/OpenAPI pipeline.
|
|
11
|
+
- Streaming, SSE, and websocket routes move later through Effect HTTP primitives or another explicit replacement plan; they do not need to fit `HttpApi` if `HttpApi` is the wrong abstraction.
|
|
12
|
+
|
|
13
|
+
## Current State
|
|
14
|
+
|
|
15
|
+
- `KILO_EXPERIMENTAL_HTTPAPI` selects the backend at server startup. Default is still `hono`.
|
|
16
|
+
- `server/backend.ts` picks one of `effect-httpapi` or `hono`; `server.ts` builds either a pure Effect `HttpApi` web handler or the legacy Hono app accordingly. The earlier in-Hono "bridge" model has been replaced by this fork-at-startup.
|
|
17
|
+
- Legacy Hono routes remain mounted for the `hono` backend and remain the source for `hono-openapi` SDK generation.
|
|
18
|
+
- An Effect `HttpApi` OpenAPI surface exists (`OpenApi.fromApi(PublicApi)` in `cli/cmd/generate.ts --httpapi`, `KILO_SDK_OPENAPI=httpapi` in `packages/sdk/js/script/build.ts`) but is opt-in. The default SDK generation is still Hono.
|
|
19
|
+
- `httpapi/public.ts` carries the Hono-compat normalization for the Effect-generated OpenAPI surface (auth scheme strip, request-body required flag, optional `null` arms, `BadRequestError` / `NotFoundError` remap, `$ref` self-cycle fix, `auth_token` query injection). Today's Effect-generated SDK is not byte-identical to the Hono-generated SDK — see Phase 4.
|
|
20
|
+
- Auth is centrally configured for the Effect backend via Effect `Config` (`refactor: use Effect config for HttpApi authorization`, `Fix HttpApi raw route authorization`) rather than re-attached in each route module.
|
|
21
|
+
- Auth supports Basic auth and the legacy `auth_token` query parameter through `HttpApiSecurity.apiKey`.
|
|
22
|
+
- Instance context is provided by `httpapi/server.ts` using `directory`, `workspace`, and `x-saeeol-directory`.
|
|
23
|
+
- `Observability.layer` is provided in the Effect route layer and deduplicated through the shared `memoMap`.
|
|
24
|
+
- CORS middleware is wired into both backends (`feat(httpapi): add CORS middleware to instance routes`).
|
|
25
|
+
|
|
26
|
+
## Migration Rules
|
|
27
|
+
|
|
28
|
+
- Preserve runtime behavior first. Semantic changes, new error behavior, or route shape changes need separate PRs.
|
|
29
|
+
- Migrate one route group, or one coherent subset of a route group, at a time.
|
|
30
|
+
- Reuse existing services. Do not re-architect service logic during HTTP boundary migration.
|
|
31
|
+
- Effect Schema owns route DTOs. Keep `.zod` only as compatibility for remaining Hono/OpenAPI surfaces.
|
|
32
|
+
- Regenerate the SDK after schema or OpenAPI-affecting changes and verify the diff is expected.
|
|
33
|
+
- Do not delete a Hono route until the SDK/OpenAPI pipeline no longer depends on its Hono `describeRoute` entry.
|
|
34
|
+
|
|
35
|
+
## Route Slice Checklist
|
|
36
|
+
|
|
37
|
+
Use this checklist for each small HttpApi migration PR:
|
|
38
|
+
|
|
39
|
+
1. Read the legacy Hono route and copy behavior exactly, including default values, headers, operation IDs, response schemas, and status codes.
|
|
40
|
+
2. Put the new `HttpApiGroup`, route paths, DTO schemas, and handlers in `src/server/routes/instance/httpapi/*`.
|
|
41
|
+
3. Mount the new paths in `src/server/routes/instance/index.ts` only inside the `KILO_EXPERIMENTAL_HTTPAPI` block.
|
|
42
|
+
4. Use `InstanceState.context` / `InstanceState.directory` inside HttpApi handlers instead of `Instance.directory`, `Instance.worktree`, or `Instance.project` ALS globals.
|
|
43
|
+
5. Reuse existing services directly. If a service returns plain objects, use `Schema.Struct`; use `Schema.Class` only when handlers return actual class instances.
|
|
44
|
+
6. Keep legacy Hono routes and `.zod` compatibility in place for SDK/OpenAPI generation.
|
|
45
|
+
7. Add tests that hit the Hono-mounted bridge via `InstanceRoutes`, not only the raw `HttpApi` web handler, when the route depends on auth or instance context.
|
|
46
|
+
8. Run `bun typecheck` from `packages/saeeol`, relevant `bun run test:ci ...` tests from `packages/saeeol`, and `./packages/sdk/js/script/build.ts` from the repo root.
|
|
47
|
+
|
|
48
|
+
## Hono Deletion Checklist
|
|
49
|
+
|
|
50
|
+
Use this checklist before deleting any Hono route implementation. A route being `bridged` is not enough.
|
|
51
|
+
|
|
52
|
+
1. `HttpApi` parity is complete for the route path, method, auth behavior, query parameters, request body, response status, response headers, and error status.
|
|
53
|
+
2. The route is mounted by default, not only behind `KILO_EXPERIMENTAL_HTTPAPI`.
|
|
54
|
+
3. If a fallback flag exists, tests cover both the default `HttpApi` path and the fallback Hono path until the fallback is removed.
|
|
55
|
+
4. OpenAPI generation uses the Effect `HttpApi` route as the source for that path.
|
|
56
|
+
5. Generated SDK output is unchanged from the Hono-generated contract, or the SDK diff is intentionally reviewed and accepted.
|
|
57
|
+
6. The legacy Hono `describeRoute`, validator, and handler for that path are removed.
|
|
58
|
+
7. Any duplicate Zod-only DTOs are deleted or kept only as `.zod` compatibility on the canonical Effect Schema.
|
|
59
|
+
8. Bridge tests exist for auth, instance selection, success response, and route-specific side effects.
|
|
60
|
+
9. Mutation routes prove persisted side effects and cleanup behavior in tests. If the mutation disposes/reloads the active instance, disposal happens through an explicit post-response lifecycle hook rather than inline handler teardown.
|
|
61
|
+
10. Streaming, SSE, websocket, and UI bridge routes have a specific non-Hono replacement plan. Do not force them through `HttpApi` if raw Effect HTTP is a better fit.
|
|
62
|
+
|
|
63
|
+
Hono can be removed from the instance server only after all mounted Hono route groups meet this checklist and `server/routes/instance/index.ts` no longer depends on Hono routing for default behavior.
|
|
64
|
+
|
|
65
|
+
## Experimental Read Slice Guidance
|
|
66
|
+
|
|
67
|
+
For the experimental route group, port read-only JSON routes before mutations:
|
|
68
|
+
|
|
69
|
+
- Good first batch: `GET /console`, `GET /console/orgs`, `GET /tool/ids`, `GET /resource`.
|
|
70
|
+
- Consider `GET /worktree` only if the handler uses `InstanceState.context` instead of `Instance.project`.
|
|
71
|
+
- Defer `POST /console/switch`, worktree create/remove/reset, and `GET /session` to separate PRs because they mutate state or have broader pagination/session behavior.
|
|
72
|
+
- Preserve response headers such as pagination cursors if a route is ported.
|
|
73
|
+
- If SDK generation changes, explain whether it is a semantic contract change or a generator-equivalent type normalization.
|
|
74
|
+
|
|
75
|
+
## Schema Notes
|
|
76
|
+
|
|
77
|
+
- Use `Schema.Struct(...).annotate({ identifier })` for named OpenAPI refs when handlers return plain objects.
|
|
78
|
+
- Use `Schema.Class` only when the handler returns real class instances or the constructor requirement is intentional.
|
|
79
|
+
- Keep nested anonymous shapes as `Schema.Struct` unless a named SDK type is useful.
|
|
80
|
+
- Avoid parallel hand-written Zod and Effect definitions for the same route boundary.
|
|
81
|
+
|
|
82
|
+
## Phases
|
|
83
|
+
|
|
84
|
+
### 1. Stabilize The Bridge
|
|
85
|
+
|
|
86
|
+
Before porting more routes, cover the bridge behavior that every route depends on.
|
|
87
|
+
|
|
88
|
+
- Add tests that hit the Hono-mounted `HttpApi` bridge, not just `HttpApiBuilder.layer` directly.
|
|
89
|
+
- Cover auth disabled, Basic auth success, `auth_token` success, missing credentials, and bad credentials.
|
|
90
|
+
- Cover `directory` and `x-saeeol-directory` instance selection.
|
|
91
|
+
- Verify generated SDK output remains unchanged for non-SDK work.
|
|
92
|
+
- Fix or remove any implemented-but-unmounted `HttpApi` groups.
|
|
93
|
+
|
|
94
|
+
### 2. Complete The Inventory
|
|
95
|
+
|
|
96
|
+
Create a route inventory from the actual Hono registrations and classify each route.
|
|
97
|
+
|
|
98
|
+
Statuses:
|
|
99
|
+
|
|
100
|
+
- `bridged`: served through the `HttpApi` bridge when the flag is on.
|
|
101
|
+
- `implemented`: `HttpApi` group exists but is not mounted through Hono.
|
|
102
|
+
- `next`: good JSON candidate for near-term porting.
|
|
103
|
+
- `later`: portable, but needs schema/service cleanup first.
|
|
104
|
+
- `special`: SSE, websocket, streaming, or UI bridge behavior that likely needs raw Effect HTTP rather than `HttpApi`.
|
|
105
|
+
|
|
106
|
+
### 3. Finish JSON Route Parity
|
|
107
|
+
|
|
108
|
+
Port remaining JSON routes in small batches.
|
|
109
|
+
|
|
110
|
+
Good near-term candidates:
|
|
111
|
+
|
|
112
|
+
- top-level reads: `GET /path`, `GET /vcs`, `GET /vcs/diff`, `GET /command`, `GET /agent`, `GET /skill`, `GET /lsp`, `GET /formatter`
|
|
113
|
+
- simple mutations: `POST /instance/dispose`
|
|
114
|
+
- experimental JSON reads: console, tool, worktree list, resource list
|
|
115
|
+
- deferred JSON mutations: workspace/worktree create/remove/reset, file search, MCP auth flows
|
|
116
|
+
|
|
117
|
+
Keep large or stateful groups for later:
|
|
118
|
+
|
|
119
|
+
- `session`
|
|
120
|
+
- `sync`
|
|
121
|
+
- process-level experimental routes
|
|
122
|
+
|
|
123
|
+
### 4. Move OpenAPI And SDK Generation
|
|
124
|
+
|
|
125
|
+
Hono routes cannot be deleted while `hono-openapi` is the source of SDK generation.
|
|
126
|
+
|
|
127
|
+
Status: the Effect `HttpApi` OpenAPI surface is **implemented and opt-in** (`bun dev generate --httpapi`, `KILO_SDK_OPENAPI=httpapi`). Default SDK generation still uses Hono. `httpapi/public.ts` applies the Hono-compat normalization layer to the Effect output. Diff against the Hono-generated spec still shows real gaps that must be closed before the SDK can flip:
|
|
128
|
+
|
|
129
|
+
- Branded-type `pattern` constraints on ID schemas are not propagated to the Effect output (~169 missing).
|
|
130
|
+
- Per-property `description` annotations are not propagated through `Schema.Struct` to the Effect output (~107 missing).
|
|
131
|
+
- `Event.*` and `SyncEvent.*` component names use dotted form in Hono and PascalCase in Effect (~50 differences, breaks SDK type names).
|
|
132
|
+
- Effect's component deduper emits numbered duplicates (`Session9`, `SyncEvent.session.updated.11`) that need a name-collision fix.
|
|
133
|
+
- Cosmetic-only diffs (`additionalProperties: false`, `const` vs `enum`, MAX_SAFE_INTEGER `maximum`, `propertyNames`) can be normalized in `public.ts` if they would otherwise change SDK output.
|
|
134
|
+
|
|
135
|
+
Required before route deletion:
|
|
136
|
+
|
|
137
|
+
- Close the diff above so Effect-generated SDK output matches the Hono-generated SDK output for every retained path.
|
|
138
|
+
- Keep operation IDs, schemas, status codes, and SDK type names stable unless the change is intentional.
|
|
139
|
+
- Flip `packages/sdk/js/script/build.ts` default to `httpapi` and regenerate.
|
|
140
|
+
- Compare generated SDK output against `dev` for every route group deletion.
|
|
141
|
+
- Remove Hono OpenAPI stubs only after Effect OpenAPI is the SDK source for those paths.
|
|
142
|
+
|
|
143
|
+
V2 cleanup once SDK compatibility no longer needs the legacy Hono contract:
|
|
144
|
+
|
|
145
|
+
- Remove `public.ts` compatibility transforms that hide honest `HttpApi` metadata, including auth `securitySchemes`, per-route `security`, and generated `401` responses.
|
|
146
|
+
- Stop remapping built-in `HttpApi` error schemas back to legacy Hono `BadRequestError` / `NotFoundError` components if V2 clients can consume the actual Effect error shape.
|
|
147
|
+
- Prefer the direct `HttpApi` OpenAPI output for request/response bodies and named component schemas instead of rewriting it to match Hono generator quirks.
|
|
148
|
+
- Keep schema fixes that describe the actual wire format, but delete transforms that only preserve legacy SDK type names or inline-vs-ref shape.
|
|
149
|
+
- Re-evaluate `auth_token` as an OpenAPI security scheme rather than a hand-injected query parameter once clients can consume the V2 spec.
|
|
150
|
+
|
|
151
|
+
### 5. Make HttpApi Default For JSON Routes
|
|
152
|
+
|
|
153
|
+
After JSON parity and SDK generation are covered:
|
|
154
|
+
|
|
155
|
+
- Flip the bridge default for ported JSON routes.
|
|
156
|
+
- Keep a short-lived fallback flag for the old Hono implementation.
|
|
157
|
+
- Run the same tests against both the default and fallback path during rollout.
|
|
158
|
+
- Stop adding new Hono handlers for JSON routes once the default flips.
|
|
159
|
+
|
|
160
|
+
### 6. Delete Hono Route Implementations
|
|
161
|
+
|
|
162
|
+
Delete Hono routes group-by-group after each group meets the deletion criteria.
|
|
163
|
+
|
|
164
|
+
Deletion criteria:
|
|
165
|
+
|
|
166
|
+
- `HttpApi` route is mounted by default.
|
|
167
|
+
- Behavior is covered by bridge-level tests.
|
|
168
|
+
- OpenAPI/SDK generation comes from Effect for that path.
|
|
169
|
+
- SDK diff is zero or explicitly accepted.
|
|
170
|
+
- Legacy Hono route is no longer needed as a fallback.
|
|
171
|
+
|
|
172
|
+
After deleting a group:
|
|
173
|
+
|
|
174
|
+
- Remove its Hono route file or dead endpoints.
|
|
175
|
+
- Remove its `.route(...)` registration from `instance/index.ts`.
|
|
176
|
+
- Remove duplicate Zod-only route DTOs if Effect Schema now owns the type.
|
|
177
|
+
- Regenerate SDK and verify output.
|
|
178
|
+
|
|
179
|
+
### 7. Replace Special Routes
|
|
180
|
+
|
|
181
|
+
Special routes need explicit designs before Hono can disappear completely.
|
|
182
|
+
|
|
183
|
+
- `event`: SSE
|
|
184
|
+
- `pty`: websocket
|
|
185
|
+
- `tui`: UI/control bridge behavior
|
|
186
|
+
- streaming `session` endpoints
|
|
187
|
+
|
|
188
|
+
Use raw Effect HTTP routes where `HttpApi` does not fit. The goal is deleting Hono implementations, not forcing every transport shape through `HttpApi`.
|
|
189
|
+
|
|
190
|
+
## Current Route Status
|
|
191
|
+
|
|
192
|
+
| Area | Status | Notes |
|
|
193
|
+
|---|---|---|
|
|
194
|
+
| `question` | `bridged` | `GET /question`, reply, reject |
|
|
195
|
+
| `permission` | `bridged` | list and reply |
|
|
196
|
+
| `provider` | `bridged` | list, auth, OAuth authorize/callback |
|
|
197
|
+
| `config` | `bridged` | read, providers, update |
|
|
198
|
+
| `project` | `bridged` | list, current, git init, update |
|
|
199
|
+
| `file` | `bridged` partial | find text/file/symbol, list/content/status |
|
|
200
|
+
| `mcp` | `bridged` | status, add, OAuth, connect/disconnect |
|
|
201
|
+
| `workspace` | `bridged` | adapter/list/status/create/remove/session-restore |
|
|
202
|
+
| top-level instance routes | `bridged` | path, vcs, command, agent, skill, lsp, formatter, dispose |
|
|
203
|
+
| experimental JSON routes | `bridged` | console, tool, worktree list/mutations, global session list, resource list |
|
|
204
|
+
| `session` | `bridged` | read, lifecycle, prompt, message/part mutations, revert, permission reply |
|
|
205
|
+
| `sync` | `bridged` | start/replay/history |
|
|
206
|
+
| `event` | `bridged` | SSE via raw Effect HTTP |
|
|
207
|
+
| `pty` | `special` | websocket |
|
|
208
|
+
| `tui` | `special` | UI bridge |
|
|
209
|
+
|
|
210
|
+
## Full Route Checklist
|
|
211
|
+
|
|
212
|
+
This checklist tracks bridge parity only. Checked routes are available through the experimental `HttpApi` bridge; Hono deletion is tracked separately by the deletion checklist above.
|
|
213
|
+
|
|
214
|
+
### Top-Level Instance Routes
|
|
215
|
+
|
|
216
|
+
- [x] `POST /instance/dispose` - dispose active instance after response.
|
|
217
|
+
- [x] `GET /path` - current directory and worktree paths.
|
|
218
|
+
- [x] `GET /vcs` - current VCS status.
|
|
219
|
+
- [x] `GET /vcs/diff` - VCS diff summary.
|
|
220
|
+
- [x] `GET /command` - command catalog.
|
|
221
|
+
- [x] `GET /agent` - agent catalog.
|
|
222
|
+
- [x] `GET /skill` - skill catalog.
|
|
223
|
+
- [x] `GET /lsp` - LSP status.
|
|
224
|
+
- [x] `GET /formatter` - formatter status.
|
|
225
|
+
|
|
226
|
+
### Config Routes
|
|
227
|
+
|
|
228
|
+
- [x] `GET /config` - read config.
|
|
229
|
+
- [x] `PATCH /config` - update config and dispose active instance after response.
|
|
230
|
+
- [x] `GET /config/providers` - config provider summary.
|
|
231
|
+
|
|
232
|
+
### Project Routes
|
|
233
|
+
|
|
234
|
+
- [x] `GET /project` - list projects.
|
|
235
|
+
- [x] `GET /project/current` - current project.
|
|
236
|
+
- [x] `POST /project/git/init` - initialize git and reload active instance after response.
|
|
237
|
+
- [x] `PATCH /project/:projectID` - update project metadata.
|
|
238
|
+
|
|
239
|
+
### Provider Routes
|
|
240
|
+
|
|
241
|
+
- [x] `GET /provider` - list providers.
|
|
242
|
+
- [x] `GET /provider/auth` - list provider auth methods.
|
|
243
|
+
- [x] `POST /provider/:providerID/oauth/authorize` - start provider OAuth.
|
|
244
|
+
- [x] `POST /provider/:providerID/oauth/callback` - finish provider OAuth.
|
|
245
|
+
|
|
246
|
+
### Question Routes
|
|
247
|
+
|
|
248
|
+
- [x] `GET /question` - list questions.
|
|
249
|
+
- [x] `POST /question/:requestID/reply` - reply to question.
|
|
250
|
+
- [x] `POST /question/:requestID/reject` - reject question.
|
|
251
|
+
|
|
252
|
+
### Permission Routes
|
|
253
|
+
|
|
254
|
+
- [x] `GET /permission` - list permission requests.
|
|
255
|
+
- [x] `POST /permission/:requestID/reply` - reply to permission request.
|
|
256
|
+
|
|
257
|
+
### File Routes
|
|
258
|
+
|
|
259
|
+
- [x] `GET /find` - text search.
|
|
260
|
+
- [x] `GET /find/file` - file search.
|
|
261
|
+
- [x] `GET /find/symbol` - symbol search.
|
|
262
|
+
- [x] `GET /file` - list directory entries.
|
|
263
|
+
- [x] `GET /file/content` - read file content.
|
|
264
|
+
- [x] `GET /file/status` - file status.
|
|
265
|
+
|
|
266
|
+
### MCP Routes
|
|
267
|
+
|
|
268
|
+
- [x] `GET /mcp` - MCP status.
|
|
269
|
+
- [x] `POST /mcp` - add MCP server at runtime.
|
|
270
|
+
- [x] `POST /mcp/:name/auth` - start MCP OAuth.
|
|
271
|
+
- [x] `POST /mcp/:name/auth/callback` - finish MCP OAuth callback.
|
|
272
|
+
- [x] `POST /mcp/:name/auth/authenticate` - run MCP OAuth authenticate flow.
|
|
273
|
+
- [x] `DELETE /mcp/:name/auth` - remove MCP OAuth credentials.
|
|
274
|
+
- [x] `POST /mcp/:name/connect` - connect MCP server.
|
|
275
|
+
- [x] `POST /mcp/:name/disconnect` - disconnect MCP server.
|
|
276
|
+
|
|
277
|
+
### Experimental Routes
|
|
278
|
+
|
|
279
|
+
- [x] `GET /experimental/console` - active Console provider metadata.
|
|
280
|
+
- [x] `GET /experimental/console/orgs` - switchable Console orgs.
|
|
281
|
+
- [x] `POST /experimental/console/switch` - switch active Console org.
|
|
282
|
+
- [x] `GET /experimental/tool/ids` - tool IDs.
|
|
283
|
+
- [x] `GET /experimental/tool` - tools for provider/model.
|
|
284
|
+
- [x] `GET /experimental/worktree` - list worktrees.
|
|
285
|
+
- [x] `POST /experimental/worktree` - create worktree.
|
|
286
|
+
- [x] `DELETE /experimental/worktree` - remove worktree.
|
|
287
|
+
- [x] `POST /experimental/worktree/reset` - reset worktree.
|
|
288
|
+
- [x] `GET /experimental/session` - global session list.
|
|
289
|
+
- [x] `GET /experimental/resource` - MCP resources.
|
|
290
|
+
|
|
291
|
+
### Workspace Routes
|
|
292
|
+
|
|
293
|
+
- [x] `GET /experimental/workspace/adapter` - list workspace adapters.
|
|
294
|
+
- [x] `POST /experimental/workspace` - create workspace.
|
|
295
|
+
- [x] `GET /experimental/workspace` - list workspaces.
|
|
296
|
+
- [x] `GET /experimental/workspace/status` - workspace status.
|
|
297
|
+
- [x] `DELETE /experimental/workspace/:id` - remove workspace.
|
|
298
|
+
- [x] `POST /experimental/workspace/:id/session-restore` - restore session into workspace.
|
|
299
|
+
|
|
300
|
+
### Sync Routes
|
|
301
|
+
|
|
302
|
+
- [x] `POST /sync/start` - start workspace sync.
|
|
303
|
+
- [x] `POST /sync/replay` - replay sync events.
|
|
304
|
+
- [x] `POST /sync/history` - list sync event history.
|
|
305
|
+
|
|
306
|
+
### Session Routes
|
|
307
|
+
|
|
308
|
+
- [x] `GET /session` - list sessions.
|
|
309
|
+
- [x] `GET /session/status` - session status map.
|
|
310
|
+
- [x] `GET /session/:sessionID` - get session.
|
|
311
|
+
- [x] `GET /session/:sessionID/children` - get child sessions.
|
|
312
|
+
- [x] `GET /session/:sessionID/todo` - get session todos.
|
|
313
|
+
- [x] `POST /session` - create session.
|
|
314
|
+
- [x] `DELETE /session/:sessionID` - delete session.
|
|
315
|
+
- [x] `PATCH /session/:sessionID` - update session metadata.
|
|
316
|
+
- [x] `POST /session/:sessionID/init` - run project init command.
|
|
317
|
+
- [x] `POST /session/:sessionID/fork` - fork session.
|
|
318
|
+
- [x] `POST /session/:sessionID/abort` - abort session.
|
|
319
|
+
- [x] `POST /session/:sessionID/share` - share session.
|
|
320
|
+
- [x] `GET /session/:sessionID/diff` - session diff.
|
|
321
|
+
- [x] `DELETE /session/:sessionID/share` - unshare session.
|
|
322
|
+
- [x] `POST /session/:sessionID/summarize` - summarize session.
|
|
323
|
+
- [x] `GET /session/:sessionID/message` - list session messages.
|
|
324
|
+
- [x] `GET /session/:sessionID/message/:messageID` - get message.
|
|
325
|
+
- [x] `DELETE /session/:sessionID/message/:messageID` - delete message.
|
|
326
|
+
- [x] `DELETE /session/:sessionID/message/:messageID/part/:partID` - delete part.
|
|
327
|
+
- [x] `PATCH /session/:sessionID/message/:messageID/part/:partID` - update part.
|
|
328
|
+
- [x] `POST /session/:sessionID/message` - prompt with streaming response.
|
|
329
|
+
- [x] `POST /session/:sessionID/prompt_async` - async prompt.
|
|
330
|
+
- [x] `POST /session/:sessionID/command` - run command.
|
|
331
|
+
- [x] `POST /session/:sessionID/shell` - run shell command.
|
|
332
|
+
- [x] `POST /session/:sessionID/revert` - revert message.
|
|
333
|
+
- [x] `POST /session/:sessionID/unrevert` - restore reverted messages.
|
|
334
|
+
- [x] `POST /session/:sessionID/permissions/:permissionID` - deprecated permission response route.
|
|
335
|
+
|
|
336
|
+
### Event Routes
|
|
337
|
+
|
|
338
|
+
- [x] `GET /event` - SSE event stream via raw Effect HTTP.
|
|
339
|
+
|
|
340
|
+
### PTY Routes
|
|
341
|
+
|
|
342
|
+
- [x] `GET /pty` - list PTY sessions.
|
|
343
|
+
- [x] `POST /pty` - create PTY session.
|
|
344
|
+
- [x] `GET /pty/:ptyID` - get PTY session.
|
|
345
|
+
- [x] `PUT /pty/:ptyID` - update PTY session.
|
|
346
|
+
- [x] `DELETE /pty/:ptyID` - remove PTY session.
|
|
347
|
+
- [x] `GET /pty/:ptyID/connect` - PTY websocket; replace with raw Effect HTTP/websocket support.
|
|
348
|
+
|
|
349
|
+
### TUI Routes
|
|
350
|
+
|
|
351
|
+
- [x] `POST /tui/append-prompt` - append prompt.
|
|
352
|
+
- [x] `POST /tui/open-help` - open help.
|
|
353
|
+
- [x] `POST /tui/open-sessions` - open sessions.
|
|
354
|
+
- [x] `POST /tui/open-themes` - open themes.
|
|
355
|
+
- [x] `POST /tui/open-models` - open models.
|
|
356
|
+
- [x] `POST /tui/submit-prompt` - submit prompt.
|
|
357
|
+
- [x] `POST /tui/clear-prompt` - clear prompt.
|
|
358
|
+
- [x] `POST /tui/execute-command` - execute command.
|
|
359
|
+
- [x] `POST /tui/show-toast` - show toast.
|
|
360
|
+
- [x] `POST /tui/publish` - publish TUI event.
|
|
361
|
+
- [x] `POST /tui/select-session` - select session.
|
|
362
|
+
- [x] `GET /tui/control/next` - get next TUI request.
|
|
363
|
+
- [x] `POST /tui/control/response` - submit TUI control response.
|
|
364
|
+
|
|
365
|
+
## Remaining PR Plan
|
|
366
|
+
|
|
367
|
+
Prefer smaller PRs from here so route behavior and SDK/OpenAPI fallout stays reviewable.
|
|
368
|
+
|
|
369
|
+
1. [x] Bridge `PATCH /project/:projectID`.
|
|
370
|
+
2. [x] Bridge MCP add/connect/disconnect routes.
|
|
371
|
+
3. [x] Bridge MCP OAuth routes: start, callback, authenticate, remove.
|
|
372
|
+
4. [x] Bridge experimental console switch and tool list routes.
|
|
373
|
+
5. [x] Bridge experimental global session list.
|
|
374
|
+
6. [x] Bridge workspace create/remove/session-restore routes.
|
|
375
|
+
7. [x] Bridge sync start/replay/history routes.
|
|
376
|
+
8. [x] Bridge session read routes: list, status, get, children, todo, diff, messages.
|
|
377
|
+
9. [x] Bridge session lifecycle mutation routes: create, delete, update, fork, abort.
|
|
378
|
+
10. [x] Bridge remaining session mutation and prompt routes.
|
|
379
|
+
11. [ ] Replace event SSE with non-Hono Effect HTTP. The Effect backend has a raw Effect HTTP `httpapi/event.ts`; the Hono backend still uses `hono/streaming` `streamSSE`. Either port Hono `/event` to raw Effect HTTP for the fallback window, or skip and delete it together with Hono in step 15.
|
|
380
|
+
12. [x] Replace pty websocket/control routes with non-Hono Effect HTTP for the Effect backend. Hono `pty.ts` remains in the Hono backend.
|
|
381
|
+
13. [x] Replace tui bridge routes or explicitly isolate them behind a non-Hono compatibility layer for the Effect backend. Hono `tui.ts` remains in the Hono backend.
|
|
382
|
+
14. [ ] Switch OpenAPI/SDK generation to Effect routes and compare SDK output. Effect path is implemented and opt-in via `--httpapi` / `KILO_SDK_OPENAPI=httpapi`. Close the schema-shape gaps in `public.ts` (branded `pattern`, per-property `description`, `Event.*` / `SyncEvent.*` naming, dedup collisions), then flip `packages/sdk/js/script/build.ts` default.
|
|
383
|
+
15. [ ] Flip `backend.ts` default from `hono` to `effect-httpapi`, keep `KILO_EXPERIMENTAL_HTTPAPI` (or its inverse) as a short fallback flag, then delete replaced Hono route files.
|
|
384
|
+
|
|
385
|
+
## Checklist
|
|
386
|
+
|
|
387
|
+
- [x] Add first `HttpApi` JSON route slices.
|
|
388
|
+
- [x] Bridge selected `HttpApi` routes behind `KILO_EXPERIMENTAL_HTTPAPI`. (Now backend-fork-at-startup rather than in-Hono path mounting.)
|
|
389
|
+
- [x] Reuse existing Effect services in handlers.
|
|
390
|
+
- [x] Provide auth, instance lookup, and observability in the Effect route layer.
|
|
391
|
+
- [x] Centralize auth via Effect `Config` for the Effect backend.
|
|
392
|
+
- [x] Support `auth_token` as a query security scheme.
|
|
393
|
+
- [x] Add bridge-level auth and instance tests.
|
|
394
|
+
- [x] Complete exact Hono route inventory.
|
|
395
|
+
- [x] Resolve implemented-but-unmounted route groups.
|
|
396
|
+
- [x] Port remaining top-level JSON reads.
|
|
397
|
+
- [x] Implement Effect `HttpApi` OpenAPI generation behind `--httpapi` / `KILO_SDK_OPENAPI=httpapi`.
|
|
398
|
+
- [ ] Close Effect-vs-Hono OpenAPI schema-shape gaps and flip the SDK generator default.
|
|
399
|
+
- [ ] Flip the runtime backend default from `hono` to `effect-httpapi`, with a short fallback flag.
|
|
400
|
+
- [ ] Delete replaced Hono route implementations.
|
|
401
|
+
- [ ] Replace SSE/websocket/streaming Hono routes with non-Hono implementations (or remove with the rest of Hono).
|