feat: add experimental background subagents (#27084)

This commit is contained in:
Shoubhit Dash 2026-05-14 22:10:15 +05:30 committed by GitHub
commit 22de34c4de
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
21 changed files with 975 additions and 101 deletions

View file

@ -13,6 +13,7 @@ import { Bus } from "@/bus"
import { Storage } from "@/storage/storage"
import { SyncEvent } from "@/sync"
import { RuntimeFlags } from "@/effect/runtime-flags"
import { BackgroundJob } from "@/background/job"
void Log.init({ print: false })
const it = testEffect(
@ -21,6 +22,7 @@ const it = testEffect(
Layer.provide(Storage.defaultLayer),
Layer.provide(SyncEvent.defaultLayer),
Layer.provide(RuntimeFlags.layer({ experimentalWorkspaces: false })),
Layer.provide(BackgroundJob.defaultLayer),
),
)