You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: plugin/skills/construct/SKILL.md
+12-1Lines changed: 12 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -435,6 +435,9 @@ fi
435
435
436
436
```bash
437
437
update_unit_status "$UNIT_FILE""in_progress"
438
+
# Commit the status change so it persists across sessions
439
+
git add "$UNIT_FILE"
440
+
git commit -m "status: mark $(basename "$UNIT_FILE" .md) as in_progress"
438
441
```
439
442
440
443
3.**Resolve per-unit workflow** — read the unit's `workflow:` frontmatter field. If present, resolve it to a hat sequence. If absent, check for discipline-based defaults before falling back to the intent-level workflow:
@@ -644,7 +647,12 @@ Task({
644
647
645
648
**If no next hat** (last hat in workflow -- unit complete):
646
649
647
-
a. Mark unit as completed: `update_unit_status "$UNIT_FILE" "completed"`
650
+
a. Mark unit as completed and commit:
651
+
```bash
652
+
update_unit_status "$UNIT_FILE""completed"
653
+
git add "$UNIT_FILE"
654
+
git commit -m "status: mark $(basename "$UNIT_FILE" .md) as completed"
655
+
```
648
656
b. Remove unit from `unitStates`
649
657
c. Merge or PR based on effective change strategy:
0 commit comments