|
4 | 4 | "title": "MAPLE Project Configuration", |
5 | 5 | "description": "Project-level configuration for the MAPLE platform (project.config.yaml).", |
6 | 6 | "type": "object", |
7 | | - "required": ["project"], |
| 7 | + "required": [ |
| 8 | + "project" |
| 9 | + ], |
8 | 10 | "additionalProperties": false, |
9 | 11 | "properties": { |
10 | 12 | "project": { |
11 | 13 | "type": "object", |
12 | 14 | "description": "Project identity and metadata.", |
13 | | - "required": ["name"], |
| 15 | + "required": [ |
| 16 | + "name" |
| 17 | + ], |
14 | 18 | "additionalProperties": false, |
15 | 19 | "properties": { |
16 | 20 | "name": { |
|
38 | 42 | "mode": { |
39 | 43 | "type": "string", |
40 | 44 | "description": "standard: full Spec-Kit + 8-phase pipeline. spike: skips Spec-Kit; used for time-boxed research tasks.", |
41 | | - "enum": ["standard", "spike"], |
| 45 | + "enum": [ |
| 46 | + "standard", |
| 47 | + "spike" |
| 48 | + ], |
42 | 49 | "default": "standard" |
43 | 50 | }, |
44 | 51 | "require_adr_for": { |
|
75 | 82 | "bdd": { |
76 | 83 | "type": "string", |
77 | 84 | "description": "BDD framework used for Gherkin scenario automation. cucumber = @cucumber/cucumber (JS/TS) or Cucumber-JVM (Java/.NET). behave = Python. none = disabled.", |
78 | | - "enum": ["cucumber", "behave", "none"], |
| 85 | + "enum": [ |
| 86 | + "cucumber", |
| 87 | + "behave", |
| 88 | + "none" |
| 89 | + ], |
79 | 90 | "default": "cucumber" |
80 | 91 | }, |
81 | 92 | "step_defs_dir": { |
|
98 | 109 | "ui_library": { |
99 | 110 | "type": "string", |
100 | 111 | "description": "Component library used for mockup generation and component scaffolding.", |
101 | | - "enum": ["mantine", "tailwind", "shadcn", "none"], |
| 112 | + "enum": [ |
| 113 | + "mantine", |
| 114 | + "tailwind", |
| 115 | + "shadcn", |
| 116 | + "none" |
| 117 | + ], |
102 | 118 | "default": "none" |
103 | 119 | }, |
104 | 120 | "tokens_file": { |
|
109 | 125 | "wireframe_format": { |
110 | 126 | "type": "string", |
111 | 127 | "description": "Default format for wireframes generated by the wireframe-architect agent.", |
112 | | - "enum": ["ascii", "svg", "html"], |
| 128 | + "enum": [ |
| 129 | + "ascii", |
| 130 | + "svg", |
| 131 | + "html" |
| 132 | + ], |
113 | 133 | "default": "ascii" |
114 | 134 | }, |
115 | 135 | "target": { |
116 | 136 | "type": "string", |
117 | 137 | "description": "UI medium the design phase targets. web = HTML/React/CSS artifacts and browser a11y. tui = terminal ASCII wireframes, lipgloss mockups, and terminal a11y. Selects which artifacts the design agents emit; artifact paths are identical across targets.", |
118 | | - "enum": ["web", "tui"], |
| 138 | + "enum": [ |
| 139 | + "web", |
| 140 | + "tui" |
| 141 | + ], |
119 | 142 | "default": "web" |
120 | 143 | } |
121 | 144 | } |
|
126 | 149 | "additionalProperties": false, |
127 | 150 | "properties": { |
128 | 151 | "project_number": { |
129 | | - "type": ["integer", "null"], |
| 152 | + "type": [ |
| 153 | + "integer", |
| 154 | + "null" |
| 155 | + ], |
130 | 156 | "description": "GitHub Project v2 number (numeric ID, not node ID). Set by `maple project bootstrap`.", |
131 | 157 | "default": null |
132 | 158 | }, |
133 | 159 | "project_node_id": { |
134 | | - "type": ["string", "null"], |
| 160 | + "type": [ |
| 161 | + "string", |
| 162 | + "null" |
| 163 | + ], |
135 | 164 | "description": "GitHub Project v2 GraphQL node ID. Set by `maple project bootstrap`.", |
136 | 165 | "default": null |
| 166 | + }, |
| 167 | + "status_field_id": { |
| 168 | + "type": [ |
| 169 | + "string", |
| 170 | + "null" |
| 171 | + ], |
| 172 | + "description": "GitHub Project v2 Status single-select field node ID (used to set a card's Status). Set by `maple project bootstrap`.", |
| 173 | + "default": null |
137 | 174 | } |
138 | 175 | } |
139 | 176 | }, |
|
0 commit comments