@mstar-harness/opencode 0.6.4 → 0.6.5
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/harness-skills/mstar-coding-behavior/SKILL.md +14 -4
- package/harness-skills/mstar-harness-core/SKILL.md +3 -0
- package/harness-skills/mstar-host/references/cursor-plan-mode-bridge.md +11 -0
- package/harness-skills/mstar-phase-gates/SKILL.md +13 -9
- package/harness-skills/mstar-roles/references/architect.md +6 -0
- package/harness-skills/mstar-roles/references/product-manager.md +6 -0
- package/harness-skills/mstar-roles/references/project-manager/dispatch-and-assignment.md +1 -0
- package/harness-skills/mstar-roles/references/project-manager.md +9 -1
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: mstar-coding-behavior
|
|
3
|
-
description: Morning Star (启明星) 跨角色通用编码行为准则 —— Think Before Coding(显式假设、不静默猜测)、Simplicity First
|
|
3
|
+
description: Morning Star (启明星) 跨角色通用编码行为准则 —— Think Before Coding(显式假设、不静默猜测)、Simplicity First(最小耐久切片,拒绝未登记临时方案)、Surgical Changes(只改与任务直接相关的行、不顺手重构、不 piggyback)、Goal-Driven Execution(把模糊请求转为可验证结果、Step → verify 微模板;分批必须留 roadmap)。任何实现、调试、重构、审查任务都应优先 Read 本 skill;`@fullstack-dev` / `@frontend-dev` / `@fullstack-dev-2` / `@architect` / `@qa-engineer` / `@ops-engineer` / `@prompt-engineer` 动手前必读;QC 审查员核对变更是否只做了该做的手术时必读。本 skill 不覆盖分支门禁、QC/QA 路由、Assignment 权限、Done 所有权等不变量(那些以 `mstar-harness-core` 为准)。
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
## Load order(必读顺序)
|
|
@@ -43,16 +43,24 @@ Quick check:
|
|
|
43
43
|
|
|
44
44
|
## 2) Simplicity First
|
|
45
45
|
|
|
46
|
-
Core idea: implement the
|
|
46
|
+
Core idea: implement the smallest durable slice that satisfies the request and acceptance criteria.
|
|
47
47
|
|
|
48
48
|
- Do not add features, flags, or configurability that were not requested.
|
|
49
49
|
- Avoid introducing new abstractions for single-use logic.
|
|
50
|
-
- Prefer straightforward local fixes over framework-level reshaping
|
|
50
|
+
- Prefer straightforward local fixes over framework-level reshaping **only when they fit the target design**.
|
|
51
51
|
- Reject speculative error handling for impossible paths unless required by project policy.
|
|
52
|
+
- Do not confuse "minimum" with "temporary." A small implementation must still align with the long-term target state, stable interfaces, and known follow-up plan.
|
|
53
|
+
- If a workaround is necessary, label it as `temporary`, explain why it is unavoidable, and record the removal path in the plan/status artifact before claiming the task is complete.
|
|
52
54
|
|
|
53
55
|
Default rule:
|
|
54
56
|
|
|
55
|
-
- If 200 lines can be 50 with the same behavior and
|
|
57
|
+
- If 200 lines can be 50 with the same behavior, clarity, and durable architecture, prefer the smaller solution.
|
|
58
|
+
|
|
59
|
+
Durability check:
|
|
60
|
+
|
|
61
|
+
- Can this slice be extended by the next batch without undoing its core shape?
|
|
62
|
+
- Are deferred items captured in an existing roadmap / task board / residual tracker, not just mentioned in chat?
|
|
63
|
+
- Would a reviewer understand whether this is the final approach, a staged slice, or a temporary workaround?
|
|
56
64
|
|
|
57
65
|
## 3) Surgical Changes
|
|
58
66
|
|
|
@@ -74,8 +82,10 @@ Core idea: convert vague requests into verifiable outcomes and iterate until ver
|
|
|
74
82
|
|
|
75
83
|
- Define concrete success criteria before major edits.
|
|
76
84
|
- For multi-step tasks, use brief `Step -> verify` checkpoints.
|
|
85
|
+
- For split delivery, maintain a durable roadmap: current slice, later slices, dependencies, owner/trigger, and completion condition.
|
|
77
86
|
- Prefer evidence-backed completion claims (tests, command output, reproducible checks).
|
|
78
87
|
- If verification fails, loop on diagnosis and fix before declaring completion.
|
|
88
|
+
- Do not finish with "next plan / later / follow-up" only in prose. If the work is not fully complete, the remaining work must be written to the plan/status artifact or the task must report `Partial` / `Blocked`.
|
|
79
89
|
|
|
80
90
|
Micro template:
|
|
81
91
|
|
|
@@ -71,6 +71,8 @@ PM 在 Assignment 写 **`Task category`**(主类 + 可选 `secondary`):
|
|
|
71
71
|
|
|
72
72
|
可追踪清单(plan `tasks` 或 Todo);偏离时 PM 拉回;完成前须可核对证据(**`mstar-superpowers-align`** · `verification-before-completion`)。
|
|
73
73
|
|
|
74
|
+
**Durable Roadmap Gate**:凡声明“分批 / 后续 / next plan / later / temporary workaround”的非热修任务,必须在 `{PLAN_DIR}` 主 plan、CreatePlan mirror、`status.json`/residual、或 PM Task Board 中写清后续路线(批次、依赖、owner/触发条件、完成定义)。只在对话或 Completion Report 里说“以后做”不算可追踪,不能进入 implement GO 或 Done。
|
|
75
|
+
|
|
74
76
|
## 专题 skill 索引
|
|
75
77
|
|
|
76
78
|
| Skill | 职责 |
|
|
@@ -128,6 +130,7 @@ Read **`mstar-host`** after this skill; detect host per its table, then Read the
|
|
|
128
130
|
| 角色文件塞流程长文 | 用专题 skill |
|
|
129
131
|
| 无证据宣称完成 | `mstar-coding-behavior` / verification |
|
|
130
132
|
| CreatePlan 不落盘 / 无 `.agents` mirror | `mstar-host` · `cursor-plan-mode-bridge` |
|
|
133
|
+
| 临时方案 / 后续计划只写在对话里 | `mstar-phase-gates` · Durable Roadmap Gate |
|
|
131
134
|
|
|
132
135
|
## 可选:OpenViking Memory
|
|
133
136
|
|
|
@@ -72,6 +72,7 @@ Set `updated_at` on `status.json` to today (`YYYY-MM-DD`). Commit harness files
|
|
|
72
72
|
|
|
73
73
|
- YAML or markdown frontmatter with `plan_id`, title, status (`Todo` / `InProgress` — not `Done` unless PM/QA authority).
|
|
74
74
|
- **Task list** as markdown checkboxes (`- [ ]` / `- [x]`) matching CreatePlan implement todos.
|
|
75
|
+
- **Roadmap / deferred scope** section when delivery is staged, partial, or uses a temporary workaround.
|
|
75
76
|
- Link: “SSOT status: `{HARNESS_DIR}/status.json` → `plans[]` / `residual_findings`.”
|
|
76
77
|
|
|
77
78
|
After **CreatePlan**, keep CreatePlan body and mirror file **in sync** when scope changes (update both in the same coordination round).
|
|
@@ -94,6 +95,14 @@ Use this structure in CreatePlan `plan` markdown; mirror the same sections into
|
|
|
94
95
|
- clarify: [done|n/a]
|
|
95
96
|
- plan: [done|in progress]
|
|
96
97
|
|
|
98
|
+
## Roadmap / deferred scope
|
|
99
|
+
|
|
100
|
+
- Target state: <complete outcome>
|
|
101
|
+
- Current slice: <what this plan/batch delivers>
|
|
102
|
+
- Later slices: <batch/order/owner or trigger>
|
|
103
|
+
- Deferred scope / temporary workaround removal: <tracking location or N/A>
|
|
104
|
+
- Final Done definition: <condition for full completion>
|
|
105
|
+
|
|
97
106
|
## Tasks (mirror as checkboxes in SSOT plan file)
|
|
98
107
|
|
|
99
108
|
### Bootstrap (fixed prefix — complete before implement)
|
|
@@ -144,6 +153,7 @@ Before switching from Plan to Agent for implementation (or declaring Plan phase
|
|
|
144
153
|
- [ ] `status.json` contains `plans[]` entry with matching `id` and `file`
|
|
145
154
|
- [ ] Bootstrap todos `harness-init`, `spec-register`, `mirror-plan` are **done**
|
|
146
155
|
- [ ] CreatePlan implement todos reference **task ids** traceable to SSOT plan checkboxes
|
|
156
|
+
- [ ] If staged/partial/temporary, CreatePlan and SSOT plan both contain `Roadmap / deferred scope`
|
|
147
157
|
- [ ] **Plan Path** for any Assignment uses the SSOT path, not the Cursor plan URI
|
|
148
158
|
|
|
149
159
|
If any item fails → **Blocked**; finish harness sync before implement.
|
|
@@ -183,6 +193,7 @@ When `/pm` runs under Plan mode:
|
|
|
183
193
|
| Cursor plan URI as Plan Path | Use `{PLAN_DIR}/...` path |
|
|
184
194
|
| Skip `spec-register` | Add `plans[]` row before implement |
|
|
185
195
|
| Build starts coding in the parent session | Resume PM context; dispatch implement work or block on missing Assignment |
|
|
196
|
+
| Follow-up only in chat / no roadmap section | Add `Roadmap / deferred scope` to CreatePlan and SSOT plan before implement |
|
|
186
197
|
|
|
187
198
|
## Related skills
|
|
188
199
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: mstar-phase-gates
|
|
3
|
-
description: Morning Star (启明星) Spec-Driven 双阶段门禁 —— Prepare(`specify → clarify → plan`)、Execute(`plan(locked) → tasks → implement
|
|
3
|
+
description: Morning Star (启明星) Spec-Driven 双阶段门禁 —— Prepare(`specify → clarify → plan`)、Execute(`plan(locked) → tasks → implement`)、意图门禁、长期目标优先、分批 roadmap 强制落盘、clarify 核心纪律(共享理解 / 先探索 / 每问推荐答案)、hotfix 压缩路径、可验证编辑、Phase Gate 最小证据。**必须**在 PM 判定 gate、首次 implement 派单前、产品/架构参与 Prepare、或解释为何不能跳过 plan/clarify 时 Read;`@project-manager` 每轮编排非 hotfix 任务必读;`@product-manager` / `@architect` 写规格与锁 plan 时必读 Prepare 节;实现角色 Read Execute 与 hotfix 例外即可。Task category 与 `quick` 禁豁免规则仍在 `mstar-harness-core`。并行 Superpowers 短语见 `mstar-superpowers-align`。
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
## Load order(必读顺序)
|
|
@@ -19,13 +19,15 @@ description: Morning Star (启明星) Spec-Driven 双阶段门禁 —— Prepare
|
|
|
19
19
|
1. **能查库则查库**:若问题可通过探索代码库(实现、配置、`{SPECS_DIR}`、`{KNOWLEDGE_DIR}`、`{ITERATION_DIR}` 等)得到答案,**先探索、不向用户提问**。
|
|
20
20
|
2. **每问带推荐**:每个仍需用户确认的问题,须给出**推荐答案**(及简短理由),便于快速对齐。
|
|
21
21
|
3. **收口摘要**:`clarify` 结束前列出:已决事项、仍 open 的假设、对 `plan` 的约束。
|
|
22
|
-
- **`plan`** —
|
|
22
|
+
- **`plan`** — 技术方案、长期目标状态、模块边界/接口契约、风险与回滚点、验证计划。
|
|
23
23
|
- **意图门禁**:锁 plan 前须能书面写清**真实目标 / 成功判据 / 非目标**三项;否则 Prepare 未通过。
|
|
24
|
+
- **长期方案优先**:默认先设计目标状态,再裁剪本轮可交付切片;不得以“临时方案 / 混合方案 / 以后再说”替代目标设计。
|
|
25
|
+
- **Durable Roadmap Gate**:若本轮只做部分范围,plan 必须写明 roadmap(批次、依赖、暂缓项、owner/触发条件、最终完成定义)。只有一句“后续再做 / next plan”视为未通过 plan gate。
|
|
24
26
|
|
|
25
27
|
### B. Execute:`plan(locked) → tasks → implement`
|
|
26
28
|
|
|
27
29
|
- **`plan(locked)`** — 冻结基线;实现中出现新约束时**先回写 plan 再继续**。
|
|
28
|
-
- **`tasks`** — 含依赖顺序、并行标记、完成判据;每任务可追踪到 plan
|
|
30
|
+
- **`tasks`** — 含依赖顺序、并行标记、完成判据;每任务可追踪到 plan、roadmap 批次与验收标准。
|
|
29
31
|
- **并行标签**:若 PM 将 ≥2 条实现轨 **同时** 分派,须在 `Superpowers` 中写入 `dispatching-parallel-agents`;同仓 ≥2 可写并发时叠 `using-git-worktrees`(见 **`mstar-superpowers-align`** 与 **`mstar-branch-worktree`**)。
|
|
30
32
|
- **`implement`** — 按 tasks 顺序执行并提交自检证据;完成进入 `InReview`;遵循 **`mstar-coding-behavior`**。
|
|
31
33
|
|
|
@@ -65,8 +67,9 @@ description: Morning Star (启明星) Spec-Driven 双阶段门禁 —— Prepare
|
|
|
65
67
|
- **`clarify` 核心纪律**(见 **`mstar-phase-gates` SKILL.md** Prepare · `clarify`):逐方面核对至共享理解;沿设计决策树逐枝、一次一决;能探索代码库则先探索;每问附推荐答案;阶段末汇总已决与仍 open 假设。
|
|
66
68
|
- `plan`
|
|
67
69
|
- 目标:给出可执行技术方案与风险控制。
|
|
68
|
-
-
|
|
70
|
+
- 最小产物:目标状态、方案、模块边界/接口契约、风险与回滚、验证计划。
|
|
69
71
|
- **准入**:能书面写出真实目标、成功判据、非目标后再锁 plan(同 `SKILL.md`)。
|
|
72
|
+
- **分批准入**:若计划不是一次性交付完整范围,须写 `Roadmap / Batch Plan`:本批做什么、后续批次做什么、依赖顺序、暂缓项、owner/触发条件、最终 Done 定义;缺失则 `blocked`。
|
|
70
73
|
|
|
71
74
|
### B. Execute
|
|
72
75
|
|
|
@@ -77,7 +80,7 @@ description: Morning Star (启明星) Spec-Driven 双阶段门禁 —— Prepare
|
|
|
77
80
|
- 最小动作:在 plan 或 notes 记录当前锁定版本(日期或 hash)。
|
|
78
81
|
- `tasks`
|
|
79
82
|
- 目标:把 plan 拆成可执行任务与依赖顺序。
|
|
80
|
-
-
|
|
83
|
+
- 最小产物:任务列表、并行标记、完成判据、映射到验收标准与 roadmap 批次。
|
|
81
84
|
- **PM**:若并行标记对应「多轨同时 implement」,在对外 **Status Update** 与实现 Assignment 的 **`Superpowers`** 中写入 **`dispatching-parallel-agents`**(或同义短语);同仓多可写并发时叠 **`using-git-worktrees`**(见 `mstar-superpowers-align`)。
|
|
82
85
|
- `implement`
|
|
83
86
|
- 目标:按任务执行并提交证据,进入审查。
|
|
@@ -108,10 +111,11 @@ description: Morning Star (启明星) Spec-Driven 双阶段门禁 —— Prepare
|
|
|
108
111
|
2. `clarify` 是否完成(高影响歧义是否收敛)?
|
|
109
112
|
3. 意图门禁是否满足(真实目标 / 成功判据 / 非目标已写明)?
|
|
110
113
|
4. `plan` 是否完成并可引用?
|
|
111
|
-
5.
|
|
112
|
-
6.
|
|
113
|
-
7.
|
|
114
|
-
8.
|
|
114
|
+
5. 若分批/暂缓/临时绕行,roadmap 是否落在 plan/status 中,而不是只在对话里?
|
|
115
|
+
6. `tasks` 是否完成?
|
|
116
|
+
7. Assignment 是否含 **`Task category`**(实现类任务)并与 Owner 一致?
|
|
117
|
+
8. 若中途出现 plan drift,是否先回写再继续?
|
|
118
|
+
9. 实现说明中是否体现"最小耐久切片 + 手术式改动 + 可验证检查"?
|
|
115
119
|
|
|
116
120
|
任一项为「否」时,`Gate decision` 必须是 `blocked`。
|
|
117
121
|
|
|
@@ -30,6 +30,7 @@ If any item below matches, **stop** and return `Blocked` to `project-manager` in
|
|
|
30
30
|
- **NEVER** infer you may call `Task` / subagents because the host **lists** `subagent_type` names (`architect`, `fullstack-dev`, …). **Tool availability ≠ delegation authorization**; only **`Delegation: allowed (...)`** grants callees.
|
|
31
31
|
- **NEVER** load and execute Superpowers `dispatching-parallel-agents` yourself to fan out child agents; that skill is **PM-orchestration-only** (see `mstar-superpowers-align`). If parallel runners are needed, report to PM for re-dispatch.
|
|
32
32
|
- **NEVER** treat `Gate Decision: blocked` (material, high-impact ambiguities still open) as permission to hand off “ready for implement” architecture—finish clarify, update the package, or return `Blocked` to PM.
|
|
33
|
+
- **NEVER** use a temporary, mixed, or partial design as the selected approach unless the target architecture and staged roadmap are written in the assigned plan/spec. “Later” without a tracking location is `Blocked`, not a handoff.
|
|
33
34
|
- **NEVER** edit application implementation source, automated tests, CI workflows, Dockerfiles, or secrets-bearing runtime configuration unless the assignment explicitly limits you to doc-only placeholders **and** PM recorded the risk acceptance.
|
|
34
35
|
- **NEVER** persist planning artifacts from `writing-plans` (or equivalent) under upstream `docs/superpowers/plans/`; only `{PLAN_DIR}` per `mstar-plan-conventions`.
|
|
35
36
|
|
|
@@ -79,6 +80,9 @@ Do not create your own branch strategy.
|
|
|
79
80
|
- Option A: summary + trade-offs
|
|
80
81
|
- Option B: summary + trade-offs
|
|
81
82
|
- Selected Approach: why
|
|
83
|
+
- Long-term Target State
|
|
84
|
+
- Durable Slice for This Batch
|
|
85
|
+
- Roadmap if Split: batches + dependencies + deferred scope + final Done definition
|
|
82
86
|
- Module Boundaries
|
|
83
87
|
- API/Data Contracts
|
|
84
88
|
- Risks and Rollback
|
|
@@ -92,6 +96,8 @@ Do not create your own branch strategy.
|
|
|
92
96
|
# Architecture: <System/Module>
|
|
93
97
|
|
|
94
98
|
## Overview
|
|
99
|
+
## Long-term Target State
|
|
100
|
+
## Staged Roadmap
|
|
95
101
|
## Architecture Diagram
|
|
96
102
|
## Tech Stack
|
|
97
103
|
## Module Breakdown
|
|
@@ -33,6 +33,7 @@ If any item below matches, **stop** and return `Blocked` to `project-manager` in
|
|
|
33
33
|
- **NEVER** point `writing-plans` output to upstream `docs/superpowers/plans/`; use `{PLAN_DIR}` per `mstar-plan-conventions`.
|
|
34
34
|
- **NEVER** offload PRD/product-doc drafting to `@explore`; short read-only orientation only per `mstar-harness-core`.
|
|
35
35
|
- **NEVER** label a Prepare package as “ready for implement” while `Gate Decision: blocked` for material ambiguities—resolve, document waivers with PM, or return `Blocked`.
|
|
36
|
+
- **NEVER** split delivery by saying “later / follow-up / next phase” without writing the product roadmap, deferred scope, and final completion definition in the assigned plan/spec.
|
|
36
37
|
|
|
37
38
|
## Superpowers (When Enabled)
|
|
38
39
|
|
|
@@ -69,6 +70,8 @@ If writing files to business repo, use only PM-assigned `Working branch` / `Bran
|
|
|
69
70
|
- User Value
|
|
70
71
|
- Scope
|
|
71
72
|
- Non-goals
|
|
73
|
+
- Target State
|
|
74
|
+
- Roadmap if Split
|
|
72
75
|
- Draft DoD
|
|
73
76
|
|
|
74
77
|
### Clarify
|
|
@@ -86,6 +89,9 @@ If writing files to business repo, use only PM-assigned `Working branch` / `Bran
|
|
|
86
89
|
## Target Users
|
|
87
90
|
## User Stories
|
|
88
91
|
## Acceptance Criteria
|
|
92
|
+
## Target State
|
|
93
|
+
## Roadmap / Release Slices
|
|
94
|
+
## Deferred Scope and Tracking
|
|
89
95
|
## Priority
|
|
90
96
|
## Effort (agent-oriented)
|
|
91
97
|
```
|
|
@@ -53,6 +53,7 @@ For assignees (non-PM):
|
|
|
53
53
|
**Delegation**: forbidden | allowed (...)
|
|
54
54
|
**Why this agent**: <role-fit>
|
|
55
55
|
**PM Task Board coverage**: <task ids>
|
|
56
|
+
**Roadmap / deferred scope**: <required when staged, partial, or temporary; otherwise N/A>
|
|
56
57
|
**Task**: <concrete work aligned with coverage>
|
|
57
58
|
**Checkpoint Comment Rule**: commit -> Completion Report v2 -> PM Status Update -> next batch
|
|
58
59
|
**Why batching is safe**: <required when batching >=3 IDs>
|
|
@@ -116,6 +116,7 @@ If any item below matches, fix the dispatch/plan state or mark `Blocked`—do **
|
|
|
116
116
|
- **NEVER** point QC at a single dev worktree/`Review cwd` that cannot contain **all** claimed changes from parallel tracks until Git integration lands on one `Working branch` `HEAD` (`mstar-branch-worktree` QC/QA alignment).
|
|
117
117
|
- **NEVER** label `QA: skipped` for report-only QA—still dispatch `@qa-engineer` with report-only mode; QC skip rules are separate and explicit.
|
|
118
118
|
- **NEVER** let non-PM/non-QA roles mark plan `Done`.
|
|
119
|
+
- **NEVER** accept “temporary workaround”, “follow-up later”, “next plan”, or “split into batches” as narrative-only scope management. If work is deferred or staged, write the roadmap/tracking location before implement GO or Done.
|
|
119
120
|
|
|
120
121
|
---
|
|
121
122
|
|
|
@@ -127,7 +128,8 @@ Before first implement dispatch (non-hotfix):
|
|
|
127
128
|
2. `clarify` done (no unresolved high-impact ambiguity)
|
|
128
129
|
3. `plan` done and referenceable
|
|
129
130
|
4. `tasks` + PM Task Board ready for non-trivial plan
|
|
130
|
-
5.
|
|
131
|
+
5. Roadmap written when delivery is split, deferred, or temporary
|
|
132
|
+
6. New constraints discovered are written back to plan first
|
|
131
133
|
|
|
132
134
|
If any fail -> do not dispatch implement.
|
|
133
135
|
|
|
@@ -177,6 +179,7 @@ Anti-patterns:
|
|
|
177
179
|
- Q11: For non-trivial plan, is PM Task Board published with coverage?
|
|
178
180
|
- Q12: In invoke-based hosts, were matching invokes actually issued?
|
|
179
181
|
- Q13: With **>=2 independent** backend/fullstack units, are owners spread across `fullstack-dev` and `fullstack-dev-2` (parallel or rotated), or is `single_stream_justified: yes` recorded with a real reason?
|
|
182
|
+
- Q14: If this is partial/staged/temporary, is the roadmap/tracking location written in the plan/status artifacts rather than only in prose?
|
|
180
183
|
|
|
181
184
|
---
|
|
182
185
|
|
|
@@ -195,6 +198,8 @@ Pre-implement Gate Check:
|
|
|
195
198
|
- non_trivial_plan: yes|no
|
|
196
199
|
- PM_Task_Board_published: yes|no
|
|
197
200
|
- batch_strategy_defined: yes|no
|
|
201
|
+
- roadmap_written: yes|no|n/a
|
|
202
|
+
- roadmap_location: <Plan section / PM Task Board / status.json / residual id / n/a>
|
|
198
203
|
- assignment_batch_index: <e.g. 1/3>
|
|
199
204
|
- coverage_ids: <e.g. T1,T2>
|
|
200
205
|
- reason_if_single_assignment: <required when only one batch>
|
|
@@ -208,6 +213,8 @@ Hard block when:
|
|
|
208
213
|
|
|
209
214
|
- Non-trivial plan has required field = `no`
|
|
210
215
|
- Harness-active non-hotfix flow lacks on-disk main plan or status registration
|
|
216
|
+
- `assignment_batch_index` is not `1/1` but `roadmap_written` is not `yes`
|
|
217
|
+
- Any temporary workaround or deferred scope lacks a durable tracking location
|
|
211
218
|
- `Task category: quick` is used on non-trivial work
|
|
212
219
|
- **>=2 independent** backend/fullstack units on the task board but `single_stream_justified: no` with no spread across `fullstack-dev` / `fullstack-dev-2` and no documented single-id override
|
|
213
220
|
|
|
@@ -218,6 +225,7 @@ Hard block when:
|
|
|
218
225
|
Before first implement dispatch:
|
|
219
226
|
|
|
220
227
|
- Publish PM Task Board with ID/owner/deps/parallel/coverage mapping
|
|
228
|
+
- If delivery spans batches, include the full roadmap: batch order, deferred scope, dependencies, owner/trigger, and final Done definition
|
|
221
229
|
- Every implement Assignment declares `PM Task Board coverage`
|
|
222
230
|
- Default batch size 1-2 IDs; `>=3` requires `Why batching is safe`
|
|
223
231
|
- Completion rhythm: commit -> Completion Report v2 -> PM Status Update -> next dispatch
|