import type { ProjectMode } from "../../config/schema.js"; export interface InitCommandOptions { preset?: string; } export declare function runInitCommand(projectRoot: string, options?: InitCommandOptions): Promise; /** * Copy SKILL.md files from the package's skills/ directory into * the project's .claude/commands/ directory so they appear as * /bober-plan, /bober-sprint, etc. in Claude Code. * * Also copies agent definitions into .claude/agents/. */ export declare function installClaudeCommands(projectRoot: string, mode: ProjectMode, preset?: string): Promise; //# sourceMappingURL=init.d.ts.map