- Replace regex-based command blocking with environment configuration - Add cross-platform null device support (NUL for Windows, /dev/null for Unix) - Wrap all bash commands with non-interactive environment variables - Only block TUI programs that require full PTY - Update schema, README docs, and all imports/exports 🤖 GENERATED WITH ASSISTANCE OF [OhMyOpenCode](https://github.com/code-yeongyu/oh-my-opencode)
21 lines
1.4 KiB
TypeScript
21 lines
1.4 KiB
TypeScript
export { createTodoContinuationEnforcer, type TodoContinuationEnforcer } from "./todo-continuation-enforcer";
|
|
export { createContextWindowMonitorHook } from "./context-window-monitor";
|
|
export { createSessionNotification } from "./session-notification";
|
|
export { createSessionRecoveryHook, type SessionRecoveryHook } from "./session-recovery";
|
|
export { createCommentCheckerHooks } from "./comment-checker";
|
|
export { createGrepOutputTruncatorHook } from "./grep-output-truncator";
|
|
export { createToolOutputTruncatorHook } from "./tool-output-truncator";
|
|
export { createDirectoryAgentsInjectorHook } from "./directory-agents-injector";
|
|
export { createDirectoryReadmeInjectorHook } from "./directory-readme-injector";
|
|
export { createEmptyTaskResponseDetectorHook } from "./empty-task-response-detector";
|
|
export { createAnthropicAutoCompactHook } from "./anthropic-auto-compact";
|
|
export { createThinkModeHook } from "./think-mode";
|
|
export { createClaudeCodeHooksHook } from "./claude-code-hooks";
|
|
export { createRulesInjectorHook } from "./rules-injector";
|
|
export { createBackgroundNotificationHook } from "./background-notification"
|
|
export { createAutoUpdateCheckerHook } from "./auto-update-checker";
|
|
|
|
export { createAgentUsageReminderHook } from "./agent-usage-reminder";
|
|
export { createKeywordDetectorHook } from "./keyword-detector";
|
|
export { createNonInteractiveEnvHook } from "./non-interactive-env";
|