oh-my-opencode/src/plugin/system-transform.ts
YeonGyu-Kim 27d5379215 refactor(hooks): remove beast-mode system integration
Remove the beast-mode-system hook and all transform wiring so Copilot-specific prompt injection is fully eliminated from the runtime pipeline.
2026-02-22 01:57:22 +09:00

7 lines
176 B
TypeScript

export function createSystemTransformHandler(): (
input: { sessionID: string },
output: { system: string[] },
) => Promise<void> {
return async (): Promise<void> => {}
}