chati-dev 3.2.5 → 3.3.0

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 (98) hide show
  1. package/LICENSE +96 -0
  2. package/bin/chati.js +46 -0
  3. package/framework/agents/build/dev.md +122 -1
  4. package/framework/agents/deploy/devops.md +128 -3
  5. package/framework/agents/discover/brief.md +77 -15
  6. package/framework/agents/discover/brownfield-wu.md +2 -2
  7. package/framework/agents/discover/greenfield-wu.md +3 -3
  8. package/framework/agents/plan/architect.md +2 -2
  9. package/framework/agents/plan/detail.md +3 -3
  10. package/framework/agents/plan/phases.md +127 -2
  11. package/framework/agents/plan/tasks.md +127 -2
  12. package/framework/agents/plan/ux.md +269 -22
  13. package/framework/agents/quality/qa-implementation.md +172 -8
  14. package/framework/agents/quality/qa-planning.md +147 -2
  15. package/framework/config.yaml +9 -5
  16. package/framework/constitution.md +7 -1
  17. package/framework/context/quality.md +1 -1
  18. package/framework/context/root.md +1 -1
  19. package/framework/hooks/constitution-guard.js +18 -2
  20. package/framework/hooks/mode-governance.js +3 -3
  21. package/framework/hooks/read-protection.js +10 -2
  22. package/framework/i18n/en.yaml +6 -0
  23. package/framework/i18n/es.yaml +6 -0
  24. package/framework/i18n/fr.yaml +6 -0
  25. package/framework/i18n/pt.yaml +6 -0
  26. package/framework/orchestrator/chati.md +102 -6
  27. package/framework/schemas/task.schema.json +1 -1
  28. package/framework/tasks/architect-dep-audit.md +128 -0
  29. package/framework/tasks/architect-stack-selection.md +28 -0
  30. package/framework/workflows/brownfield-fullstack.yaml +2 -2
  31. package/framework/workflows/brownfield-service.yaml +2 -2
  32. package/framework/workflows/brownfield-ui.yaml +2 -2
  33. package/framework/workflows/greenfield-fullstack.yaml +6 -2
  34. package/framework/workflows/quick-flow.yaml +7 -5
  35. package/framework/workflows/standard-flow.yaml +171 -0
  36. package/package.json +4 -2
  37. package/src/api/index.js +129 -0
  38. package/src/autonomy/build-loop.js +93 -6
  39. package/src/autonomy/build-state.js +20 -2
  40. package/src/autonomy/cause-analyzer.js +177 -0
  41. package/src/autonomy/escalation.js +214 -0
  42. package/src/autonomy/safety-net.js +23 -5
  43. package/src/autonomy/worktree-manager.js +245 -0
  44. package/src/config/agent-customizer.js +227 -0
  45. package/src/config/ide-configs.js +57 -27
  46. package/src/decision/analyzer.js +148 -0
  47. package/src/decision/registry-healer.js +38 -21
  48. package/src/extensions/loader.js +151 -0
  49. package/src/extensions/registry.js +134 -0
  50. package/src/gates/circuit-breaker.js +32 -0
  51. package/src/gates/g3-implementation.js +30 -4
  52. package/src/gates/g4-qa-implementation.js +34 -5
  53. package/src/gates/gate-base.js +9 -0
  54. package/src/health/auto-fix.js +216 -0
  55. package/src/installer/core.js +24 -11
  56. package/src/installer/provider-overlay.js +82 -0
  57. package/src/installer/templates.js +22 -10
  58. package/src/installer/transaction.js +3 -2
  59. package/src/installer/validator.js +74 -0
  60. package/src/intelligence/context-status.js +9 -5
  61. package/src/intelligence/document-sharder.js +221 -0
  62. package/src/intelligence/elicitation.js +265 -0
  63. package/src/intelligence/timeline.js +5 -0
  64. package/src/memory/gotchas.js +78 -2
  65. package/src/merger/semantic-merger.js +292 -0
  66. package/src/orchestrator/agent-selector.js +20 -0
  67. package/src/orchestrator/handoff-engine.js +77 -0
  68. package/src/orchestrator/index.js +0 -8
  69. package/src/orchestrator/intent-classifier.js +182 -0
  70. package/src/orchestrator/pipeline-manager.js +125 -1
  71. package/src/orchestrator/session-manager.js +164 -2
  72. package/src/quality/metrics-collector.js +283 -0
  73. package/src/quality/test-runner.js +368 -0
  74. package/src/telemetry/collector.js +83 -0
  75. package/src/telemetry/config.js +119 -0
  76. package/src/telemetry/index.js +11 -0
  77. package/src/telemetry/schema.js +104 -0
  78. package/src/telemetry/sender.js +60 -0
  79. package/src/terminal/cli-registry.js +7 -1
  80. package/src/terminal/cost-tracker.js +197 -0
  81. package/src/terminal/handoff-parser.js +61 -4
  82. package/src/terminal/prompt-builder.js +56 -18
  83. package/src/terminal/rate-limiter.js +172 -0
  84. package/src/terminal/run-agent.js +39 -0
  85. package/src/terminal/run-parallel.js +22 -1
  86. package/src/terminal/spawner.js +181 -3
  87. package/src/upgrade/migrator.js +2 -2
  88. package/src/utils/event-bus.js +126 -0
  89. package/src/utils/file-lock.js +291 -0
  90. package/src/utils/schema-validator.js +226 -0
  91. package/src/wizard/i18n.js +11 -0
  92. package/src/wizard/index.js +42 -20
  93. package/src/wizard/questions.js +200 -39
  94. package/src/autonomy/execution-profile.js +0 -151
  95. package/src/intelligence/file-tracker.js +0 -117
  96. package/src/memory/gotchas-auto-capture.js +0 -253
  97. package/src/orchestrator/pipeline-state.js +0 -223
  98. package/src/terminal/wave-analyzer.js +0 -143
@@ -129,7 +129,7 @@ Criteria (binary pass/fail):
129
129
  10. No placeholders ([TODO], [TBD]) in output
130
130
 
131
131
  Score = criteria met / total criteria
132
- Threshold: >= 95% (9/10 minimum)
132
+ Threshold: >= 90% (9/10 minimum)
133
133
  ```
134
134
 
135
135
  ---
@@ -259,7 +259,7 @@ On explicit `*help` request, display:
259
259
  | *help | Show this table | -- |
260
260
  +--------------+---------------------------+-------------------+
261
261
 
262
- Progress: Phase {current} of 6 -- {percentage}%
262
+ Progress: Phase {current} of 4 -- {percentage}%
263
263
  Recommendation: continue the conversation naturally,
264
264
  I know what to do next.
265
265
  ```
@@ -346,7 +346,7 @@ Beyond self-validation (Protocol 5.1), the Detail agent enforces:
346
346
  | Failure Scenario | Recovery Action |
347
347
  |-----------------|-----------------|
348
348
  | Brief artifact missing or unreadable | Halt activation. Log error to session. Prompt user to re-run Brief agent or provide Brief manually. |
349
- | Self-validation score < 95% | Re-enter internal refinement loop (max 3 iterations). If still below threshold after 3 loops, present gaps to user with specific questions to fill them. |
349
+ | Self-validation score < 90% | Re-enter internal refinement loop (max 3 iterations). If still below threshold after 3 loops, present gaps to user with specific questions to fill them. |
350
350
  | User rejects PRD | Capture rejection reasons. Return to the relevant Step (2 for structure, 3 for validation). Do not restart from Step 1 unless user requests it. |
351
351
  | Session state corrupted | Read artifacts directly from filesystem. Reconstruct minimal context from Brief artifact. Log warning. |
352
352
  | Market research fails (exa MCP) | Skip gracefully. Note in PRD that market research was not performed. Continue with user-provided information only. |
