2026-05-16 00:49:03 +09:00
|
|
|
import type { PluginModule } from "@opencode-ai/plugin"
|
|
|
|
|
import { createPluginModule } from "./testing/create-plugin-module"
|
2025-12-03 11:49:33 +09:00
|
|
|
|
2026-05-15 18:21:04 +09:00
|
|
|
const pluginModule: PluginModule = createPluginModule()
|
2026-04-18 01:37:46 +09:00
|
|
|
|
|
|
|
|
export default pluginModule
|
2025-12-05 02:32:33 +09:00
|
|
|
|
2025-12-05 02:54:09 +09:00
|
|
|
export type {
|
|
|
|
|
AgentName,
|
|
|
|
|
AgentOverrideConfig,
|
|
|
|
|
AgentOverrides,
|
2025-12-28 17:30:27 +09:00
|
|
|
BuiltinCommandName,
|
2026-05-16 00:49:03 +09:00
|
|
|
HookName,
|
|
|
|
|
McpName,
|
|
|
|
|
OhMyOpenCodeConfig,
|
2026-02-08 16:25:25 +09:00
|
|
|
} from "./config"
|
2025-12-19 02:19:54 +09:00
|
|
|
|
2026-02-08 16:25:25 +09:00
|
|
|
export type { ConfigLoadError } from "./shared/config-errors"
|