28 lines
467 B
TypeScript
28 lines
467 B
TypeScript
import {
|
|
Agent,
|
|
Command,
|
|
Connection,
|
|
Credential,
|
|
Integration,
|
|
Model,
|
|
Plugin,
|
|
Provider,
|
|
Reference,
|
|
Skill,
|
|
} from "@opencode-ai/plugin/v2/effect"
|
|
import { Tool } from "@opencode-ai/plugin/v2/effect/tool"
|
|
|
|
const key = Symbol.for("opencode.plugin.v2.effect")
|
|
;(globalThis as typeof globalThis & { [key]?: unknown })[key] = {
|
|
Agent,
|
|
Command,
|
|
Connection,
|
|
Credential,
|
|
Integration,
|
|
Model,
|
|
Plugin,
|
|
Provider,
|
|
Reference,
|
|
Skill,
|
|
Tool,
|
|
}
|