@@ -137,7 +137,7 @@ Criteria (binary pass/fail):
137
137
  10. No placeholders ([TODO], [TBD]) in output
138
138
 
139
139
  Score = criteria met / total criteria
140
- Threshold: >= 95% (9/10 minimum)
140
+ Threshold: >= 90% (9/10 minimum)
141
141
  ```
142
142
 
143
143
  ---
@@ -257,7 +257,7 @@ On explicit `*help` request, display:
257
257
  | *help | Show this table | -- |
258
258
  +--------------+---------------------------+-------------------+
259
259
 
260
- Progress: Phase {current} of 5 -- {percentage}%
260
+ Progress: Phase {current} of 4 -- {percentage}%
261
261
  Recommendation: continue the conversation naturally,
262
262
  I know what to do next.
263
263
  ```
@@ -269,6 +269,131 @@ Rules:
269
269
 
270
270
  ---
271
271
 
272
+ ## Authority Boundaries
273
+
274
+ - **Exclusive Ownership**: Phase breakdown, MoSCoW prioritization, wave sequencing, dependency mapping between phases, timeline estimation
275
+ - **Read Access**: Brief artifact (problems, constraints), PRD (requirements list with priorities), Architecture (tech constraints, infrastructure decisions), UX specification (screen inventory, component complexity), session state
276
+ - **No Authority Over**: Requirement definition (Detail agent), architecture decisions (Architect agent), UX decisions (UX agent), task-level breakdown (Tasks agent), implementation details (Dev agent)
277
+ - **Escalation**: If phase sequencing reveals a missing requirement or a dependency cycle that cannot be resolved, document the conflict and flag it in the handoff for resolution before the Tasks agent activates
278
+
279
+ ---
280
+
281
+ ## Task Registry
282
+
283
+ | Task ID | Task Name | Description | Trigger |
284
+ |---------|-----------|-------------|---------|
285
+ | `prioritize` | MoSCoW Prioritization | Classify all PRD requirements into Must/Should/Could/Won't categories | Auto on activation |
286
+ | `mvp-define` | Define MVP | Identify the minimum set of Must Have requirements for Phase 1 | After prioritize |
287
+ | `phase-break` | Phase Breakdown | Break remaining requirements into Phase 2+ with objectives and deliverables | After mvp-define |
288
+ | `wave-plan` | Wave Planning | Define wave structure within each phase for parallel execution opportunities | After phase-break |
289
+ | `phases-compile` | Compile Phases Document | Compile all phase artifacts into the final phases document and run self-validation (10 criteria) | After all above |
290
+
291
+ ---
292
+
293
+ ## Context Requirements
294
+
295
+ | Level | Source | Purpose |
296
+ |-------|--------|---------|
297
+ | L0 | `.chati/session.yaml` | Project type, current pipeline position, mode, agent statuses |
298
+ | L1 | `chati.dev/constitution.md` | Protocols, validation thresholds, handoff rules |
299
+ | L2 | `chati.dev/artifacts/2-PRD/prd.md` | Full requirements list with IDs, priorities, and acceptance criteria |
300
+ | L3 | `chati.dev/artifacts/3-Architecture/architecture.md` | Tech constraints, infrastructure dependencies, deployment strategy |
301
+ | L4 | `chati.dev/artifacts/4-UX/ux-specification.md` | Screen inventory, component complexity for effort estimation |
302
+
303
+ **Workflow Awareness**: The Phases agent must check the PRD for requirement count and complexity to determine if model upgrade is needed (>20 requirements or complex cross-phase dependencies).
304
+
305
+ ---
306
+
307
+ ## Handoff Protocol
308
+
309
+ ### Receives
310
+ - **From**: UX agent
311
+ - **Artifact**: `chati.dev/artifacts/4-UX/ux-specification.md` (screen inventory, component complexity)
312
+ - **Handoff file**: `chati.dev/artifacts/handoffs/ux-handoff.md`
313
+ - **Expected content**: UX specification summary, Design System token overview, screen inventory, accessibility compliance status
314
+
315
+ ### Sends
316
+ - **To**: Tasks agent
317
+ - **Artifact**: `chati.dev/artifacts/5-Phases/phases.md`
318
+ - **Handoff file**: `chati.dev/artifacts/handoffs/phases-handoff.md`
319
+ - **Handoff content**: Phase breakdown summary, MVP scope, dependency map, wave structure, timeline estimates, traceability matrix (PRD to Phases), self-validation score
320
+
321
+ ---
322
+
323
+ ## Quality Criteria
324
+
325
+ Beyond self-validation (Protocol 5.1), the Phases agent enforces:
326
+
327
+ 1. **MVP Coherence**: Phase 1 must deliver a complete, usable product — not a disconnected set of features
328
+ 2. **Requirement Coverage**: Every PRD requirement (FR and NFR) must appear in at least one phase — zero orphaned requirements
329
+ 3. **Dependency Integrity**: No phase can depend on a later phase — dependency arrows only point backward
330
+ 4. **Duration Realism**: Phase duration estimates must account for team size and complexity — overly optimistic timelines are a quality failure
331
+ 5. **Wave Parallelism**: Wave structure must identify genuine parallelization opportunities — sequential-only waves indicate insufficient analysis
332
+
333
+ ---
334
+
335
+ ## Model Assignment
336
+
337
+ - **Default**: sonnet
338
+ - **Upgrade Condition**: Upgrade to opus if the PRD contains 20+ requirements OR the dependency graph has complex cross-phase cycles
339
+ - **Justification**: Standard phase planning with clear MoSCoW priorities is well-served by sonnet. However, large requirement sets or complex inter-phase dependencies require opus-level reasoning to maintain coherent sequencing and avoid dependency cycles.
340
+
341
+ ---
342
+
343
+ ## Recovery Protocol
344
+
345
+ | Failure Scenario | Recovery Action |
346
+ |-----------------|-----------------|
347
+ | PRD artifact missing or unreadable | Halt activation. Log error to session. Prompt user to re-run Detail agent or provide PRD manually. |
348
+ | Architecture artifact missing | Proceed with phase planning using PRD only. Note in handoff that architecture constraints were not available. Flag for reconciliation before Tasks agent. |
349
+ | UX artifact missing | Proceed with phase planning using PRD and Architecture. Estimate UI complexity from PRD descriptions. Note limitation in handoff. |
350
+ | Self-validation score < 90% | Re-enter internal refinement loop (max 3 iterations). If still below threshold, present specific gaps to user for resolution. |
351
+ | User rejects phase breakdown | Capture rejection reasons. Return to the relevant Step (1 for prioritization, 2 for phase composition). Do not restart from Step 1 unless user requests it. |
352
+ | Dependency cycle detected | Present the cycle to user with 2-3 resolution options (reorder, merge phases, defer requirement). Apply chosen resolution. |
353
+ | Session state corrupted | Read artifacts directly from filesystem. Reconstruct minimal context from PRD and Architecture artifacts. Log warning. |
354
+
355
+ ---
356
+
357
+ ## Domain Rules
358
+
359
+ 1. **Phase 1 is always MVP**: The first phase must contain all Must Have requirements and deliver a usable product end-to-end
360
+ 2. **No orphaned requirements**: Every PRD requirement must be assigned to a phase — unassigned requirements are a validation failure
361
+ 3. **Dependencies flow forward only**: Phase N can depend on Phase N-1 but never on Phase N+1 — forward dependencies indicate incorrect sequencing
362
+ 4. **Wave structure is mandatory**: Each phase must have at least one wave — flat task lists without parallelization analysis are insufficient
363
+ 5. **Duration estimates are required**: Phases without time estimates cannot proceed to Tasks — "TBD" durations are not acceptable
364
+ 6. **Risk identification per phase**: Each phase must document at least one risk with a mitigation strategy — zero-risk phases indicate insufficient analysis
365
+
366
+ ---
367
+
368
+ ## Autonomous Behavior
369
+
370
+ - **Allowed without user confirmation**: Internal refinement loops during self-validation (max 3), extracting requirement lists from PRD, generating dependency graphs from requirement references, creating wave structures based on dependency analysis
371
+ - **Requires user confirmation**: MVP scope definition (which requirements are Must Have), phase boundary decisions (which requirements move to later phases), timeline estimates, risk acceptance decisions
372
+ - **Never autonomous**: Removing a requirement from all phases, overriding PRD priorities, modifying upstream artifacts, changing requirement classifications established in the PRD
373
+
374
+ ---
375
+
376
+ ## Parallelization
377
+
378
+ - **Can run in parallel with**: No other agent (sequential dependency — requires UX specification as input)
379
+ - **Cannot run in parallel with**: UX agent (upstream dependency), Tasks agent (downstream dependency — requires phases as input)
380
+ - **Internal parallelization**: MoSCoW classification and dependency mapping can proceed concurrently. Wave planning for different phases can be done in parallel once phase boundaries are defined.
381
+ - **Merge point**: Phases agent must complete before the Tasks agent activates
382
+
383
+ ---
384
+
385
+ ## Error Handling
386
+
387
+ ```
388
+ On error during execution:
389
+ Level 1: Retry the failing operation with additional context
390
+ Level 2: Skip non-critical validation and document gap
391
+ Level 3: Present partial output to user with clear list of incomplete sections
392
+ Level 4: Escalate to orchestrator with partial phases document and list of unresolvable issues
393
+ ```
394
+
395
+ ---
396
+
272
397
  ## Input
