Main entry point: - create-hooks.ts, create-tools.ts, create-managers.ts - plugin-interface.ts: plugin interface types - plugin/ directory: plugin lifecycle modules Config handler: - agent-config-handler.ts, command-config-handler.ts - tool-config-handler.ts, mcp-config-handler.ts - provider-config-handler.ts, category-config-resolver.ts - agent-priority-order.ts, prometheus-agent-config-builder.ts - plugin-components-loader.ts
62 lines
1.5 KiB
TypeScript
62 lines
1.5 KiB
TypeScript
import type { AvailableSkill } from "./agents/dynamic-agent-prompt-builder"
|
|
import type { HookName, OhMyOpenCodeConfig } from "./config"
|
|
import type { LoadedSkill } from "./features/opencode-skill-loader/types"
|
|
import type { BackgroundManager } from "./features/background-agent"
|
|
import type { PluginContext } from "./plugin/types"
|
|
|
|
import { createCoreHooks } from "./plugin/hooks/create-core-hooks"
|
|
import { createContinuationHooks } from "./plugin/hooks/create-continuation-hooks"
|
|
import { createSkillHooks } from "./plugin/hooks/create-skill-hooks"
|
|
|
|
export type CreatedHooks = ReturnType<typeof createHooks>
|
|
|
|
export function createHooks(args: {
|
|
ctx: PluginContext
|
|
pluginConfig: OhMyOpenCodeConfig
|
|
backgroundManager: BackgroundManager
|
|
isHookEnabled: (hookName: HookName) => boolean
|
|
safeHookEnabled: boolean
|
|
mergedSkills: LoadedSkill[]
|
|
availableSkills: AvailableSkill[]
|
|
}) {
|
|
const {
|
|
ctx,
|
|
pluginConfig,
|
|
backgroundManager,
|
|
isHookEnabled,
|
|
safeHookEnabled,
|
|
mergedSkills,
|
|
availableSkills,
|
|
} = args
|
|
|
|
const core = createCoreHooks({
|
|
ctx,
|
|
pluginConfig,
|
|
isHookEnabled,
|
|
safeHookEnabled,
|
|
})
|
|
|
|
const continuation = createContinuationHooks({
|
|
ctx,
|
|
pluginConfig,
|
|
isHookEnabled,
|
|
safeHookEnabled,
|
|
backgroundManager,
|
|
sessionRecovery: core.sessionRecovery,
|
|
})
|
|
|
|
const skill = createSkillHooks({
|
|
ctx,
|
|
isHookEnabled,
|
|
safeHookEnabled,
|
|
mergedSkills,
|
|
availableSkills,
|
|
})
|
|
|
|
return {
|
|
...core,
|
|
...continuation,
|
|
...skill,
|
|
}
|
|
}
|