| 6 | * TypeScript interface for structured spec output |
| 7 | */ |
| 8 | export interface SpecOutput { |
| 9 | project_name: string; |
| 10 | overview: string; |
| 11 | technology_stack: string[]; |
| 12 | core_capabilities: string[]; |
| 13 | implemented_features: Array<{ |
| 14 | name: string; |
| 15 | description: string; |
| 16 | file_locations?: string[]; |
| 17 | }>; |
| 18 | additional_requirements?: string[]; |
| 19 | development_guidelines?: string[]; |
| 20 | implementation_roadmap?: Array<{ |
| 21 | phase: string; |
| 22 | status: 'completed' | 'in_progress' | 'pending'; |
| 23 | description: string; |
| 24 | }>; |
| 25 | } |
| 26 | |
| 27 | /** |
| 28 | * JSON Schema for structured spec output |
nothing calls this directly
no outgoing calls
no test coverage detected