MCPcopy
hub / github.com/AutoMaker-Org/automaker / SpecOutput

Interface SpecOutput

libs/types/src/spec.ts:8–25  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6 * TypeScript interface for structured spec output
7 */
8export 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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected