qualia-framework-v2 2.1.1 → 2.3.0
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/README.md +21 -6
- package/bin/install.js +25 -0
- package/bin/state.js +496 -0
- package/hooks/pre-push.sh +19 -26
- package/package.json +1 -1
- package/skills/qualia/SKILL.md +51 -28
- package/skills/qualia-build/SKILL.md +5 -2
- package/skills/qualia-debug/SKILL.md +73 -0
- package/skills/qualia-design/SKILL.md +89 -0
- package/skills/qualia-handoff/SKILL.md +4 -2
- package/skills/qualia-idk/SKILL.md +8 -0
- package/skills/qualia-new/SKILL.md +6 -2
- package/skills/qualia-pause/SKILL.md +59 -0
- package/skills/qualia-plan/SKILL.md +5 -2
- package/skills/qualia-polish/SKILL.md +4 -2
- package/skills/qualia-quick/SKILL.md +4 -1
- package/skills/qualia-report/SKILL.md +38 -32
- package/skills/qualia-resume/SKILL.md +44 -0
- package/skills/qualia-review/SKILL.md +72 -0
- package/skills/qualia-ship/SKILL.md +4 -2
- package/skills/qualia-task/SKILL.md +4 -1
- package/skills/qualia-verify/SKILL.md +7 -2
- package/templates/tracking.json +1 -0
|
@@ -89,4 +89,7 @@ After the builder finishes:
|
|
|
89
89
|
Status ✓ Done
|
|
90
90
|
```
|
|
91
91
|
|
|
92
|
-
|
|
92
|
+
```bash
|
|
93
|
+
node ~/.claude/bin/state.js transition --to note --notes "{task description}"
|
|
94
|
+
```
|
|
95
|
+
Do NOT manually edit STATE.md or tracking.json — state.js handles both.
|
|
@@ -75,5 +75,10 @@ Read the verification report. Present:
|
|
|
75
75
|
|
|
76
76
|
### 4. Update State
|
|
77
77
|
|
|
78
|
-
|
|
79
|
-
|
|
78
|
+
```bash
|
|
79
|
+
node ~/.claude/bin/state.js transition --to verified --phase {N} --verification {pass|fail}
|
|
80
|
+
```
|
|
81
|
+
If PASS and more phases: state.js auto-advances to the next phase.
|
|
82
|
+
If FAIL and gap_cycles >= 2: state.js returns GAP_CYCLE_LIMIT — tell the employee to escalate.
|
|
83
|
+
If FAIL and gap_cycles < 2: proceed to `/qualia-plan {N} --gaps`.
|
|
84
|
+
Do NOT manually edit STATE.md or tracking.json — state.js handles both.
|