10 KiB
Effect TODO
Short roadmap for Effect cleanup in packages/opencode.
Current patterns and examples live in guide.md. Error
boundary migration details live in
error-boundaries-plan.md. Test migration rules live in
test/EFFECT_TEST_MIGRATION.md.
Older deep-dive notes in this directory may still be useful, but treat
this roadmap and the guide as the current entry points.
This is a planning map, not a verified inventory. Before starting a task,
re-run a targeted git grep from current dev and update this file if
the inventory changed.
Priorities
P0 ERR + RENDER + HTTP
Make expected failures typed, render them well, and stop relying on
generic HTTP error guesswork.
P1 TEST
Convert touched tests to the ideal Effect test patterns from the guide.
P2 RF
Move mutable runtime flags into typed runtime/config services.
P3 GLOBAL
Make global paths explicit and remove import-time side effects.
P4 INST + BRIDGE
Remove ambient Instance coupling while keeping Promise/callback interop.
P5 PROC + FS
Replace raw process/filesystem edges with typed Effect services.
P6 OA
Shrink OpenAPI compatibility shims as source schemas improve.
Work Paths
ERRTyped errors — replace legacyNamedError.create(...)andEffect.die(...)for expected service failures withSchema.TaggedErrorClasserrors on the Effect error channel. Shrinks:NamedErrorusage.RENDERUser-visible error rendering — preserve structured typed-error details at CLI, HTTP, and tool boundaries. Shrinks: opaqueError: Namerendering.HTTPHTTP route cleanup — make route errors explicit instead of relying on generic middleware to guess status/body from error names. Shrinks:middleware/error.tsand route-level compatibility shims.TESTEffect test migration — usetestEffect,it.live, andit.instancewith explicit layers. Shrinks: Promise-style tests, sleeps, mutable global test flags.RFRuntimeFlags / Flag deletion — move mutableFlagreads into typed runtime/config services. Shrinks:flag.ts,test/fixture/flag.ts.GLOBALGlobal paths / import side effects — make global path state explicit and testable instead of mutable module state. Shrinks:global.tsimport-time side effects, mutableGlobal.Pathoverrides, and itsFlagdependency.INSTInstance shim — remove ambientInstanceusage and old ALS access patterns. Shrinks:src/project/instance.ts.BRIDGEPromise/callback interop — keep bridge helpers, but reduce legacy ALS coupling. Shrinks:src/effect/bridge.tsdependency onproject/instance.ts.PROCAppProcess migration — preferAppProcess.Serviceover raw process wrappers. Shrinks: direct spawn callsites and legacy process helpers.FSAppFileSystem migration — preferAppFileSystem.Serviceover raw filesystem APIs. Shrinks: directfs/Bun.fileservice callsites where inappropriate.RTRuntime/facade cleanup — remove service-localmakeRuntimefacades when not intentional. Shrinks: async facade exports around services andrun-service.tsusage.OAOpenAPI compatibility — tighten source schemas instead of post-processing generated OpenAPI. Shrinks: schema workaround blocks inpublic.ts.
P0: Errors, Rendering, And HTTP
This should be the next big cleanup theme. The codebase is moving toward typed Effect failures, but the user-facing boundaries still leak old shapes and sometimes collapse rich errors into opaque strings.
Problems
- Some expected service failures still use
NamedError.create(...). - Some expected service failures still become
Effect.die(...), which makes them defects instead of typed, recoverable failures. - CLI and HTTP boundaries can render structured errors as generic
Error: SomeNameoutput. - HTTP error middleware still guesses status codes from error names like
Worktree*orProviderAuthValidationFailed. - Route handlers and route groups do not consistently declare the public error body they intend to expose.
- Repeated route error translations do not yet have a clear home: some should stay inline, some deserve tiny shared mapper helpers.
- Unknown 500s should log full detail server-side while returning a safe public body.
Target Shape
- Services define expected failures with
Schema.TaggedErrorClass. - Services export an
Errorunion and include it in method return types. - Expected failures stay on the Effect error channel.
Effect.die(...)is reserved for defects: bugs, impossible states, violated invariants, or final unknown-boundary fallbacks.- Inside
Effect.gen/Effect.fn, useyield* new MyError(...)for direct expected failures. - Domain services do not import HTTP status codes,
HttpApiError, or route-specific error schemas. - HTTP route groups make their public error contracts obvious.
- Handlers map service errors to declared HTTP errors at the boundary.
- Shared mapper helpers are only for repeated translations, not a giant central registry of every domain error.
- Generic HTTP middleware should shrink; it should not accumulate more name-based domain knowledge.
First PR Candidates
RENDER-1Fix CLI top-level rendering for typed config errors.ERR-1Convertstorage/storage.tsnot-found errors.ERR-2Convertworktree/index.tserrors and remove matching HTTP name checks where possible.ERR-3Convertprovider/auth.tsvalidation errors.HTTP-1Remove the unknown-500 stack leak frommiddleware/error.ts.HTTP-2Audit one route group for explicit error contracts and decide which mappings stay inline vs. shared helper.
P1: Tests
When touching tests, migrate them toward the ideal patterns in
test/EFFECT_TEST_MIGRATION.md:
- Use
testEffect(...)with explicit layers. - Prefer
it.instance(...)for service tests that need an instance. - Prefer
it.live(...)for real timers, filesystem mtimes, child processes, git, locks, or other live integration behavior. - Avoid sleeps; wait on real events or deterministic state transitions.
- Do not mutate
process.envor mutable globals after layers are built. - Use explicit layer variants, such as
RuntimeFlags.layer(...), for behavior changes.
P2: RuntimeFlags / Flag Deletion
Recently completed:
- Plugin/pure-mode flags moved to RuntimeFlags.
- Tool visibility flags moved to RuntimeFlags.
- Built-in websearch provider selection uses the same runtime flags as tool visibility.
- Removed global default-plugin disabling from test preload.
Recommended next PRs:
RF-1 scout consumers ─┐
├─ can run in parallel
RF-2 plan-mode prompt ┘
└─ RF-3 event-system cluster, stacked only if RF-2 still touches prompt.ts
RF-4 workspaces cluster: later, after mutable Flag tests are cleaned up
RF-1Move scout reads inagent.tsandreference.ts.RF-2Move plan-mode prompt read insession/prompt.ts.RF-3Move event-system reads in session prompt/processor/ compaction and TUI debug plugin.RF-4Move workspaces reads in session/sync/control-plane after tests stop relying on mutableFlagtiming.- Delete
test/fixture/flag.tsonce tests no longer mutateFlag. - Delete
flag.tsonce no packages import it.
P3: Global Paths
global.ts is real connective tissue, not
just cosmetic ugliness. It currently mixes path calculation, import-time
directory creation, Flock setup, mutable exported Path state, and a
Flag dependency.
Problems to reduce:
- Importing the module creates directories.
- Tests override
Global.Pathby mutating exported module state. - Most callers use
Global.Pathdirectly instead of the Effect service. Global.make()still reads mutableFlag.OPENCODE_CONFIG_DIR.
Next PR candidates:
- Replace mutable
Global.Pathtest overrides with explicit test layers or scoped helpers. - Move directory creation and
Flocksetup behind an explicit init boundary where possible. - Remove the
Flagdependency from global path resolution.
P4: Instance And Bridge
project/instance.ts is the deletion
target. effect/bridge.ts is not a near-term
deletion target; Promise/callback interop will continue to exist.
Goal:
- Keep a sanctioned bridge for Promise/callback boundaries.
- Reduce bridge dependence on legacy
Instance.restore/Instance.current. - Move callers toward
InstanceRef,WorkspaceRef,InstanceState, or explicit context where practical. - Delete
project/instance.tsonly after ambient Instance coupling is gone.
Lower Priority Tracks
PROC/FS— continue AppProcess and AppFileSystem migrations as focused PRs when touching relevant files.RT— remove service-local runtime facades only when they are not an intentional boundary.OA— shrinkpublic.tsby tightening source schemas one workaround at a time.fetch→HttpClient— migrate raw fetch callsites when the caller is already effectful or being effectified.Tools— remaining tool cleanup is narrow:webfetchHTML extraction andshellraw stream/promise edges.