UNPKG

aiwg

Version:

Deployment tool and support utility for AI context. Copies agents, skills, commands, rules, and behaviors into the paths each AI platform reads (Claude Code, Codex, Copilot, Cursor, Warp, OpenClaw, and 6 more) so one source of truth works across 10 platfo

24 lines 822 B
/** * 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