@mstar-harness/dsh 3.9.4 → 3.10.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 (45) hide show
  1. package/dist/gates/dispatch.d.ts +9 -3
  2. package/dist/index.js +175 -89
  3. package/harness-commands/iteration-start.md +15 -11
  4. package/harness-skills/mstar-artifacts/SKILL.md +4 -2
  5. package/harness-skills/mstar-artifacts/references/plan-files-and-reports.md +1 -1
  6. package/harness-skills/mstar-artifacts/references/plan-quality-bar.md +10 -0
  7. package/harness-skills/mstar-artifacts/references/plan-workflow-lifecycle-contract.md +115 -0
  8. package/harness-skills/mstar-artifacts/references/status-and-residuals.md +24 -3
  9. package/harness-skills/mstar-artifacts/templates/plan.main.md +6 -1
  10. package/harness-skills/mstar-compound/SKILL.md +4 -4
  11. package/harness-skills/mstar-conventions/SKILL.md +1 -0
  12. package/harness-skills/mstar-conventions/references/effort-estimation.md +2 -0
  13. package/harness-skills/mstar-dispatch-gates/SKILL.md +9 -9
  14. package/harness-skills/mstar-harness-core/SKILL.md +5 -13
  15. package/harness-skills/mstar-host/SKILL.md +41 -2
  16. package/harness-skills/mstar-host/references/_shared/plan-mode-bridge-core.md +2 -0
  17. package/harness-skills/mstar-host/references/cursor.md +3 -0
  18. package/harness-skills/mstar-host/references/dsh.md +23 -4
  19. package/harness-skills/mstar-host/references/kimi.md +3 -0
  20. package/harness-skills/mstar-host/references/omp.md +140 -1
  21. package/harness-skills/mstar-host/references/opencode.md +3 -0
  22. package/harness-skills/mstar-host/references/zcode.md +3 -0
  23. package/harness-skills/mstar-iteration/SKILL.md +1 -1
  24. package/harness-skills/mstar-iteration/references/command-shared-invariants.md +2 -0
  25. package/harness-skills/mstar-iteration/references/phase-1-prepare.md +11 -2
  26. package/harness-skills/mstar-iteration/references/phase-2-worktree-lease.md +74 -10
  27. package/harness-skills/mstar-iteration/references/phase-3-iteration-close.md +3 -3
  28. package/harness-skills/mstar-iteration/references/phase-4-5-pr-delivery.md +3 -2
  29. package/harness-skills/mstar-iteration/references/phase-6-post-merge-close.md +5 -2
  30. package/harness-skills/mstar-iteration/references/plan-scoped-pm.md +3 -1
  31. package/harness-skills/mstar-phase-gates/SKILL.md +7 -5
  32. package/harness-skills/mstar-project-governance/SKILL.md +3 -3
  33. package/harness-skills/mstar-review-qc/SKILL.md +4 -4
  34. package/harness-skills/mstar-review-qc/references/review-responsibility-boundaries.md +1 -1
  35. package/harness-skills/mstar-roles/references/_shared/leaf-executor-core.md +1 -0
  36. package/harness-skills/mstar-roles/references/project-manager/dispatch-and-assignment.md +5 -2
  37. package/harness-skills/mstar-roles/references/project-manager/plan-management.md +15 -0
  38. package/harness-skills/mstar-roles/references/project-manager/qa-trigger-matrix.md +3 -3
  39. package/harness-skills/mstar-roles/references/project-manager/qc-and-residuals.md +7 -5
  40. package/harness-skills/mstar-roles/references/project-manager.md +12 -11
  41. package/harness-skills/mstar-sdd/SKILL.md +5 -2
  42. package/harness-skills/mstar-sdd/references/implementer-continuation-prompt.md +4 -1
  43. package/harness-skills/mstar-sdd/references/implementer-prompt.md +4 -0
  44. package/harness-skills/pm/SKILL.md +9 -10
  45. package/package.json +1 -1
@@ -220,8 +220,14 @@ export declare function preExecuteListener(ctx: Context, resolver: HarnessResolv
220
220
  /**
221
221
  * Rebuild the canonical Assignment HEADER text from parsed fields (the
222
222
  * engine's OWN header grammar — `parseAssignmentFields` reads exactly these
223
- * labels — so the engine parsers round-trip losslessly). The host hook's
224
- * engine-typed input is `AssignmentFields`; the shared gate core validates
225
- * assignment TEXT, so the fields form is normalized to text before gating.
223
+ * labels — so the engine parsers round-trip losslessly). Every typed
224
+ * `AssignmentFields` slot is emitted under its canonical header label: the
225
+ * implement/ops `Task budget` (capacity contract spec § A1) after
226
+ * `Task category`, and the review-seat `Budget` / `Return shape` round
227
+ * bounds after the branch forms — dropping any of them would false-fire the
228
+ * corresponding `assignment.field.*-missing` gate on a host that passed the
229
+ * typed form. The host hook's engine-typed input is `AssignmentFields`; the
230
+ * shared gate core validates assignment TEXT, so the fields form is
231
+ * normalized to text before gating.
226
232
  */
227
233
  export declare function assignmentTextFromFields(fields: AssignmentFields): string;