/** * Installer — code-audit install subcommand logic. * * Copies the skill folder to agent-specific paths and optionally wires hooks. * Phase 0 live-docs verification (2026-07-19): * - Cursor: project-only skills, ~/.cursor/skills/ does NOT exist * - Codex: both ~/.codex/skills/ (user) and .codex/skills/ (project) * - Cursor afterFileEdit is advisory only (cannot block retroactively) * - Codex PostToolUse is blocking (exit 2 replaces tool result) */ export interface InstallOptions { agent: string; scope: 'user' | 'project'; hooks: boolean; list: boolean; } export interface InstallResult { agent: string; displayName: string; skillPath: string; installed: boolean; hooksWired: boolean; skipped: boolean; skipReason?: string; } /** * Main entry point for `code-audit install`. */ export declare function runInstall(options: InstallOptions): Promise; //# sourceMappingURL=installer.d.ts.map