export interface InitOptions { cwd: string; force?: boolean; quiet?: boolean; printOnly?: boolean; refreshDocs?: boolean; d1?: boolean; servers?: string[]; clients?: string[]; noSkills?: boolean; wireRoot?: boolean; /** Scaffold ONLY the agent-context (always-on + skills + root wiring), skipping the metaobjects/ project scaffold — for dropping context into an existing/polyglot repo. */ docsOnly?: boolean; } export interface InitResult { created: string[]; preserved: string[]; warnings: string[]; } export declare function init(opts: InitOptions): Promise; export declare function nextStepsBlock(): string; export declare function initCommand(args: string[], cwd: string): Promise; //# sourceMappingURL=init.d.ts.map