diff --git a/package.json b/package.json index cff2f805..9fdfd3b1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "oh-my-opencode", - "version": "0.1.2", + "version": "0.1.3", "description": "OpenCode plugin - custom agents (oracle, librarian) and enhanced features", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/src/hooks/comment-checker/index.ts b/src/hooks/comment-checker/index.ts index 33ef2340..c40c4448 100644 --- a/src/hooks/comment-checker/index.ts +++ b/src/hooks/comment-checker/index.ts @@ -94,8 +94,4 @@ export function createCommentCheckerHooks() { } } -export * from "./types" -export * from "./constants" -export * from "./detector" -export * from "./filters" -export * from "./output" + diff --git a/src/hooks/index.ts b/src/hooks/index.ts index 177ddd4a..b0b29580 100644 --- a/src/hooks/index.ts +++ b/src/hooks/index.ts @@ -1,5 +1,5 @@ -export * from "./todo-continuation-enforcer" -export * from "./context-window-monitor" -export * from "./session-notification" -export * from "./session-recovery" -export * from "./comment-checker" +export { createTodoContinuationEnforcer } from "./todo-continuation-enforcer" +export { createContextWindowMonitorHook } from "./context-window-monitor" +export { createSessionNotification } from "./session-notification" +export { createSessionRecoveryHook } from "./session-recovery" +export { createCommentCheckerHooks } from "./comment-checker" diff --git a/src/index.ts b/src/index.ts index 7190233c..04fe0147 100644 --- a/src/index.ts +++ b/src/index.ts @@ -190,7 +190,6 @@ const OhMyOpenCodePlugin: Plugin = async (ctx) => { export default OhMyOpenCodePlugin -export { OhMyOpenCodeConfigSchema } from "./config" export type { OhMyOpenCodeConfig, AgentName,