@xulthekl/team-flow 0.37.0 → 0.38.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 (41) hide show
  1. package/.claude/always/phase-guard.md +1 -1
  2. package/.claude-plugin/marketplace.json +1 -1
  3. package/.claude-plugin/plugin.json +1 -1
  4. package/.codex-plugin/plugin.json +1 -1
  5. package/.cursor-plugin/marketplace.json +1 -1
  6. package/.cursor-plugin/plugin.json +1 -1
  7. package/.github/plugin/marketplace.json +2 -2
  8. package/CHANGELOG.md +27 -0
  9. package/GEMINI.md +1 -1
  10. package/INSTALL.md +1 -1
  11. package/README.md +1 -1
  12. package/agents/architecture-reviewer.md +16 -6
  13. package/agents/change-split-auditor.md +11 -6
  14. package/agents/code-reviewer.md +7 -6
  15. package/agents/cross-change-consistency-checker.md +11 -6
  16. package/agents/prd-completeness-reviewer.md +11 -6
  17. package/agents/prototype-reviewer.md +11 -6
  18. package/docs/README_en.md +1 -1
  19. package/docs/solutions/INDEX.md +1 -0
  20. package/docs/solutions/cross-phase/2026-08-06-no-summary.md +17 -0
  21. package/gemini-extension.json +1 -1
  22. package/hooks/session-start +2 -2
  23. package/llms.txt +1 -1
  24. package/package.json +1 -1
  25. package/plugin.json +1 -1
  26. package/scripts/lib/test-matrix-export.mjs +5 -0
  27. package/scripts/lib/test-merge.mjs +130 -93
  28. package/skills/build-executor/implementer-prompt.md +3 -1
  29. package/skills/ce-brainstorm/references/prototype-loop.md +2 -2
  30. package/skills/code-reviewer/SKILL.md +4 -3
  31. package/skills/code-reviewer/code-reviewer-prompt.md +2 -2
  32. package/skills/contract-builder/SKILL.md +6 -4
  33. package/skills/prototype/SKILL.md +3 -3
  34. package/skills/prototype/references/orchestration-flow.md +2 -2
  35. package/skills/release-archivist/SKILL.md +16 -6
  36. package/skills/spec-writer/SKILL.md +1 -1
  37. package/skills/test-strategy/SKILL.md +2 -1
  38. package/skills/test-strategy/references/design-methods-detail.md +1 -0
  39. package/skills/test-strategy/references/test-quality-rules.md +1 -0
  40. package/skills/workflow-orchestrator/references/s2-prd-prototype-loop.md +2 -2
  41. package/skills/workflow-start/SKILL.md +1 -1
@@ -78,7 +78,7 @@ Guard: `arch_design_decision` in `.team-flow.yaml` is `null` → must run before
78
78
  > **⛔ 串行约束(v0.30.0)**:四步严格串行。**修复子代理(architecture-design)完成前 MUST NOT dispatch 审查子代理(architecture-reviewer)**——并行会使审查跑在修复之前、误报"全部未修复"FAIL(来源:workflow-feedback 2026-08-01)。并行白名单:仅多个独立 change 的工作可并行;修复→审查、设计→审查必须串行。
79
79
 
80
80
  1. **Dispatch**: `architecture-design` as sub-agent(**输入含 `docs/architecture/iterations/<vN>/architecture.md` 产品级架构快照**,v0.36.0——变更级只引用产品级聚合注册表,不重定义)→ returns `decision` + `reason` + `artifacts`。**⛔ 记录子代理 ID**(后续循环修正和 DP-A 调整必须通过此 ID 恢复,禁止启动新子代理)
81
- 2. **Auto-review** (decision=required 时触发): 校验产物文件存在且非空 → dispatch `architecture-reviewer` sub-agent(**记录子代理 ID**)→ FAIL 则通过 **SendMessage 恢复原 architecture-design 子代理**修正(≤3 轮 + 收敛检测,不收敛转人工)→ 报告落盘 `changes/<name>/architecture/auto-review.md`
81
+ 2. **Auto-review** (decision=required 时触发): 校验产物文件存在且非空 → dispatch `architecture-reviewer` sub-agent(**记录子代理 ID**,agent 会直接写审查报告到 `changes/<name>/architecture/auto-review.md`)→ FAIL 则通过 **SendMessage 恢复原 architecture-design 子代理**修正(≤3 轮 + 收敛检测,不收敛转人工)
82
82
  3. **Reasonableness check + state write**: PASS/PASS_WITH_WARNINGS → write `arch_design_decision` + `arch_review_*` to yaml; skipped + brief 含架构关键词 → BLOCK; required + artifacts 缺失 → BLOCK; required + auto-review FAIL → BLOCK
83
83
  4. **DP-A 用户确认门(v0.29.0 §37)**: 输出架构决策摘要 → AskUserQuestion 确认 → 需要调整时**必须通过 SendMessage 恢复原子代理**修改(禁止主代理直接修改,禁止启动新子代理)→ 修改后 SendMessage 恢复原 reviewer 重新 auto-review → 回到本步骤重新确认。含项目规范变更提示(advisory)。详见 `references/routing-rules.md`「Step 4: DP-A」
84
84