/** * Activity-log auto-append hook * * Post-command hook that automatically appends an activity-log entry * after qualifying CLI commands succeed. Closes the discipline gap * called out in the activity-log rule: * * "Subagents silently create and delete artifacts with no record * visible to the parent orchestrator" * * Failures are non-blocking: if the entry can't be written, we log to * stderr and let the primary command's success stand. * * @design @.aiwg/architecture/storage-design.md * @issue #934 * @issue #978 */ import type { HookHandler } from '../types.js'; export declare const activityLogPostCommandHook: HookHandler; /** * The list of commands the hook fires for. Exported for tests. */ export declare const HOOKED_COMMANDS: string[]; //# sourceMappingURL=activity-log-hook.d.ts.map