/** * Agent installation functions. * Ports lib/skills/agents-install.sh. * * Installs agent configurations to the appropriate locations. * * @epic T4454 * @task T4518 */ /** * Install a single agent via symlink. * @task T4518 */ export declare function installAgent(agentDir: string): { installed: boolean; path: string; error?: string; }; /** * Install all agents from the project agents/ directory. * @task T4518 */ export declare function installAllAgents(cwd?: string): Array<{ name: string; installed: boolean; error?: string; }>; /** * Uninstall a single agent by removing its symlink. * @task T4518 */ export declare function uninstallAgent(agentName: string): boolean; //# sourceMappingURL=install.d.ts.map