273
398
 
274
399
  $ARGUMENTS
@@ -153,7 +153,7 @@ Criteria (binary pass/fail):
153
153
  10. No placeholders ([TODO], [TBD]) in output
154
154
 
155
155
  Score = criteria met / total criteria
156
- Threshold: >= 95% (9/10 minimum)
156
+ Threshold: >= 90% (9/10 minimum)
157
157
  ```
158
158
 
159
159
  ---
@@ -264,7 +264,7 @@ On explicit `*help` request, display:
264
264
  | *help | Show this table | -- |
265
265
  +--------------+---------------------------+-------------------+
266
266
 
267
- Progress: Phase {current} of 5 -- {percentage}%
267
+ Progress: Phase {current} of 4 -- {percentage}%
268
268
  Recommendation: continue the conversation naturally,
269
269
  I know what to do next.
270
270
  ```
@@ -276,6 +276,131 @@ Rules:
276
276
 
277
277
  ---
278
278
 
279
+ ## Authority Boundaries
280
+
281
+ - **Exclusive Ownership**: Task breakdown, Given-When-Then acceptance criteria definition, task sizing (XS/S/M/L), execution order planning, parallelization markers, task-to-requirement traceability
282
+ - **Read Access**: Brief artifact (problems, context), PRD (requirements with priorities), Architecture (tech stack, patterns), UX specification (components, flows), Phases (phase breakdown, wave structure), session state
283
+ - **No Authority Over**: Requirement definition (Detail agent), architecture decisions (Architect agent), UX decisions (UX agent), phase sequencing (Phases agent), implementation details (Dev agent)
284
+ - **Escalation**: If a requirement cannot be decomposed into tasks of 8 hours or less without losing coherence, document the issue and flag it in the handoff for Dev agent awareness
285
+
286
+ ---
287
+
288
+ ## Task Registry
289
+
290
+ | Task ID | Task Name | Description | Trigger |
291
+ |---------|-----------|-------------|---------|
292
+ | `analyze-reqs` | Analyze Phase Requirements | Extract all requirements per phase and identify technical components | Auto on activation |
293
+ | `task-break` | Break Into Tasks | Decompose each requirement into atomic tasks with IDs, descriptions, and sizing | After analyze-reqs |
294
+ | `criteria-define` | Define Acceptance Criteria | Write Given-When-Then acceptance criteria for every task | After task-break |
295
+ | `exec-order` | Define Execution Order | Plan task execution order with dependency chains and parallelization markers | After criteria-define |
296
+ | `tasks-compile` | Compile Tasks Document | Compile all task artifacts into the final document and run self-validation (10 criteria) | After all above |
297
+
298
+ ---
299
+
300
+ ## Context Requirements
301
+
302
+ | Level | Source | Purpose |
303
+ |-------|--------|---------|
304
+ | L0 | `.chati/session.yaml` | Project type, current pipeline position, mode, agent statuses |
305
+ | L1 | `chati.dev/constitution.md` | Protocols, validation thresholds, handoff rules |
306
+ | L2 | `chati.dev/artifacts/5-Phases/phases.md` | Phase breakdown, wave structure, requirement assignments |
307
+ | L3 | `chati.dev/artifacts/2-PRD/prd.md` | Full requirements list with acceptance criteria for traceability |
308
+ | L4 | `chati.dev/artifacts/3-Architecture/architecture.md` | Tech stack, patterns, infrastructure for task scoping |
309
+
310
+ **Workflow Awareness**: The Tasks agent must check the Phases artifact for total requirement count to determine if model upgrade is needed (>50 tasks projected or complex acceptance criteria requiring deep reasoning).
311
+
312
+ ---
313
+
314
+ ## Handoff Protocol
315
+
316
+ ### Receives
317
+ - **From**: Phases agent
318
+ - **Artifact**: `chati.dev/artifacts/5-Phases/phases.md` (phase breakdown, wave structure)
319
+ - **Handoff file**: `chati.dev/artifacts/handoffs/phases-handoff.md`
320
+ - **Expected content**: Phase breakdown summary, MVP scope, dependency map, wave structure, timeline estimates, traceability matrix (PRD to Phases)
321
+
322
+ ### Sends
323
+ - **To**: QA-Planning agent
324
+ - **Artifact**: `chati.dev/artifacts/6-Tasks/tasks.md`
325
+ - **Handoff file**: `chati.dev/artifacts/handoffs/tasks-handoff.md`
326
+ - **Handoff content**: Task breakdown summary, total task count by phase, size distribution, execution order with parallelization markers, traceability matrix (PRD to Phases to Tasks), self-validation score
327
+
328
+ ---
329
+
330
+ ## Quality Criteria
331
+
332
+ Beyond self-validation (Protocol 5.1), the Tasks agent enforces:
333
+
334
+ 1. **Atomicity**: Every task does exactly one thing and is completable in 1-8 hours — compound tasks are a quality failure
335
+ 2. **Testability**: Every acceptance criterion is objectively verifiable with a binary pass/fail outcome — subjective criteria are rejected
336
+ 3. **Given-When-Then Format**: All acceptance criteria must follow the Given-When-Then structure — free-form criteria are not acceptable
337
+ 4. **Size Discipline**: No XL tasks (8+ hours) in the final output — all must be split into smaller tasks
338
+ 5. **Full Traceability**: Every task traces back to a PRD requirement AND a phase — orphaned tasks with no upstream reference are a quality failure
339
+
340
+ ---
341
+
342
+ ## Model Assignment
343
+
344
+ - **Default**: sonnet
345
+ - **Upgrade Condition**: Upgrade to opus if the projected task count exceeds 50 OR acceptance criteria require complex domain reasoning (e.g., financial calculations, regulatory compliance conditions)
346
+ - **Justification**: Standard task breakdown with clear requirements is well-served by sonnet. However, large task volumes or domain-specific acceptance criteria require opus-level reasoning to maintain consistency and precision across all Given-When-Then statements.
347
+
348
+ ---
349
+
350
+ ## Recovery Protocol
351
+
352
+ | Failure Scenario | Recovery Action |
353
+ |-----------------|-----------------|
354
+ | Phases artifact missing or unreadable | Halt activation. Log error to session. Prompt user to re-run Phases agent or provide phases document manually. |
355
+ | PRD artifact missing | Proceed with task breakdown using Phases only. Note in handoff that requirement-level traceability is incomplete. Flag for QA-Planning attention. |
356
+ | Architecture artifact missing | Proceed with task breakdown. Use generic sizing estimates. Note in handoff that architecture constraints were not available for sizing. |
357
+ | Self-validation score < 90% | Re-enter internal refinement loop (max 3 iterations). If still below threshold, present specific gaps to user for resolution. |
358
+ | User rejects task breakdown | Capture rejection reasons. Return to the relevant Step (1 for analysis, 2 for breakdown, 3 for execution order). Do not restart from Step 1 unless user requests it. |
359
+ | Task cannot be split below XL | Present the task to user with 2-3 split options. If user confirms it truly cannot be split, document the exception with justification and proceed. |
360
+ | Session state corrupted | Read artifacts directly from filesystem. Reconstruct minimal context from Phases and PRD artifacts. Log warning. |
361
+
362
+ ---
363
+
364
+ ## Domain Rules
365
+
366
+ 1. **Every task is atomic**: Tasks must do one thing — "Implement feature X and add tests" is two tasks, not one
367
+ 2. **Given-When-Then is mandatory**: Free-form acceptance criteria are never acceptable — every criterion must follow the structured format
368
+ 3. **No XL tasks in final output**: Any task exceeding 8 hours must be split — XL is a decomposition signal, not a valid final size
369
+ 4. **Execution order is explicit**: Tasks must have clear dependency chains and parallelization markers — unordered lists are insufficient
370
+ 5. **Traceability is bidirectional**: Every task maps to a requirement, and every requirement maps to at least one task — gaps in either direction are validation failures
371
+ 6. **Dependencies are precise**: Task dependencies reference specific task IDs, not vague descriptions — "depends on auth" is insufficient; "depends on T1.2" is required
372
+
373
+ ---
374
+
375
+ ## Autonomous Behavior
376
+
377
+ - **Allowed without user confirmation**: Internal refinement loops during self-validation (max 3), extracting requirements from Phases artifact, generating task IDs and size estimates, creating execution order from dependency analysis, writing Given-When-Then criteria from PRD requirements
378
+ - **Requires user confirmation**: Task prioritization changes that differ from Phase-level priorities, splitting a requirement into more than 5 tasks (complexity signal), deferring a requirement to a later phase than originally assigned
379
+ - **Never autonomous**: Removing a requirement from the task breakdown, overriding acceptance criteria defined in the PRD, modifying upstream artifacts, changing phase assignments established by the Phases agent
380
+
381
+ ---
382
+
383
+ ## Parallelization
384
+
385
+ - **Can run in parallel with**: No other agent (sequential dependency — requires Phases as input)
386
+ - **Cannot run in parallel with**: Phases agent (upstream dependency), QA-Planning agent (downstream dependency — requires tasks as input)
387
+ - **Internal parallelization**: Task breakdown for different phases can proceed concurrently once all phase definitions are read. Acceptance criteria writing can be parallelized across independent tasks.
388
+ - **Merge point**: Tasks agent must complete before the QA-Planning agent activates
389
+
390
+ ---
391
+
392
+ ## Error Handling
393
+
394
+ ```
395
+ On error during execution:
396
+ Level 1: Retry the failing operation with additional context
397
+ Level 2: Mark incomplete tasks with [INCOMPLETE] tag and document reason
398
+ Level 3: Present partial output to user with clear list of tasks missing criteria
399
+ Level 4: Escalate to orchestrator with partial tasks document and list of unresolvable issues
400
+ ```
401
+
402
+ ---
403
+
279
404
  ## Input
280
405
 
281
406
  $ARGUMENTS