Compare commits

...
Author SHA1 Message Date
Kit Langton d1bb7b2828 Merge branch 'dev' into kit/effectify-plugin 2026-03-20 15:53:27 -04:00
Kit LangtonandGitHub bd292585a4 Merge branch 'dev' into kit/effectify-plugin 2026-03-20 09:17:31 -04:00
Kit LangtonandGitHub 65b370de08 Merge branch 'dev' into kit/effectify-plugin 2026-03-19 21:16:38 -04:00
Kit LangtonandGitHub 88e5830af0 Merge branch 'dev' into kit/effectify-plugin 2026-03-19 19:27:46 -04:00
Kit Langton f495422fa9 log errors in catchCause instead of silently swallowing 2026-03-19 16:23:08 -04:00
Kit Langton 080d3b93c6 use forkScoped + Fiber.join for lazy init (match old Instance.state behavior) 2026-03-19 16:13:37 -04:00
Kit Langton 604697f7f8 effectify Plugin service: migrate from Instance.state to Effect service pattern
Replace the legacy Instance.state() lazy-init pattern with the standard
Effect service pattern (Interface, Service class, Layer, promise facades).
Register Plugin.Service in InstanceServices and add its layer to the
instance lookup.
2026-03-19 15:14:41 -04:00
Kit Langton b9de3ad370 fix(bus): tighten GlobalBus payload and BusEvent.define types
Constrain BusEvent.define to ZodObject instead of ZodType so TS knows
event properties are always a record. Type GlobalBus payload as
{ type: string; properties: Record<string, unknown> } instead of any.

