* Run the design audit over staged content. Returns issues. Wired to the * existing design_audit logic by the engine.
(files: Array<{ path: string; content: string }>)
| 40 | * existing design_audit logic by the engine. |
| 41 | */ |
| 42 | designAudit?(files: Array<{ path: string; content: string }>): Promise<Array<{ severity: 'high' | 'medium' | 'low'; message: string }>>; |
| 43 | /** |
| 44 | * Render + screenshot a route, then return a vision critique. Wired to |
| 45 | * dev_server + browser_screenshot + the vision role. |