# DesignFast iFlow CLI Integration

## Overview
DesignFast集成到iFlow CLI平台，提供AI驱动的UI/UX设计工作流程。

## Commands Structure

每个命令都遵循NioPD模式：
- 输入验证和预处理
- AI代理协调和执行
- 结果验证和后处理
- 工作空间状态管理
- 用户反馈和错误处理

## Integration Pattern

```javascript
// iFlow CLI命令注册模式
module.exports = {
  name: 'designfast',
  commands: [
    'generate-design-doc',
    'create-prototype', 
    'iterate-design',
    'test-prototype',
    'test-responsive',
    'create-design-system',
    'apply-design-system'
  ],
  agents: [
    'design-director',
    'requirements-analyzer',
    'wireframe-creator',
    'prototype-builder',
    'playwright-integrator'
  ]
};
```