/** * Write (or overwrite) a Claude Code command file and sync its packaged * workflow scripts. * * Target path: `/.claude/commands/.md` */ export declare function writeCommandToClaudeCode(commandName: string, content: string, homeDir: string, skillsRoot: string): void; /** * Remove a Claude Code command file and its synced workflow assets. */ export declare function removeCommandFromClaudeCode(commandName: string, homeDir: string): void; /** * Remove a standalone (pre-ownership-tracking) Claude Code skill directory * by raw path, with a traversal guard. Used ONLY by the plugin-supersedes- * standalone retirement path (`cli/sync-skills.ts`): that retirement predates * — and is orthogonal to — the ownership-marker system in `owned-files.ts`, * so it must not be gated by an ownership proof a pre-I-4 standalone install * never had. */ export declare function removeStandaloneClaudeCodeSkill(skillName: string, homeDir: string): void; //# sourceMappingURL=claude-code-commands.d.ts.map