- Add usage-logging hook that sends events to log-ingest service - Track session start/end, tool calls, and token usage - Integrate with LOG_INGEST_URL environment variable - Update hooks index to include usage-logging
34 lines
2.5 KiB
TypeScript
34 lines
2.5 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, type SessionRecoveryOptions } from "./session-recovery";
|
|
export { createCommentCheckerHooks } from "./comment-checker";
|
|
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 { createAnthropicContextWindowLimitRecoveryHook, type AnthropicContextWindowLimitRecoveryOptions } from "./anthropic-context-window-limit-recovery";
|
|
export { createPreemptiveCompactionHook, type PreemptiveCompactionOptions, type SummarizeContext, type BeforeSummarizeCallback } from "./preemptive-compaction";
|
|
export { createCompactionContextInjector } from "./compaction-context-injector";
|
|
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";
|
|
export { createInteractiveBashSessionHook } from "./interactive-bash-session";
|
|
export { createEmptyMessageSanitizerHook } from "./empty-message-sanitizer";
|
|
export { createThinkingBlockValidatorHook } from "./thinking-block-validator";
|
|
export { createRalphLoopHook, type RalphLoopHook } from "./ralph-loop";
|
|
export { createAutoSlashCommandHook } from "./auto-slash-command";
|
|
export { createEditErrorRecoveryHook } from "./edit-error-recovery";
|
|
export { createPrometheusMdOnlyHook } from "./prometheus-md-only";
|
|
export { createTaskResumeInfoHook } from "./task-resume-info";
|
|
export { createStartWorkHook } from "./start-work";
|
|
export { createSisyphusOrchestratorHook } from "./sisyphus-orchestrator";
|
|
export { createTodoCodebaseCompactionInjector, createCustomCompactionHook } from "./todo-codebase-compaction";
|
|
export { createUsageLoggingHook } from "./usage-logging";
|