@thedecipherist/mdd 1.3.4 → 1.3.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/commands/mdd-build.md +16 -3
- package/package.json +1 -1
package/commands/mdd-build.md
CHANGED
|
@@ -600,6 +600,14 @@ where the agent patches the wrong thing because it accepted an external excuse t
|
|
|
600
600
|
#### Phase 7c — Completion Signal
|
|
601
601
|
|
|
602
602
|
**If integration verified:**
|
|
603
|
+
|
|
604
|
+
1. **Update the feature doc frontmatter** — write these fields now, before displaying the signal:
|
|
605
|
+
- `status: complete`
|
|
606
|
+
- `phase: all`
|
|
607
|
+
- `last_synced: <today>`
|
|
608
|
+
- `mdd_version: <current from mdd.md frontmatter>`
|
|
609
|
+
|
|
610
|
+
2. Display the completion signal:
|
|
603
611
|
```
|
|
604
612
|
✅ MDD Complete: <Feature Name>
|
|
605
613
|
|
|
@@ -611,8 +619,6 @@ Tests: <N>/<N> passing
|
|
|
611
619
|
Integration: verified (<feature type> — real environment)
|
|
612
620
|
Typecheck: clean
|
|
613
621
|
|
|
614
|
-
Update doc: status → complete, phase → all, last_synced → <today>, mdd_version → <current from mdd.md frontmatter>
|
|
615
|
-
|
|
616
622
|
New patterns established: <any new rules worth adding to CLAUDE.md>
|
|
617
623
|
|
|
618
624
|
Branch: feat/<feature-name>
|
|
@@ -620,6 +626,14 @@ Ready for review — run `git diff main...HEAD` to see all changes.
|
|
|
620
626
|
```
|
|
621
627
|
|
|
622
628
|
**If integration NOT verified (external condition blocked it):**
|
|
629
|
+
|
|
630
|
+
1. **Update the feature doc frontmatter** — write these fields now, before displaying the signal:
|
|
631
|
+
- `status: in_progress`
|
|
632
|
+
- `phase: integration-pending`
|
|
633
|
+
- `last_synced: <today>`
|
|
634
|
+
- `mdd_version: <current from mdd.md frontmatter>`
|
|
635
|
+
|
|
636
|
+
2. Display the blocked signal:
|
|
623
637
|
```
|
|
624
638
|
⏸️ MDD Blocked: <Feature Name>
|
|
625
639
|
|
|
@@ -630,7 +644,6 @@ Next step: <concrete action to unblock — e.g. "Add STRIPE_API_KEY to .env, t
|
|
|
630
644
|
|
|
631
645
|
Code is complete. All <N> tests pass. Typecheck clean.
|
|
632
646
|
Feature is NOT marked done until Phase 7b passes.
|
|
633
|
-
Update doc: status → in_progress, phase → integration-pending, mdd_version → <current from mdd.md frontmatter>
|
|
634
647
|
|
|
635
648
|
When unblocked: resume at Phase 7b only. No re-implementation needed.
|
|
636
649
|
```
|