#!/usr/bin/env node export declare const CHORUS_SKILL_NAME = "chorus-agent"; export type SkillInstallMode = "copy" | "link"; export type SkillInstallScope = "project" | "user"; export interface SkillInstallOptions { targetDir: string; mode?: SkillInstallMode; scope?: SkillInstallScope; force?: boolean; sourceDir?: string; codexHome?: string; claudeConfigDir?: string; } export interface SkillInstallResult { mode: SkillInstallMode; scope: SkillInstallScope; sourceDir: string; destinations: string[]; } export declare function packagedSkillDir(): string; export declare function installChorusSkill(options: SkillInstallOptions): Promise; export interface ParsedSkillInstallArgs { targetDir: string; mode: SkillInstallMode; scope: SkillInstallScope; force: boolean; help: boolean; } export declare function parseSkillInstallArgs(args: string[], cwd?: string): ParsedSkillInstallArgs; export declare function runSkillInstallCli(args: string[], cwd?: string): Promise;