export type InstallSkillTarget = "claude" | "codex" | "both"; export interface InstallSkillOptions { readonly target: InstallSkillTarget; /** Overwrite an existing installed copy instead of refusing. */ readonly force: boolean; /** Test injection; defaults to os.homedir(). */ readonly homeDir?: string; /** Test injection; defaults to the skill bundled with this package. */ readonly sourceDir?: string; } export interface InstallSkillResult { readonly installed: readonly string[]; } export declare const COMPOSER_SKILL_NAME = "mono-agent-composer"; /** * Copies the bundled mono-agent-composer skill into the harness skill folders * (~/.claude/skills and/or ~/.agents/skills) so Claude Code and Codex can use * it to compose new agents. */ export declare function installComposerSkill(options: InstallSkillOptions): Promise; /** Internal CLI helper; intentionally not re-exported from the package root. */ export declare function composerSkillDestinations(target: InstallSkillTarget, homeDir: string): readonly string[]; //# sourceMappingURL=install-skill.d.ts.map