import type { ResolvedSkill } from "../../types/config.js"; /** * Write skills for Claude Code into the user-scoped config dir * (`CLAUDE_CONFIG_DIR/skills/{name}/`). Claude Code discovers user-scoped * skills there. The runner points CLAUDE_CONFIG_DIR at the agent's HOME so * skills never appear in the workspace the agent scans. */ export declare function writeClaudeSkills(claudeConfigDir: string, skills: ResolvedSkill[]): void; /** * Write skills for Codex. * Copies each skill directory to {workspace}/.agents/skills/{name}/ */ export declare function writeCodexSkills(workspace: string, skills: ResolvedSkill[]): void; /** * Write skills for Gemini CLI. * Copies each skill directory to {geminiHome}/skills/{name}/ */ export declare function writeGeminiSkills(geminiHome: string, skills: ResolvedSkill[]): void; //# sourceMappingURL=skills.d.ts.map