@agentic15.com/agentic15-claude-zen 4.2.2 → 5.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,240 +1,240 @@
1
- {
2
- "$schema": "http://json-schema.org/draft-07/schema#",
3
- "title": "Project Plan Schema",
4
- "description": "Hierarchical project plan with SDLC state machine",
5
- "type": "object",
6
- "required": ["version", "project"],
7
- "properties": {
8
- "version": {
9
- "type": "string",
10
- "const": "2.0",
11
- "description": "Schema version"
12
- },
13
- "project": {
14
- "type": "object",
15
- "required": ["id", "name", "description", "status", "subprojects"],
16
- "properties": {
17
- "id": {
18
- "type": "string",
19
- "pattern": "^PROJ-[0-9]{3}$"
20
- },
21
- "name": {
22
- "type": "string",
23
- "minLength": 1
24
- },
25
- "description": {
26
- "type": "string"
27
- },
28
- "status": {
29
- "type": "string",
30
- "enum": ["planning", "active", "on-hold", "completed", "cancelled"]
31
- },
32
- "createdAt": {
33
- "type": "string",
34
- "format": "date-time"
35
- },
36
- "createdBy": {
37
- "type": "string"
38
- },
39
- "locked": {
40
- "type": "boolean"
41
- },
42
- "lockedAt": {
43
- "type": "string",
44
- "format": "date-time"
45
- },
46
- "subprojects": {
47
- "type": "array",
48
- "items": {
49
- "$ref": "#/definitions/subproject"
50
- }
51
- }
52
- }
53
- }
54
- },
55
- "definitions": {
56
- "subproject": {
57
- "type": "object",
58
- "required": ["id", "name", "description", "status", "milestones"],
59
- "properties": {
60
- "id": {
61
- "type": "string",
62
- "pattern": "^SUB-[0-9]{3}$"
63
- },
64
- "name": {
65
- "type": "string"
66
- },
67
- "description": {
68
- "type": "string"
69
- },
70
- "status": {
71
- "type": "string",
72
- "enum": ["pending", "active", "on-hold", "completed", "cancelled"]
73
- },
74
- "dependencies": {
75
- "type": "array",
76
- "items": {
77
- "type": "string",
78
- "pattern": "^SUB-[0-9]{3}$"
79
- }
80
- },
81
- "milestones": {
82
- "type": "array",
83
- "items": {
84
- "$ref": "#/definitions/milestone"
85
- }
86
- }
87
- }
88
- },
89
- "milestone": {
90
- "type": "object",
91
- "required": ["id", "name", "description", "status", "tasks"],
92
- "properties": {
93
- "id": {
94
- "type": "string",
95
- "pattern": "^MILE-[0-9]{3}$"
96
- },
97
- "name": {
98
- "type": "string"
99
- },
100
- "description": {
101
- "type": "string"
102
- },
103
- "status": {
104
- "type": "string",
105
- "enum": ["pending", "active", "completed"]
106
- },
107
- "dueDate": {
108
- "type": "string",
109
- "format": "date"
110
- },
111
- "dependencies": {
112
- "type": "array",
113
- "items": {
114
- "type": "string",
115
- "pattern": "^MILE-[0-9]{3}$"
116
- }
117
- },
118
- "tasks": {
119
- "type": "array",
120
- "items": {
121
- "$ref": "#/definitions/task"
122
- }
123
- }
124
- }
125
- },
126
- "task": {
127
- "type": "object",
128
- "required": ["id", "title", "status", "phase"],
129
- "properties": {
130
- "id": {
131
- "type": "string",
132
- "pattern": "^TASK-[0-9]{3}$"
133
- },
134
- "title": {
135
- "type": "string"
136
- },
137
- "description": {
138
- "type": "string"
139
- },
140
- "status": {
141
- "type": "string",
142
- "enum": ["pending", "in_progress", "blocked", "review", "testing", "completed", "cancelled"]
143
- },
144
- "phase": {
145
- "type": "string",
146
- "enum": ["requirements", "design", "implementation", "testing", "deployment", "maintenance"],
147
- "description": "SDLC phase"
148
- },
149
- "dependencies": {
150
- "type": "array",
151
- "items": {
152
- "type": "string",
153
- "pattern": "^TASK-[0-9]{3}$"
154
- }
155
- },
156
- "assignee": {
157
- "type": "string"
158
- },
159
- "estimatedHours": {
160
- "type": "number",
161
- "minimum": 0
162
- },
163
- "actualHours": {
164
- "type": "number",
165
- "minimum": 0
166
- },
167
- "completionCriteria": {
168
- "type": "array",
169
- "items": {
170
- "type": "string"
171
- }
172
- },
173
- "testCases": {
174
- "type": "array",
175
- "items": {
176
- "type": "string"
177
- }
178
- },
179
- "artifacts": {
180
- "type": "object",
181
- "properties": {
182
- "design": {
183
- "type": "array",
184
- "items": {
185
- "type": "string"
186
- }
187
- },
188
- "code": {
189
- "type": "array",
190
- "items": {
191
- "type": "string"
192
- }
193
- },
194
- "tests": {
195
- "type": "array",
196
- "items": {
197
- "type": "string"
198
- }
199
- },
200
- "documentation": {
201
- "type": "array",
202
- "items": {
203
- "type": "string"
204
- }
205
- }
206
- }
207
- },
208
- "startedAt": {
209
- "type": "string",
210
- "format": "date-time"
211
- },
212
- "completedAt": {
213
- "type": "string",
214
- "format": "date-time"
215
- },
216
- "blockedReason": {
217
- "type": "string"
218
- },
219
- "notes": {
220
- "type": "array",
221
- "items": {
222
- "type": "object",
223
- "properties": {
224
- "timestamp": {
225
- "type": "string",
226
- "format": "date-time"
227
- },
228
- "author": {
229
- "type": "string"
230
- },
231
- "content": {
232
- "type": "string"
233
- }
234
- }
235
- }
236
- }
237
- }
238
- }
239
- }
240
- }
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "title": "Project Plan Schema",
4
+ "description": "Hierarchical project plan with SDLC state machine",
5
+ "type": "object",
6
+ "required": ["version", "project"],
7
+ "properties": {
8
+ "version": {
9
+ "type": "string",
10
+ "const": "2.0",
11
+ "description": "Schema version"
12
+ },
13
+ "project": {
14
+ "type": "object",
15
+ "required": ["id", "name", "description", "status", "subprojects"],
16
+ "properties": {
17
+ "id": {
18
+ "type": "string",
19
+ "pattern": "^PROJ-[0-9]{3}$"
20
+ },
21
+ "name": {
22
+ "type": "string",
23
+ "minLength": 1
24
+ },
25
+ "description": {
26
+ "type": "string"
27
+ },
28
+ "status": {
29
+ "type": "string",
30
+ "enum": ["planning", "active", "on-hold", "completed", "cancelled"]
31
+ },
32
+ "createdAt": {
33
+ "type": "string",
34
+ "format": "date-time"
35
+ },
36
+ "createdBy": {
37
+ "type": "string"
38
+ },
39
+ "locked": {
40
+ "type": "boolean"
41
+ },
42
+ "lockedAt": {
43
+ "type": "string",
44
+ "format": "date-time"
45
+ },
46
+ "subprojects": {
47
+ "type": "array",
48
+ "items": {
49
+ "$ref": "#/definitions/subproject"
50
+ }
51
+ }
52
+ }
53
+ }
54
+ },
55
+ "definitions": {
56
+ "subproject": {
57
+ "type": "object",
58
+ "required": ["id", "name", "description", "status", "milestones"],
59
+ "properties": {
60
+ "id": {
61
+ "type": "string",
62
+ "pattern": "^SUB-[0-9]{3}$"
63
+ },
64
+ "name": {
65
+ "type": "string"
66
+ },
67
+ "description": {
68
+ "type": "string"
69
+ },
70
+ "status": {
71
+ "type": "string",
72
+ "enum": ["pending", "active", "on-hold", "completed", "cancelled"]
73
+ },
74
+ "dependencies": {
75
+ "type": "array",
76
+ "items": {
77
+ "type": "string",
78
+ "pattern": "^SUB-[0-9]{3}$"
79
+ }
80
+ },
81
+ "milestones": {
82
+ "type": "array",
83
+ "items": {
84
+ "$ref": "#/definitions/milestone"
85
+ }
86
+ }
87
+ }
88
+ },
89
+ "milestone": {
90
+ "type": "object",
91
+ "required": ["id", "name", "description", "status", "tasks"],
92
+ "properties": {
93
+ "id": {
94
+ "type": "string",
95
+ "pattern": "^MILE-[0-9]{3}$"
96
+ },
97
+ "name": {
98
+ "type": "string"
99
+ },
100
+ "description": {
101
+ "type": "string"
102
+ },
103
+ "status": {
104
+ "type": "string",
105
+ "enum": ["pending", "active", "completed"]
106
+ },
107
+ "dueDate": {
108
+ "type": "string",
109
+ "format": "date"
110
+ },
111
+ "dependencies": {
112
+ "type": "array",
113
+ "items": {
114
+ "type": "string",
115
+ "pattern": "^MILE-[0-9]{3}$"
116
+ }
117
+ },
118
+ "tasks": {
119
+ "type": "array",
120
+ "items": {
121
+ "$ref": "#/definitions/task"
122
+ }
123
+ }
124
+ }
125
+ },
126
+ "task": {
127
+ "type": "object",
128
+ "required": ["id", "title", "status", "phase"],
129
+ "properties": {
130
+ "id": {
131
+ "type": "string",
132
+ "pattern": "^TASK-[0-9]{3}$"
133
+ },
134
+ "title": {
135
+ "type": "string"
136
+ },
137
+ "description": {
138
+ "type": "string"
139
+ },
140
+ "status": {
141
+ "type": "string",
142
+ "enum": ["pending", "in_progress", "blocked", "review", "testing", "completed", "cancelled"]
143
+ },
144
+ "phase": {
145
+ "type": "string",
146
+ "enum": ["requirements", "design", "implementation", "testing", "deployment", "maintenance"],
147
+ "description": "SDLC phase"
148
+ },
149
+ "dependencies": {
150
+ "type": "array",
151
+ "items": {
152
+ "type": "string",
153
+ "pattern": "^TASK-[0-9]{3}$"
154
+ }
155
+ },
156
+ "assignee": {
157
+ "type": "string"
158
+ },
159
+ "estimatedHours": {
160
+ "type": "number",
161
+ "minimum": 0
162
+ },
163
+ "actualHours": {
164
+ "type": "number",
165
+ "minimum": 0
166
+ },
167
+ "completionCriteria": {
168
+ "type": "array",
169
+ "items": {
170
+ "type": "string"
171
+ }
172
+ },
173
+ "testCases": {
174
+ "type": "array",
175
+ "items": {
176
+ "type": "string"
177
+ }
178
+ },
179
+ "artifacts": {
180
+ "type": "object",
181
+ "properties": {
182
+ "design": {
183
+ "type": "array",
184
+ "items": {
185
+ "type": "string"
186
+ }
187
+ },
188
+ "code": {
189
+ "type": "array",
190
+ "items": {
191
+ "type": "string"
192
+ }
193
+ },
194
+ "tests": {
195
+ "type": "array",
196
+ "items": {
197
+ "type": "string"
198
+ }
199
+ },
200
+ "documentation": {
201
+ "type": "array",
202
+ "items": {
203
+ "type": "string"
204
+ }
205
+ }
206
+ }
207
+ },
208
+ "startedAt": {
209
+ "type": "string",
210
+ "format": "date-time"
211
+ },
212
+ "completedAt": {
213
+ "type": "string",
214
+ "format": "date-time"
215
+ },
216
+ "blockedReason": {
217
+ "type": "string"
218
+ },
219
+ "notes": {
220
+ "type": "array",
221
+ "items": {
222
+ "type": "object",
223
+ "properties": {
224
+ "timestamp": {
225
+ "type": "string",
226
+ "format": "date-time"
227
+ },
228
+ "author": {
229
+ "type": "string"
230
+ },
231
+ "content": {
232
+ "type": "string"
233
+ }
234
+ }
235
+ }
236
+ }
237
+ }
238
+ }
239
+ }
240
+ }