/** * mission_scaffold tool * * First-time setup tool - copies bundled worker/auditor agents and skills * into project .pi dirs and creates mission-control directory structure. * * This is a command-only tool (not exposed to agents). */ export interface ScaffoldResult { success: boolean; message: string; created: string[]; skipped: string[]; errors: string[]; } /** * Scaffold the mission-control environment * * Copies bundled worker/auditor agents and skills to project .pi dirs and creates * the mission-control directory structure. Non-destructive - * skips existing files rather than overwriting. */ export declare function missionScaffold(): ScaffoldResult; //# sourceMappingURL=scaffold.d.ts.map