oxe-cc 0.7.1 → 0.9.1

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.
Files changed (156) hide show
  1. package/.cursor/commands/oxe-ask.md +34 -0
  2. package/.cursor/commands/oxe-capabilities.md +34 -0
  3. package/.cursor/commands/oxe-checkpoint.md +34 -0
  4. package/.cursor/commands/oxe-compact.md +33 -0
  5. package/.cursor/commands/oxe-dashboard.md +34 -0
  6. package/.cursor/commands/oxe-debug.md +34 -0
  7. package/.cursor/commands/oxe-discuss.md +34 -0
  8. package/.cursor/commands/oxe-execute.md +34 -0
  9. package/.cursor/commands/oxe-forensics.md +34 -0
  10. package/.cursor/commands/oxe-help.md +33 -0
  11. package/.cursor/commands/oxe-loop.md +34 -0
  12. package/.cursor/commands/oxe-milestone.md +34 -0
  13. package/.cursor/commands/oxe-next.md +33 -0
  14. package/.cursor/commands/oxe-obs.md +34 -0
  15. package/.cursor/commands/oxe-plan-agent.md +33 -0
  16. package/.cursor/commands/oxe-plan.md +34 -0
  17. package/.cursor/commands/oxe-project.md +34 -0
  18. package/.cursor/commands/oxe-quick.md +34 -0
  19. package/.cursor/commands/oxe-research.md +34 -0
  20. package/.cursor/commands/oxe-retro.md +34 -0
  21. package/.cursor/commands/oxe-review-pr.md +34 -0
  22. package/.cursor/commands/oxe-route.md +34 -0
  23. package/.cursor/commands/oxe-scan.md +34 -0
  24. package/.cursor/commands/oxe-security.md +34 -0
  25. package/.cursor/commands/oxe-session.md +34 -0
  26. package/.cursor/commands/oxe-skill.md +45 -0
  27. package/.cursor/commands/oxe-spec.md +34 -0
  28. package/.cursor/commands/oxe-ui-review.md +34 -0
  29. package/.cursor/commands/oxe-ui-spec.md +34 -0
  30. package/.cursor/commands/oxe-update.md +33 -0
  31. package/.cursor/commands/oxe-validate-gaps.md +34 -0
  32. package/.cursor/commands/oxe-verify.md +34 -0
  33. package/.cursor/commands/oxe-workstream.md +34 -0
  34. package/.cursor/commands/oxe.md +38 -2
  35. package/.github/copilot-instructions.md +8 -5
  36. package/.github/prompts/oxe-ask.prompt.md +33 -0
  37. package/.github/prompts/oxe-capabilities.prompt.md +33 -0
  38. package/.github/prompts/oxe-checkpoint.prompt.md +45 -12
  39. package/.github/prompts/oxe-compact.prompt.md +44 -11
  40. package/.github/prompts/oxe-dashboard.prompt.md +33 -0
  41. package/.github/prompts/oxe-debug.prompt.md +45 -12
  42. package/.github/prompts/oxe-discuss.prompt.md +33 -0
  43. package/.github/prompts/oxe-execute.prompt.md +45 -12
  44. package/.github/prompts/oxe-forensics.prompt.md +45 -12
  45. package/.github/prompts/oxe-help.prompt.md +42 -9
  46. package/.github/prompts/oxe-loop.prompt.md +45 -12
  47. package/.github/prompts/oxe-milestone.prompt.md +45 -12
  48. package/.github/prompts/oxe-next.prompt.md +42 -9
  49. package/.github/prompts/oxe-obs.prompt.md +45 -12
  50. package/.github/prompts/oxe-plan-agent.prompt.md +43 -10
  51. package/.github/prompts/oxe-plan.prompt.md +45 -12
  52. package/.github/prompts/oxe-project.prompt.md +45 -12
  53. package/.github/prompts/oxe-quick.prompt.md +45 -12
  54. package/.github/prompts/oxe-research.prompt.md +45 -12
  55. package/.github/prompts/oxe-retro.prompt.md +45 -12
  56. package/.github/prompts/oxe-review-pr.prompt.md +45 -12
  57. package/.github/prompts/oxe-route.prompt.md +45 -12
  58. package/.github/prompts/oxe-scan.prompt.md +45 -12
  59. package/.github/prompts/oxe-security.prompt.md +45 -12
  60. package/.github/prompts/oxe-session.prompt.md +33 -0
  61. package/.github/prompts/oxe-skill.prompt.md +45 -0
  62. package/.github/prompts/oxe-spec.prompt.md +45 -12
  63. package/.github/prompts/oxe-ui-review.prompt.md +45 -12
  64. package/.github/prompts/oxe-ui-spec.prompt.md +45 -12
  65. package/.github/prompts/oxe-update.prompt.md +44 -11
  66. package/.github/prompts/oxe-validate-gaps.prompt.md +45 -12
  67. package/.github/prompts/oxe-verify.prompt.md +45 -12
  68. package/.github/prompts/oxe-workstream.prompt.md +45 -12
  69. package/.github/prompts/oxe.prompt.md +45 -12
  70. package/AGENTS.md +6 -4
  71. package/CHANGELOG.md +45 -0
  72. package/README.md +38 -8
  73. package/bin/lib/oxe-agent-install.cjs +69 -55
  74. package/bin/lib/oxe-context-engine.cjs +866 -0
  75. package/bin/lib/oxe-dashboard.cjs +605 -588
  76. package/bin/lib/oxe-operational.cjs +105 -0
  77. package/bin/lib/oxe-plugins.cjs +115 -0
  78. package/bin/lib/oxe-project-health.cjs +1139 -666
  79. package/bin/lib/oxe-runtime-semantics.cjs +459 -0
  80. package/bin/lib/oxe-security.cjs +64 -0
  81. package/bin/oxe-cc.js +615 -46
  82. package/commands/oxe/ask.md +33 -0
  83. package/commands/oxe/capabilities.md +33 -0
  84. package/commands/oxe/checkpoint.md +49 -16
  85. package/commands/oxe/compact.md +43 -10
  86. package/commands/oxe/dashboard.md +33 -0
  87. package/commands/oxe/debug.md +49 -16
  88. package/commands/oxe/discuss.md +33 -0
  89. package/commands/oxe/execute.md +49 -16
  90. package/commands/oxe/forensics.md +49 -16
  91. package/commands/oxe/help.md +44 -11
  92. package/commands/oxe/loop.md +50 -17
  93. package/commands/oxe/milestone.md +49 -16
  94. package/commands/oxe/next.md +45 -12
  95. package/commands/oxe/obs.md +49 -16
  96. package/commands/oxe/oxe.md +49 -16
  97. package/commands/oxe/plan-agent.md +48 -15
  98. package/commands/oxe/plan.md +48 -15
  99. package/commands/oxe/project.md +49 -16
  100. package/commands/oxe/quick.md +49 -16
  101. package/commands/oxe/research.md +49 -16
  102. package/commands/oxe/retro.md +49 -16
  103. package/commands/oxe/review-pr.md +49 -16
  104. package/commands/oxe/route.md +44 -11
  105. package/commands/oxe/scan.md +49 -16
  106. package/commands/oxe/security.md +49 -16
  107. package/commands/oxe/session.md +33 -0
  108. package/commands/oxe/skill.md +49 -0
  109. package/commands/oxe/spec.md +47 -14
  110. package/commands/oxe/ui-review.md +49 -16
  111. package/commands/oxe/ui-spec.md +49 -16
  112. package/commands/oxe/update.md +49 -16
  113. package/commands/oxe/validate-gaps.md +49 -16
  114. package/commands/oxe/verify.md +48 -15
  115. package/commands/oxe/workstream.md +49 -16
  116. package/lib/sdk/index.cjs +140 -7
  117. package/lib/sdk/index.d.ts +266 -1
  118. package/oxe/templates/HYPOTHESES.template.md +33 -0
  119. package/oxe/templates/PLAN.template.md +53 -22
  120. package/oxe/templates/SESSION.template.md +2 -0
  121. package/oxe/templates/SKILL.template.md +26 -0
  122. package/oxe/templates/WORKFLOW_AUTHORING.md +18 -2
  123. package/oxe/templates/config.template.json +16 -14
  124. package/oxe/workflows/ask.md +28 -7
  125. package/oxe/workflows/capabilities.md +2 -0
  126. package/oxe/workflows/dashboard.md +12 -2
  127. package/oxe/workflows/debug.md +9 -4
  128. package/oxe/workflows/discuss.md +12 -6
  129. package/oxe/workflows/execute.md +34 -12
  130. package/oxe/workflows/forensics.md +14 -9
  131. package/oxe/workflows/help.md +20 -9
  132. package/oxe/workflows/loop.md +13 -7
  133. package/oxe/workflows/next.md +6 -4
  134. package/oxe/workflows/plan-agent.md +3 -2
  135. package/oxe/workflows/plan.md +26 -3
  136. package/oxe/workflows/quick.md +10 -3
  137. package/oxe/workflows/references/reasoning-discovery.md +28 -0
  138. package/oxe/workflows/references/reasoning-execution.md +29 -0
  139. package/oxe/workflows/references/reasoning-planning.md +32 -0
  140. package/oxe/workflows/references/reasoning-review.md +29 -0
  141. package/oxe/workflows/references/reasoning-status.md +24 -0
  142. package/oxe/workflows/references/workflow-runtime-contracts.json +879 -0
  143. package/oxe/workflows/research.md +8 -2
  144. package/oxe/workflows/retro.md +7 -2
  145. package/oxe/workflows/review-pr.md +12 -8
  146. package/oxe/workflows/route.md +16 -13
  147. package/oxe/workflows/security.md +3 -2
  148. package/oxe/workflows/session.md +44 -0
  149. package/oxe/workflows/skill.md +44 -0
  150. package/oxe/workflows/spec.md +21 -18
  151. package/oxe/workflows/ui-review.md +13 -7
  152. package/oxe/workflows/update.md +3 -1
  153. package/oxe/workflows/validate-gaps.md +12 -6
  154. package/oxe/workflows/verify-audit.md +73 -0
  155. package/oxe/workflows/verify.md +40 -16
  156. package/package.json +84 -83