Refactor watcher test to use Bus.subscribe instead of raw GlobalBus
listener, removing hand-rolled event types and unnecessary casts.
2026-03-19 15:12:21 -04:00
8 changed files with 208 additions and 133 deletions
+1 -1
View File
@@ -126,7 +126,7 @@ Done now:
Still open and likely worth migrating: Still open and likely worth migrating:
- [ ] `Plugin` - [x] `Plugin`
- [ ] `ToolRegistry` - [ ] `ToolRegistry`
- [ ] `Pty` - [ ] `Pty`
- [ ] `Worktree` - [ ] `Worktree`
+2 -2
View File
@@ -1,5 +1,5 @@
import z from "zod" import z from "zod"
import type { ZodType } from "zod" import type { ZodObject, ZodRawShape } from "zod"
import { Log } from "../util/log" import { Log } from "../util/log"
export namespace BusEvent { export namespace BusEvent {
@@ -9,7 +9,7 @@ export namespace BusEvent {
const registry = new Map<string, Definition>() const registry = new Map<string, Definition>()
export function define<Type extends string, Properties extends ZodType>(type: Type, properties: Properties) { export function define<Type extends string, Properties extends ZodObject<ZodRawShape>>(type: Type, properties: Properties) {
const result = { const result = {
type, type,
properties, properties,
+1 -1
View File
@@ -4,7 +4,7 @@ export const GlobalBus = new EventEmitter<{
event: [ event: [
{ {
directory?: string directory?: string
payload: any payload: { type: string; properties: Record<string, unknown> }
}, },
] ]
}>() }>()
@@ -124,7 +124,7 @@ export namespace Workspace {
await parseSSE(res.body, stop, (event) => { await parseSSE(res.body, stop, (event) => {
GlobalBus.emit("event", { GlobalBus.emit("event", {
directory: space.id, directory: space.id,
payload: event, payload: event as { type: string; properties: Record<string, unknown> },
}) })
}) })
// Wait 250ms and retry if SSE connection fails // Wait 250ms and retry if SSE connection fails
@@ -10,6 +10,7 @@ import { ProviderAuth } from "@/provider/auth-service"
import { Question } from "@/question/service" import { Question } from "@/question/service"
import { Skill } from "@/skill/service" import { Skill } from "@/skill/service"
import { Snapshot } from "@/snapshot/service" import { Snapshot } from "@/snapshot/service"
import { Plugin } from "@/plugin"
import { InstanceContext } from "./instance-context" import { InstanceContext } from "./instance-context"
import { registerDisposer } from "./instance-registry" import { registerDisposer } from "./instance-registry"
@@ -26,6 +27,7 @@ export type InstanceServices =
| File.Service | File.Service
| Skill.Service | Skill.Service
| Snapshot.Service | Snapshot.Service
| Plugin.Service
// NOTE: LayerMap only passes the key (directory string) to lookup, but we need // NOTE: LayerMap only passes the key (directory string) to lookup, but we need
// the full instance context (directory, worktree, project). We read from the // the full instance context (directory, worktree, project). We read from the
@@ -46,6 +48,7 @@ function lookup(_key: string) {
File.layer, File.layer,
Skill.defaultLayer, Skill.defaultLayer,
Snapshot.defaultLayer, Snapshot.defaultLayer,
Plugin.layer,
).pipe(Layer.provide(ctx)) ).pipe(Layer.provide(ctx))
} }
+97 -35
View File
@@ -1,28 +1,52 @@
import type { Hooks, PluginInput, Plugin as PluginInstance } from "@opencode-ai/plugin" import type { Hooks, PluginInput, Plugin as PluginInstance } from "@opencode-ai/plugin"
import { Config } from "../config/config"
import { Bus } from "../bus" import { Bus } from "../bus"
import { Log } from "../util/log" import { Log } from "../util/log"
import { createOpencodeClient } from "@opencode-ai/sdk" import { createOpencodeClient } from "@opencode-ai/sdk"
import { Server } from "../server/server"
import { BunProc } from "../bun" import { BunProc } from "../bun"
import { Instance } from "../project/instance"
import { Flag } from "../flag/flag" import { Flag } from "../flag/flag"
import { CodexAuthPlugin } from "./codex"
import { Session } from "../session"
import { NamedError } from "@opencode-ai/util/error" import { NamedError } from "@opencode-ai/util/error"
import { CopilotAuthPlugin } from "./copilot" import { Effect, Layer, ServiceMap } from "effect"
import { gitlabAuthPlugin as GitlabAuthPlugin } from "opencode-gitlab-auth" import { InstanceContext } from "@/effect/instance-context"
export namespace Plugin { export namespace Plugin {
const log = Log.create({ service: "plugin" }) const log = Log.create({ service: "plugin" })
// Built-in plugins that are directly imported (not installed from npm) export interface Interface {
const INTERNAL_PLUGINS: PluginInstance[] = [CodexAuthPlugin, CopilotAuthPlugin, GitlabAuthPlugin] readonly trigger: <
Name extends Exclude<keyof Required<Hooks>, "auth" | "event" | "tool">,
Input = Parameters<Required<Hooks>[Name]>[0],
Output = Parameters<Required<Hooks>[Name]>[1],
>(
name: Name,
input: Input,
output: Output,
) => Effect.Effect<Output>
readonly list: () => Effect.Effect<Hooks[]>
readonly init: () => Effect.Effect<void>
}
const state = Instance.state(async () => { export class Service extends ServiceMap.Service<Service, Interface>()("@opencode/Plugin") {}
export const layer = Layer.effect(
Service,
Effect.gen(function* () {
const instance = yield* InstanceContext
const hooks: Hooks[] = []
let task: Promise<void> | undefined
const load = Effect.fn("Plugin.load")(function* () {
yield* Effect.promise(async () => {
const [{ Config }, { Server }, codex, copilot, gitlab] = await Promise.all([
import("../config/config"),
import("../server/server"),
import("./codex"),
import("./copilot"),
import("opencode-gitlab-auth"),
])
const internal: PluginInstance[] = [codex.CodexAuthPlugin, copilot.CopilotAuthPlugin, gitlab.gitlabAuthPlugin]
const client = createOpencodeClient({ const client = createOpencodeClient({
baseUrl: "http://localhost:4096", baseUrl: "http://localhost:4096",
directory: Instance.directory, directory: instance.directory,
headers: Flag.OPENCODE_SERVER_PASSWORD headers: Flag.OPENCODE_SERVER_PASSWORD
? { ? {
Authorization: `Basic ${Buffer.from(`${Flag.OPENCODE_SERVER_USERNAME ?? "opencode"}:${Flag.OPENCODE_SERVER_PASSWORD}`).toString("base64")}`, Authorization: `Basic ${Buffer.from(`${Flag.OPENCODE_SERVER_USERNAME ?? "opencode"}:${Flag.OPENCODE_SERVER_PASSWORD}`).toString("base64")}`,
@@ -31,19 +55,18 @@ export namespace Plugin {
fetch: async (...args) => Server.Default().fetch(...args), fetch: async (...args) => Server.Default().fetch(...args),
}) })
const config = await Config.get() const config = await Config.get()
const hooks: Hooks[] = []
const input: PluginInput = { const input: PluginInput = {
client, client,
project: Instance.project, project: instance.project,
worktree: Instance.worktree, worktree: instance.worktree,
directory: Instance.directory, directory: instance.directory,
get serverUrl(): URL { get serverUrl(): URL {
return Server.url ?? new URL("http://localhost:4096") return Server.url ?? new URL("http://localhost:4096")
}, },
$: Bun.$, $: Bun.$,
} }
for (const plugin of INTERNAL_PLUGINS) { for (const plugin of internal) {
log.info("loading internal plugin", { name: plugin.name }) log.info("loading internal plugin", { name: plugin.name })
const init = await plugin(input).catch((err) => { const init = await plugin(input).catch((err) => {
log.error("failed to load internal plugin", { name: plugin.name, error: err }) log.error("failed to load internal plugin", { name: plugin.name, error: err })
@@ -66,11 +89,13 @@ export namespace Plugin {
const cause = err instanceof Error ? err.cause : err const cause = err instanceof Error ? err.cause : err
const detail = cause instanceof Error ? cause.message : String(cause ?? err) const detail = cause instanceof Error ? cause.message : String(cause ?? err)
log.error("failed to install plugin", { pkg, version, error: detail }) log.error("failed to install plugin", { pkg, version, error: detail })
void import("../session").then(({ Session }) =>
Bus.publish(Session.Event.Error, { Bus.publish(Session.Event.Error, {
error: new NamedError.Unknown({ error: new NamedError.Unknown({
message: `Failed to install plugin ${pkg}@${version}: ${detail}`, message: `Failed to install plugin ${pkg}@${version}: ${detail}`,
}).toObject(), }).toObject(),
}) }),
)
return "" return ""
}) })
if (!plugin) continue if (!plugin) continue
@@ -90,27 +115,36 @@ export namespace Plugin {
.catch((err) => { .catch((err) => {
const message = err instanceof Error ? err.message : String(err) const message = err instanceof Error ? err.message : String(err)
log.error("failed to load plugin", { path: plugin, error: message }) log.error("failed to load plugin", { path: plugin, error: message })
void import("../session").then(({ Session }) =>
Bus.publish(Session.Event.Error, { Bus.publish(Session.Event.Error, {
error: new NamedError.Unknown({ error: new NamedError.Unknown({
message: `Failed to load plugin ${plugin}: ${message}`, message: `Failed to load plugin ${plugin}: ${message}`,
}).toObject(), }).toObject(),
}) }),
)
}) })
} }
})
return {
hooks,
input,
}
}) })
export async function trigger< const ensure = Effect.fn("Plugin.ensure")(function* () {
yield* Effect.promise(() => {
task ??= Effect.runPromise(
load().pipe(Effect.catchCause((cause) => Effect.sync(() => log.error("init failed", { cause })))),
)
return task
})
})
const trigger = Effect.fn("Plugin.trigger")(function* <
Name extends Exclude<keyof Required<Hooks>, "auth" | "event" | "tool">, Name extends Exclude<keyof Required<Hooks>, "auth" | "event" | "tool">,
Input = Parameters<Required<Hooks>[Name]>[0], Input = Parameters<Required<Hooks>[Name]>[0],
Output = Parameters<Required<Hooks>[Name]>[1], Output = Parameters<Required<Hooks>[Name]>[1],
>(name: Name, input: Input, output: Output): Promise<Output> { >(name: Name, input: Input, output: Output) {
if (!name) return output if (!name) return output
for (const hook of await state().then((x) => x.hooks)) { yield* ensure()
yield* Effect.promise(async () => {
for (const hook of hooks) {
const fn = hook[name] const fn = hook[name]
if (!fn) continue if (!fn) continue
// @ts-expect-error if you feel adventurous, please fix the typing, make sure to bump the try-counter if you // @ts-expect-error if you feel adventurous, please fix the typing, make sure to bump the try-counter if you
@@ -118,27 +152,55 @@ export namespace Plugin {
// try-counter: 2 // try-counter: 2
await fn(input, output) await fn(input, output)
} }
})
return output return output
} })
export async function list() { const list = Effect.fn("Plugin.list")(function* () {
return state().then((x) => x.hooks) yield* ensure()
} return hooks
})
export async function init() { const init = Effect.fn("Plugin.init")(function* () {
const hooks = await state().then((x) => x.hooks) yield* ensure()
yield* Effect.promise(async () => {
const { Config } = await import("../config/config")
const config = await Config.get() const config = await Config.get()
for (const hook of hooks) { for (const hook of hooks) {
// @ts-expect-error this is because we haven't moved plugin to sdk v2 await (hook as any).config?.(config)
await hook.config?.(config)
} }
Bus.subscribeAll(async (input) => { Bus.subscribeAll(async (input) => {
const hooks = await state().then((x) => x.hooks)
for (const hook of hooks) { for (const hook of hooks) {
hook["event"]?.({ hook["event"]?.({
event: input, event: input,
}) })
} }
}) })
})
})
return Service.of({ trigger, list, init })
}),
).pipe(Layer.fresh)
async function run<A, E>(effect: Effect.Effect<A, E, Service>) {
const { runPromiseInstance } = await import("@/effect/runtime")
return runPromiseInstance(effect)
}
export async function trigger<
Name extends Exclude<keyof Required<Hooks>, "auth" | "event" | "tool">,
Input = Parameters<Required<Hooks>[Name]>[0],
Output = Parameters<Required<Hooks>[Name]>[1],
>(name: Name, input: Input, output: Output): Promise<Output> {
return run(Service.use((svc) => svc.trigger(name, input, output)))
}
export async function list(): Promise<Hooks[]> {
return run(Service.use((svc) => svc.list()))
}
export async function init() {
return run(Service.use((svc) => svc.init()))
} }
} }
+22 -12
View File
@@ -1,4 +1,4 @@
import type { AuthOuathResult } from "@opencode-ai/plugin" import type { AuthOuathResult, Hooks } from "@opencode-ai/plugin"
import { NamedError } from "@opencode-ai/util/error" import { NamedError } from "@opencode-ai/util/error"
import * as Auth from "@/auth/effect" import * as Auth from "@/auth/effect"
import { ProviderID } from "./schema" import { ProviderID } from "./schema"
@@ -6,6 +6,8 @@ import { Array as Arr, Effect, Layer, Record, Result, ServiceMap, Struct } from
import z from "zod" import z from "zod"
export namespace ProviderAuth { export namespace ProviderAuth {
type Hook = NonNullable<Hooks["auth"]>
export const Method = z export const Method = z
.object({ .object({
type: z.union([z.literal("oauth"), z.literal("api")]), type: z.union([z.literal("oauth"), z.literal("api")]),
@@ -105,20 +107,26 @@ export namespace ProviderAuth {
Service, Service,
Effect.gen(function* () { Effect.gen(function* () {
const auth = yield* Auth.Auth.Service const auth = yield* Auth.Auth.Service
const hooks = yield* Effect.promise(async () => { let hooks: Record<ProviderID, Hook> | undefined
const mod = await import("../plugin")
const plugins = await mod.Plugin.list()
return Record.fromEntries(
Arr.filterMap(plugins, (x) =>
x.auth?.provider !== undefined
? Result.succeed([ProviderID.make(x.auth.provider), x.auth] as const)
: Result.failVoid,
),
)
})
const pending = new Map<ProviderID, AuthOuathResult>() const pending = new Map<ProviderID, AuthOuathResult>()
const load = Effect.fn("ProviderAuth.load")(function* () {
if (hooks) return hooks
hooks = yield* Effect.promise(async () => {
const mod = await import("../plugin")
const plugins = await mod.Plugin.list()
const result = {} as Record<ProviderID, Hook>
for (const item of plugins) {
if (item.auth?.provider === undefined) continue
result[ProviderID.make(item.auth.provider)] = item.auth
}
return result
})
return hooks
})
const methods = Effect.fn("ProviderAuth.methods")(function* () { const methods = Effect.fn("ProviderAuth.methods")(function* () {
const hooks = yield* load()
return Record.map(hooks, (item) => return Record.map(hooks, (item) =>
item.methods.map( item.methods.map(
(method): Method => ({ (method): Method => ({
@@ -152,6 +160,7 @@ export namespace ProviderAuth {
method: number method: number
inputs?: Record<string, string> inputs?: Record<string, string>
}) { }) {
const hooks = yield* load()
const method = hooks[input.providerID].methods[input.method] const method = hooks[input.providerID].methods[input.method]
if (method.type !== "oauth") return if (method.type !== "oauth") return
@@ -178,6 +187,7 @@ export namespace ProviderAuth {
method: number method: number
code?: string code?: string
}) { }) {
yield* load()
const match = pending.get(input.providerID) const match = pending.get(input.providerID)
if (!match) return yield* Effect.fail(new OauthMissing({ providerID: input.providerID })) if (!match) return yield* Effect.fail(new OauthMissing({ providerID: input.providerID }))
if (match.method === "code" && !input.code) { if (match.method === "code" && !input.code) {
+7 -7
View File
@@ -16,7 +16,7 @@ const describeWatcher = FileWatcher.hasNativeBinding() && !process.env.CI ? desc
// Helpers // Helpers
// --------------------------------------------------------------------------- // ---------------------------------------------------------------------------
type BusUpdate = { directory?: string; payload: { type: string; properties: WatcherEvent } } type BusUpdate = { directory?: string; payload: { type: string; properties: Record<string, unknown> } }
type WatcherEvent = { file: string; event: "add" | "change" | "unlink" } type WatcherEvent = { file: string; event: "add" | "change" | "unlink" }
/** Run `body` with a live FileWatcher service. */ /** Run `body` with a live FileWatcher service. */
@@ -40,18 +40,18 @@ function listen(directory: string, check: (evt: WatcherEvent) => boolean, hit: (
if (done) return if (done) return
if (evt.directory !== directory) return if (evt.directory !== directory) return
if (evt.payload.type !== FileWatcher.Event.Updated.type) return if (evt.payload.type !== FileWatcher.Event.Updated.type) return
if (!check(evt.payload.properties)) return const props = evt.payload.properties as WatcherEvent
hit(evt.payload.properties) if (!check(props)) return
hit(props)
} }
function cleanup() { GlobalBus.on("event", on)
return () => {
if (done) return if (done) return
done = true done = true
GlobalBus.off("event", on) GlobalBus.off("event", on)
} }
GlobalBus.on("event", on)
return cleanup
} }
function wait(directory: string, check: (evt: WatcherEvent) => boolean) { function wait(directory: string, check: (evt: WatcherEvent) => boolean) {