@thedecipherist/mdd 1.7.0 → 1.7.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/commands/mdd-plan.md +3 -1
- package/package.json +1 -1
package/commands/mdd-plan.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
## Phase Logging
|
|
2
2
|
|
|
3
|
-
At the **start** of every phase (before any action) and the **end** of every phase (after all actions), run the command below. Substitute
|
|
3
|
+
At the **start** of every phase (before any action) and the **end** of every phase (after all actions), run the command below. Substitute:
|
|
4
|
+
- `PHASE` with the phase identifier **and the initiative or wave slug** from `$ARGUMENTS` — e.g., `Phase PI1 (my-initiative)`, `Phase PW3 (wave-auth)`, `Phase PE2 (wave-checkout)`
|
|
5
|
+
- `EVENT` with `start` or `end`
|
|
4
6
|
|
|
5
7
|
```bash
|
|
6
8
|
bash -c 'D=$(date +%Y-%m-%d); T=$(date +%H:%M:%S); K=$(compressmcp --status 2>/dev/null | grep -oE "[0-9]+K/[0-9]+K" | head -1 || echo "-"); mkdir -p ~/.claude/mdd; printf "| %s | mdd-plan | PHASE | EVENT | %s | %s |\n" "$D" "$T" "$K" >> ~/.claude/mdd/log.md' 2>/dev/null || true
|