@@ -0,0 +1,879 @@
1
+ {
2
+ "contract_version": "2.0.0",
3
+ "mode_references": {
4
+ "discovery": "oxe/workflows/references/reasoning-discovery.md",
5
+ "planning": "oxe/workflows/references/reasoning-planning.md",
6
+ "execution": "oxe/workflows/references/reasoning-execution.md",
7
+ "review": "oxe/workflows/references/reasoning-review.md",
8
+ "status": "oxe/workflows/references/reasoning-status.md"
9
+ },
10
+ "mode_guidance": {
11
+ "discovery": [
12
+ "Explorar o repositório e os artefatos antes de perguntar.",
13
+ "Separar fatos confirmados, inferências e lacunas.",
14
+ "Perguntar apenas ambiguidades que mudem a decisão ou o artefato final."
15
+ ],
16
+ "planning": [
17
+ "Fechar interfaces, validação, riscos, rollback e assumptions relevantes.",
18
+ "Não deixar decisões importantes para quem implementar depois.",
19
+ "Explicitar confiança e condição objetiva para replanejar."
20
+ ],
21
+ "execution": [
22
+ "Fazer reconhecimento curto antes de editar ou executar mutações.",
23
+ "Trabalhar no menor write set viável e validar após cada fatia relevante.",
24
+ "Parar e explicitar o bloqueio quando houver hipótese crítica não verificada."
25
+ ],
26
+ "review": [
27
+ "Apresentar findings primeiro, ordenados por severidade e evidência.",
28
+ "Separar bug, risco, regressão e lacuna de teste.",
29
+ "Se não houver findings, declarar isso explicitamente e listar riscos residuais."
30
+ ],
31
+ "status": [
32
+ "Responder com leitura curta e orientada a decisão.",
33
+ "Dar uma recomendação única e justificar o motivo.",
34
+ "Explicitar a confiança quando o estado estiver incompleto ou ambíguo."
35
+ ]
36
+ },
37
+ "mode_defaults": {
38
+ "discovery": {
39
+ "question_policy": "explore_first",
40
+ "output_contract": "situational",
41
+ "tool_profile": "read_heavy",
42
+ "confidence_policy": "explicit",
43
+ "output_sections": [
44
+ "Fatos",
45
+ "Inferências",
46
+ "Lacunas",
47
+ "Próximo passo"
48
+ ],
49
+ "freshness_policy": {
50
+ "pack_max_age_hours": 12,
51
+ "artifact_max_age_hours": 168
52
+ },
53
+ "fallback_policy": "read_direct_with_warning",
54
+ "blocking_conditions": [
55
+ "missing:state"
56
+ ]
57
+ },
58
+ "planning": {
59
+ "question_policy": "ask_high_impact_only",
60
+ "output_contract": "plan",
61
+ "tool_profile": "mixed",
62
+ "confidence_policy": "rubric",
63
+ "output_sections": [
64
+ "Objetivo",
65
+ "Plano",
66
+ "Validação",
67
+ "Riscos",
68
+ "Assumptions",
69
+ "Confiança"
70
+ ],
71
+ "freshness_policy": {
72
+ "pack_max_age_hours": 8,
73
+ "artifact_max_age_hours": 120
74
+ },
75
+ "fallback_policy": "read_direct_with_warning",
76
+ "blocking_conditions": [
77
+ "missing:state",
78
+ "missing:spec"
79
+ ]
80
+ },
81
+ "execution": {
82
+ "question_policy": "ask_high_impact_only",
83
+ "output_contract": "execution",
84
+ "tool_profile": "write_bounded",
85
+ "confidence_policy": "explicit",
86
+ "output_sections": [
87
+ "Contexto lido",
88
+ "Alvo da mudança",
89
+ "Validação executada",
90
+ "Resultado",
91
+ "Próximo passo"
92
+ ],
93
+ "freshness_policy": {
94
+ "pack_max_age_hours": 4,
95
+ "artifact_max_age_hours": 72
96
+ },
97
+ "fallback_policy": "read_direct_with_warning",
98
+ "blocking_conditions": [
99
+ "missing:state",
100
+ "missing:plan"
101
+ ]
102
+ },
103
+ "review": {
104
+ "question_policy": "none",
105
+ "output_contract": "findings",
106
+ "tool_profile": "review_heavy",
107
+ "confidence_policy": "explicit",
108
+ "output_sections": [
109
+ "Findings",
110
+ "Perguntas abertas",
111
+ "Riscos residuais",
112
+ "Resumo"
113
+ ],
114
+ "freshness_policy": {
115
+ "pack_max_age_hours": 6,
116
+ "artifact_max_age_hours": 120
117
+ },
118
+ "fallback_policy": "read_direct_with_warning",
119
+ "blocking_conditions": [
120
+ "missing:state"
121
+ ]
122
+ },
123
+ "status": {
124
+ "question_policy": "none",
125
+ "output_contract": "routing",
126
+ "tool_profile": "read_heavy",
127
+ "confidence_policy": "explicit",
128
+ "output_sections": [
129
+ "Leitura atual",
130
+ "Recomendação",
131
+ "Motivo",
132
+ "Confiança"
133
+ ],
134
+ "freshness_policy": {
135
+ "pack_max_age_hours": 6,
136
+ "artifact_max_age_hours": 168
137
+ },
138
+ "fallback_policy": "read_direct_with_warning",
139
+ "blocking_conditions": [
140
+ "missing:state"
141
+ ]
142
+ }
143
+ },
144
+ "workflows": {
145
+ "ask": {
146
+ "reasoning_mode": "discovery",
147
+ "required_artifacts": [
148
+ "state"
149
+ ],
150
+ "optional_artifacts": [
151
+ "session_manifest",
152
+ "spec",
153
+ "plan",
154
+ "quick",
155
+ "runtime",
156
+ "checkpoints",
157
+ "verify",
158
+ "summary",
159
+ "investigations_index",
160
+ "project_summary",
161
+ "session_summary",
162
+ "phase_summary",
163
+ "codebase_overview",
164
+ "codebase_stack",
165
+ "global_lessons",
166
+ "sessions_index",
167
+ "azure_inventory"
168
+ ],
169
+ "context_tiers": {
170
+ "minimal": [
171
+ "state",
172
+ "session_summary",
173
+ "phase_summary"
174
+ ],
175
+ "standard": [
176
+ "state",
177
+ "session_summary",
178
+ "phase_summary",
179
+ "spec",
180
+ "plan",
181
+ "quick",
182
+ "runtime",
183
+ "checkpoints",
184
+ "verify",
185
+ "summary"
186
+ ],
187
+ "full": [
188
+ "state",
189
+ "session_manifest",
190
+ "spec",
191
+ "plan",
192
+ "quick",
193
+ "runtime",
194
+ "checkpoints",
195
+ "verify",
196
+ "summary",
197
+ "investigations_index",
198
+ "project_summary",
199
+ "session_summary",
200
+ "phase_summary",
201
+ "codebase_overview",
202
+ "codebase_stack",
203
+ "global_lessons",
204
+ "sessions_index",
205
+ "azure_inventory"
206
+ ]
207
+ },
208
+ "extraction_intent": "status_read"
209
+ },
210
+ "capabilities": {
211
+ "reasoning_mode": "execution",
212
+ "tool_profile": "mixed",
213
+ "required_artifacts": [
214
+ "state",
215
+ "capabilities_index"
216
+ ],
217
+ "optional_artifacts": [
218
+ "project_summary",
219
+ "session_summary",
220
+ "runtime",
221
+ "active_run"
222
+ ],
223
+ "extraction_intent": "execution_input"
224
+ },
225
+ "checkpoint": {
226
+ "reasoning_mode": "execution",
227
+ "required_artifacts": [
228
+ "state",
229
+ "checkpoints"
230
+ ],
231
+ "optional_artifacts": [
232
+ "runtime",
233
+ "active_run",
234
+ "session_manifest",
235
+ "phase_summary"
236
+ ],
237
+ "extraction_intent": "execution_input"
238
+ },
239
+ "compact": {
240
+ "reasoning_mode": "discovery",
241
+ "output_contract": "execution",
242
+ "tool_profile": "mixed",
243
+ "required_artifacts": [
244
+ "state",
245
+ "codebase_overview",
246
+ "codebase_structure",
247
+ "codebase_stack"
248
+ ],
249
+ "optional_artifacts": [
250
+ "codebase_testing",
251
+ "codebase_integrations",
252
+ "codebase_concerns",
253
+ "project_summary"
254
+ ],
255
+ "extraction_intent": "status_read"
256
+ },
257
+ "dashboard": {
258
+ "reasoning_mode": "status",
259
+ "output_contract": "situational",
260
+ "required_artifacts": [
261
+ "state",
262
+ "phase_summary",
263
+ "project_summary"
264
+ ],
265
+ "optional_artifacts": [
266
+ "session_summary",
267
+ "plan",
268
+ "runtime",
269
+ "verify",
270
+ "active_run",
271
+ "events",
272
+ "context_pack_dashboard"
273
+ ],
274
+ "extraction_intent": "critical_check"
275
+ },
276
+ "debug": {
277
+ "reasoning_mode": "execution",
278
+ "required_artifacts": [
279
+ "state",
280
+ "plan",
281
+ "runtime"
282
+ ],
283
+ "optional_artifacts": [
284
+ "verify",
285
+ "events",
286
+ "active_run",
287
+ "project_summary",
288
+ "session_summary",
289
+ "phase_summary"
290
+ ],
291
+ "extraction_intent": "execution_input"
292
+ },
293
+ "discuss": {
294
+ "reasoning_mode": "discovery",
295
+ "required_artifacts": [
296
+ "state"
297
+ ],
298
+ "optional_artifacts": [
299
+ "discuss",
300
+ "spec",
301
+ "project_summary",
302
+ "session_summary",
303
+ "phase_summary",
304
+ "investigations_index",
305
+ "codebase_overview"
306
+ ],
307
+ "extraction_intent": "status_read"
308
+ },
309
+ "execute": {
310
+ "reasoning_mode": "execution",
311
+ "required_artifacts": [
312
+ "state",
313
+ "runtime",
314
+ "checkpoints"
315
+ ],
316
+ "optional_artifacts": [
317
+ "plan",
318
+ "quick",
319
+ "active_run",
320
+ "events",
321
+ "verify",
322
+ "summary",
323
+ "session_summary",
324
+ "phase_summary",
325
+ "project_summary",
326
+ "capabilities_index",
327
+ "azure_inventory"
328
+ ],
329
+ "context_tiers": {
330
+ "minimal": [
331
+ "state",
332
+ "runtime",
333
+ "checkpoints",
334
+ "plan",
335
+ "quick",
336
+ "phase_summary"
337
+ ],
338
+ "standard": [
339
+ "state",
340
+ "runtime",
341
+ "checkpoints",
342
+ "plan",
343
+ "quick",
344
+ "phase_summary",
345
+ "session_summary",
346
+ "active_run",
347
+ "events",
348
+ "verify",
349
+ "summary"
350
+ ],
351
+ "full": [
352
+ "state",
353
+ "runtime",
354
+ "checkpoints",
355
+ "plan",
356
+ "quick",
357
+ "active_run",
358
+ "events",
359
+ "verify",
360
+ "summary",
361
+ "session_summary",
362
+ "phase_summary",
363
+ "project_summary",
364
+ "capabilities_index",
365
+ "azure_inventory"
366
+ ]
367
+ },
368
+ "blocking_conditions": [
369
+ "missing:state",
370
+ "missing:plan_or_quick"
371
+ ],
372
+ "extraction_intent": "execution_input"
373
+ },
374
+ "forensics": {
375
+ "reasoning_mode": "execution",
376
+ "required_artifacts": [
377
+ "state",
378
+ "runtime",
379
+ "events"
380
+ ],
381
+ "optional_artifacts": [
382
+ "plan",
383
+ "verify",
384
+ "summary",
385
+ "active_run",
386
+ "session_summary",
387
+ "phase_summary",
388
+ "project_summary"
389
+ ],
390
+ "extraction_intent": "execution_input"
391
+ },
392
+ "help": {
393
+ "reasoning_mode": "status",
394
+ "required_artifacts": [
395
+ "state"
396
+ ],
397
+ "optional_artifacts": [
398
+ "phase_summary",
399
+ "project_summary",
400
+ "session_summary",
401
+ "plan",
402
+ "runtime"
403
+ ],
404
+ "extraction_intent": "critical_check"
405
+ },
406
+ "loop": {
407
+ "reasoning_mode": "execution",
408
+ "required_artifacts": [
409
+ "state",
410
+ "plan",
411
+ "runtime",
412
+ "active_run"
413
+ ],
414
+ "optional_artifacts": [
415
+ "events",
416
+ "checkpoints",
417
+ "verify",
418
+ "phase_summary",
419
+ "session_summary"
420
+ ],
421
+ "extraction_intent": "execution_input"
422
+ },
423
+ "milestone": {
424
+ "reasoning_mode": "planning",
425
+ "output_contract": "execution",
426
+ "required_artifacts": [
427
+ "state"
428
+ ],
429
+ "optional_artifacts": [
430
+ "project_summary",
431
+ "global_lessons",
432
+ "session_summary",
433
+ "phase_summary"
434
+ ],
435
+ "extraction_intent": "planning_input"
436
+ },
437
+ "next": {
438
+ "reasoning_mode": "status",
439
+ "required_artifacts": [
440
+ "state",
441
+ "phase_summary"
442
+ ],
443
+ "optional_artifacts": [
444
+ "project_summary",
445
+ "session_summary",
446
+ "plan",
447
+ "runtime",
448
+ "verify"
449
+ ],
450
+ "extraction_intent": "critical_check"
451
+ },
452
+ "obs": {
453
+ "reasoning_mode": "execution",
454
+ "required_artifacts": [
455
+ "state"
456
+ ],
457
+ "optional_artifacts": [
458
+ "project_summary",
459
+ "session_summary",
460
+ "phase_summary",
461
+ "plan",
462
+ "runtime"
463
+ ],
464
+ "extraction_intent": "execution_input"
465
+ },
466
+ "oxe": {
467
+ "reasoning_mode": "status",
468
+ "required_artifacts": [
469
+ "state"
470
+ ],
471
+ "optional_artifacts": [
472
+ "phase_summary",
473
+ "project_summary",
474
+ "session_summary",
475
+ "plan",
476
+ "runtime"
477
+ ],
478
+ "extraction_intent": "critical_check"
479
+ },
480
+ "plan-agent": {
481
+ "reasoning_mode": "planning",
482
+ "required_artifacts": [
483
+ "state",
484
+ "spec"
485
+ ],
486
+ "optional_artifacts": [
487
+ "discuss",
488
+ "plan_agents",
489
+ "investigations_index",
490
+ "project_summary",
491
+ "session_summary",
492
+ "phase_summary",
493
+ "capabilities_index"
494
+ ],
495
+ "extraction_intent": "planning_input"
496
+ },
497
+ "plan": {
498
+ "reasoning_mode": "planning",
499
+ "required_artifacts": [
500
+ "state",
501
+ "spec"
502
+ ],
503
+ "optional_artifacts": [
504
+ "discuss",
505
+ "investigations_index",
506
+ "project_summary",
507
+ "session_summary",
508
+ "phase_summary",
509
+ "global_lessons",
510
+ "capabilities_index",
511
+ "azure_inventory",
512
+ "checkpoints",
513
+ "calibration"
514
+ ],
515
+ "context_tiers": {
516
+ "minimal": [
517
+ "state",
518
+ "spec",
519
+ "session_summary",
520
+ "phase_summary"
521
+ ],
522
+ "standard": [
523
+ "state",
524
+ "spec",
525
+ "session_summary",
526
+ "phase_summary",
527
+ "discuss",
528
+ "investigations_index",
529
+ "project_summary",
530
+ "global_lessons",
531
+ "capabilities_index",
532
+ "checkpoints"
533
+ ],
534
+ "full": [
535
+ "state",
536
+ "spec",
537
+ "discuss",
538
+ "investigations_index",
539
+ "project_summary",
540
+ "session_summary",
541
+ "phase_summary",
542
+ "global_lessons",
543
+ "capabilities_index",
544
+ "azure_inventory",
545
+ "checkpoints",
546
+ "calibration"
547
+ ]
548
+ },
549
+ "extraction_intent": "planning_input"
550
+ },
551
+ "project": {
552
+ "reasoning_mode": "planning",
553
+ "output_contract": "routing",
554
+ "required_artifacts": [
555
+ "state",
556
+ "project_summary"
557
+ ],
558
+ "optional_artifacts": [
559
+ "session_summary",
560
+ "phase_summary",
561
+ "global_lessons"
562
+ ],
563
+ "extraction_intent": "planning_input"
564
+ },
565
+ "quick": {
566
+ "reasoning_mode": "planning",
567
+ "required_artifacts": [
568
+ "state",
569
+ "spec"
570
+ ],
571
+ "optional_artifacts": [
572
+ "plan",
573
+ "project_summary",
574
+ "session_summary",
575
+ "phase_summary",
576
+ "capabilities_index"
577
+ ],
578
+ "extraction_intent": "planning_input"
579
+ },
580
+ "research": {
581
+ "reasoning_mode": "discovery",
582
+ "required_artifacts": [
583
+ "state"
584
+ ],
585
+ "optional_artifacts": [
586
+ "investigations_index",
587
+ "spec",
588
+ "plan",
589
+ "project_summary",
590
+ "session_summary",
591
+ "phase_summary",
592
+ "codebase_overview",
593
+ "codebase_integrations",
594
+ "azure_inventory"
595
+ ],
596
+ "extraction_intent": "status_read"
597
+ },
598
+ "retro": {
599
+ "reasoning_mode": "review",
600
+ "required_artifacts": [
601
+ "state",
602
+ "verify"
603
+ ],
604
+ "optional_artifacts": [
605
+ "summary",
606
+ "global_lessons",
607
+ "project_summary",
608
+ "session_summary",
609
+ "phase_summary"
610
+ ],
611
+ "extraction_intent": "verification"
612
+ },
613
+ "review-pr": {
614
+ "reasoning_mode": "review",
615
+ "required_artifacts": [
616
+ "state",
617
+ "plan"
618
+ ],
619
+ "optional_artifacts": [
620
+ "verify",
621
+ "summary",
622
+ "phase_summary",
623
+ "session_summary",
624
+ "project_summary",
625
+ "codebase_testing",
626
+ "codebase_concerns"
627
+ ],
628
+ "extraction_intent": "verification"
629
+ },
630
+ "route": {
631
+ "reasoning_mode": "status",
632
+ "required_artifacts": [
633
+ "state",
634
+ "phase_summary"
635
+ ],
636
+ "optional_artifacts": [
637
+ "project_summary",
638
+ "session_summary",
639
+ "plan",
640
+ "runtime",
641
+ "verify"
642
+ ],
643
+ "extraction_intent": "critical_check"
644
+ },
645
+ "scan": {
646
+ "reasoning_mode": "discovery",
647
+ "required_artifacts": [
648
+ "state"
649
+ ],
650
+ "optional_artifacts": [
651
+ "codebase_overview",
652
+ "codebase_stack",
653
+ "codebase_structure",
654
+ "codebase_testing",
655
+ "codebase_integrations",
656
+ "codebase_concerns",
657
+ "project_summary"
658
+ ],
659
+ "extraction_intent": "status_read"
660
+ },
661
+ "security": {
662
+ "reasoning_mode": "review",
663
+ "required_artifacts": [
664
+ "state"
665
+ ],
666
+ "optional_artifacts": [
667
+ "plan",
668
+ "verify",
669
+ "codebase_stack",
670
+ "codebase_integrations",
671
+ "codebase_concerns",
672
+ "project_summary",
673
+ "session_summary"
674
+ ],
675
+ "extraction_intent": "verification"
676
+ },
677
+ "session": {
678
+ "reasoning_mode": "execution",
679
+ "required_artifacts": [
680
+ "state",
681
+ "sessions_index"
682
+ ],
683
+ "optional_artifacts": [
684
+ "session_manifest",
685
+ "project_summary",
686
+ "phase_summary"
687
+ ],
688
+ "extraction_intent": "execution_input"
689
+ },
690
+ "skill": {
691
+ "reasoning_mode": "execution",
692
+ "required_artifacts": [
693
+ "state"
694
+ ],
695
+ "optional_artifacts": [
696
+ "capabilities_index",
697
+ "project_summary",
698
+ "session_summary",
699
+ "phase_summary"
700
+ ],
701
+ "extraction_intent": "execution_input"
702
+ },
703
+ "spec": {
704
+ "reasoning_mode": "discovery",
705
+ "required_artifacts": [
706
+ "state"
707
+ ],
708
+ "optional_artifacts": [
709
+ "discuss",
710
+ "spec",
711
+ "investigations_index",
712
+ "project_summary",
713
+ "session_summary",
714
+ "phase_summary",
715
+ "codebase_overview",
716
+ "codebase_integrations",
717
+ "global_lessons",
718
+ "azure_inventory"
719
+ ],
720
+ "extraction_intent": "planning_input"
721
+ },
722
+ "ui-review": {
723
+ "reasoning_mode": "review",
724
+ "required_artifacts": [
725
+ "state",
726
+ "spec",
727
+ "verify"
728
+ ],
729
+ "optional_artifacts": [
730
+ "plan",
731
+ "summary",
732
+ "project_summary",
733
+ "session_summary",
734
+ "phase_summary"
735
+ ],
736
+ "extraction_intent": "verification"
737
+ },
738
+ "ui-spec": {
739
+ "reasoning_mode": "planning",
740
+ "required_artifacts": [
741
+ "state",
742
+ "spec"
743
+ ],
744
+ "optional_artifacts": [
745
+ "plan",
746
+ "project_summary",
747
+ "session_summary",
748
+ "phase_summary"
749
+ ],
750
+ "extraction_intent": "planning_input"
751
+ },
752
+ "update": {
753
+ "reasoning_mode": "execution",
754
+ "required_artifacts": [
755
+ "state",
756
+ "project_summary"
757
+ ],
758
+ "optional_artifacts": [
759
+ "runtime_semantics_manifest",
760
+ "copilot_manifest",
761
+ "phase_summary"
762
+ ],
763
+ "extraction_intent": "execution_input"
764
+ },
765
+ "validate-gaps": {
766
+ "reasoning_mode": "review",
767
+ "required_artifacts": [
768
+ "state",
769
+ "plan",
770
+ "verify"
771
+ ],
772
+ "optional_artifacts": [
773
+ "summary",
774
+ "codebase_testing",
775
+ "project_summary",
776
+ "phase_summary"
777
+ ],
778
+ "extraction_intent": "verification"
779
+ },
780
+ "verify": {
781
+ "reasoning_mode": "review",
782
+ "required_artifacts": [
783
+ "state",
784
+ "plan",
785
+ "runtime",
786
+ "verify"
787
+ ],
788
+ "optional_artifacts": [
789
+ "quick",
790
+ "active_run",
791
+ "events",
792
+ "summary",
793
+ "investigations_index",
794
+ "project_summary",
795
+ "session_summary",
796
+ "phase_summary",
797
+ "codebase_testing",
798
+ "checkpoints",
799
+ "azure_inventory",
800
+ "calibration"
801
+ ],
802
+ "context_tiers": {
803
+ "minimal": [
804
+ "state",
805
+ "plan",
806
+ "runtime",
807
+ "verify",
808
+ "phase_summary"
809
+ ],
810
+ "standard": [
811
+ "state",
812
+ "plan",
813
+ "runtime",
814
+ "verify",
815
+ "phase_summary",
816
+ "session_summary",
817
+ "active_run",
818
+ "events",
819
+ "summary",
820
+ "checkpoints"
821
+ ],
822
+ "full": [
823
+ "state",
824
+ "plan",
825
+ "runtime",
826
+ "verify",
827
+ "quick",
828
+ "active_run",
829
+ "events",
830
+ "summary",
831
+ "investigations_index",
832
+ "project_summary",
833
+ "session_summary",
834
+ "phase_summary",
835
+ "codebase_testing",
836
+ "checkpoints",
837
+ "azure_inventory",
838
+ "calibration"
839
+ ]
840
+ },
841
+ "extraction_intent": "verification",
842
+ "auditor_artifacts": [
843
+ "state",
844
+ "spec",
845
+ "verify"
846
+ ],
847
+ "auditor_excluded": [
848
+ "runtime",
849
+ "plan"
850
+ ]
851
+ },
852
+ "workflow-authoring": {
853
+ "reasoning_mode": "review",
854
+ "required_artifacts": [
855
+ "state"
856
+ ],
857
+ "optional_artifacts": [
858
+ "spec",
859
+ "plan",
860
+ "project_summary",
861
+ "codebase_overview",
862
+ "codebase_stack"
863
+ ],
864
+ "extraction_intent": "verification"
865
+ },
866
+ "workstream": {
867
+ "reasoning_mode": "execution",
868
+ "required_artifacts": [
869
+ "state"
870
+ ],
871
+ "optional_artifacts": [
872
+ "project_summary",
873
+ "session_summary",
874
+ "phase_summary"
875
+ ],
876
+ "extraction_intent": "execution_input"
877
+ }
878
+ }
879
+ }