import type { ProjectType } from "../utils/project-detector.js"; /** * Options for creating workflow structure */ export interface WorkflowOptions { /** Detected or specified project type */ projectType: ProjectType; /** Enable multi-agent pipeline with worktree support */ multiAgent?: boolean; /** Skip creating local spec templates (when using remote template) */ skipSpecTemplates?: boolean; } /** * Create workflow structure based on project type * * This function creates the .aim-studio/ directory structure by: * 1. Copying scripts/ directory directly (dogfooding) * 2. Copying workflow.md and .gitignore (dogfooding) * 3. Creating workspace/ with index.md * 4. Creating tasks/ directory * 5. Creating spec/ with templates (not dogfooded - generic templates) * 6. Copying worktree.yaml if multi-agent is enabled * * @param cwd - Current working directory * @param options - Workflow options including project type */ export declare function createWorkflowStructure(cwd: string, options?: WorkflowOptions): Promise; //# sourceMappingURL=workflow.d.ts.map