mcp-ai-agent-guidelines
Version:
A comprehensive Model Context Protocol server providing advanced tools, resources, and prompts for implementing AI agent best practices
36 lines • 1.23 kB
TypeScript
/**
* Design to Spec Workflow Definition
*
* @module agents/workflows/design-to-spec
*/
import type { Workflow } from "../orchestrator.js";
/**
* Design to Spec Workflow
*
* Orchestrates a complete design session from initial setup through specification generation.
* Uses the design-assistant agent to manage multi-phase design workflows with constraint
* validation and artifact generation.
*
* **Flow**: design-assistant (start) → design-assistant (advance) → design-assistant (generate)
*
* **Use case**: Full design session from discovery to specification generation.
* Suitable for creating ADRs and specifications for new features or architectural changes.
*
* @example
* ```typescript
* const input = {
* sessionId: 'design-session-123',
* config: {
* context: 'E-commerce platform',
* goal: 'Implement checkout flow',
* requirements: ['Payment processing', 'Cart validation'],
* sessionId: 'design-session-123',
* coverageThreshold: 85,
* enablePivots: true,
* },
* };
* const result = await orchestrator.executeWorkflow(designToSpecWorkflow, input);
* ```
*/
export declare const designToSpecWorkflow: Workflow;
//# sourceMappingURL=design-to-spec.d.ts.map