@xulthekl/team-flow 0.41.0 → 0.43.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.
- package/.claude/always/phase-guard.md +1 -1
- package/.claude-plugin/marketplace.json +1 -1
- package/.claude-plugin/plugin.json +1 -1
- package/.codex-plugin/plugin.json +1 -1
- package/.cursor-plugin/marketplace.json +1 -1
- package/.cursor-plugin/plugin.json +1 -1
- package/.github/plugin/marketplace.json +2 -2
- package/.zcode/skills/workflow-start/SKILL.md +2 -2
- package/AGENTS.md +4 -3
- package/CHANGELOG.md +33 -1
- package/GEMINI.md +1 -1
- package/HANDOFF.md +1 -1
- package/INSTALL.md +1 -1
- package/README.md +3 -3
- package/agents/architecture-design.md +2 -2
- package/agents/architecture-reviewer.md +3 -3
- package/agents/change-split-auditor.md +3 -3
- package/agents/need-explorer.md +1 -1
- package/agents/prd-completeness-reviewer.md +2 -2
- package/agents/prototype-env-scout.md +2 -2
- package/agents/prototype-reviewer.md +2 -2
- package/agents/spec-writer.md +1 -1
- package/docs/README_en.md +1 -1
- package/gemini-extension.json +1 -1
- package/hooks/session-start +3 -3
- package/llms.txt +1 -1
- package/package.json +1 -1
- package/plugin.json +1 -1
- package/scripts/lib/cmd-deisolate.mjs +68 -4
- package/scripts/team-flow.mjs +1 -1
- package/skills/architecture-design/SKILL.md +2 -2
- package/skills/architecture-design/references/s3.5-product-architecture.md +3 -3
- package/skills/architecture-design/templates/change-brief.md +3 -3
- package/skills/build-executor/SKILL.md +24 -4
- package/skills/build-executor/implementer-prompt.md +1 -0
- package/skills/ce-brainstorm/SKILL.md +50 -4
- package/skills/ce-brainstorm/references/brainstorm-sections.md +3 -3
- package/skills/ce-brainstorm/references/business-processes.md +42 -9
- package/skills/ce-brainstorm/references/handoff.md +1 -1
- package/skills/ce-brainstorm/references/phase0-routing.md +11 -10
- package/skills/ce-brainstorm/references/prd-mapping.md +3 -3
- package/skills/ce-brainstorm/references/prototype-loop.md +2 -2
- package/skills/ce-compound/references/three-tier-index.md +1 -1
- package/skills/ce-plan/SKILL.md +2 -2
- package/skills/ce-plan/references/core-principles.md +1 -1
- package/skills/ce-plan/references/intake-routing.md +5 -5
- package/skills/ce-plan/references/plan-structure.md +2 -2
- package/skills/ce-plan/references/planning-modes.md +2 -2
- package/skills/ce-plan/references/review-and-write.md +3 -3
- package/skills/code-reviewer/SKILL.md +9 -0
- package/skills/code-reviewer/code-reviewer-prompt.md +7 -0
- package/skills/need-explorer/SKILL.md +1 -1
- package/skills/prototype/references/orchestration-flow.md +2 -2
- package/skills/release-archivist/SKILL.md +21 -2
- package/skills/release-archivist/references/worktree-merge.md +69 -0
- package/skills/session-handoff/SKILL.md +1 -1
- package/skills/session-handoff/references/handoff-template.md +2 -2
- package/skills/spec-writer/SKILL.md +6 -3
- package/skills/workflow-bootstrap/SKILL.md +22 -10
- package/skills/workflow-bootstrap/references/b1-reconnaissance.md +5 -1
- package/skills/workflow-bootstrap/references/b5-path-decision.md +102 -0
- package/skills/workflow-bootstrap/templates/claude-md-team-flow.md +2 -2
- package/skills/workflow-orchestrator/SKILL.md +3 -3
- package/skills/workflow-orchestrator/references/feedback-loops.md +1 -1
- package/skills/workflow-orchestrator/references/s1-path-router.md +1 -1
- package/skills/workflow-orchestrator/references/s2-prd-prototype-loop.md +6 -6
- package/skills/workflow-orchestrator/references/s3-plan-pipeline.md +3 -3
- package/skills/workflow-orchestrator/references/s4-split-validate.md +5 -5
- package/skills/workflow-orchestrator/references/state-model.md +4 -4
- package/skills/workflow-start/SKILL.md +2 -2
- package/skills/workflow-start/references/routing-rules.md +3 -3
- package/templates/change-brief.md +3 -3
- package/templates/plan.md +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
upstream_source: orchestrator # orchestrator | manual | null
|
|
3
3
|
upstream_req_id: <req-id> # 对应 .team-flow/requirements/<req-id>/
|
|
4
|
-
upstream_plan_ref:
|
|
4
|
+
upstream_plan_ref: requirement/vN/plan.md # hotfix/快速通道为 null
|
|
5
5
|
upstream_change_id: C2 # 对应 change_dag.id
|
|
6
6
|
plan_hash: sha256:<plan.md 内容摘要> # 检测产品层改动后变更层未同步
|
|
7
7
|
---
|
|
@@ -20,5 +20,5 @@ plan_hash: sha256:<plan.md 内容摘要> # 检测产品层改动后变更层
|
|
|
20
20
|
<取自 plan.md 高阶技术设计段的要点指针:模块边界/技术选型/数据流方向,供 spec-writer 作 design.md 约束>
|
|
21
21
|
|
|
22
22
|
## PRD & plan 引用
|
|
23
|
-
- PRD:
|
|
24
|
-
- Plan:
|
|
23
|
+
- PRD: requirement/vN/prd.md §<相关章节>
|
|
24
|
+
- Plan: requirement/vN/plan.md ### <C-ID>
|