cc-pipeline 0.6.4 → 0.6.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/package.json
CHANGED
|
@@ -42,17 +42,17 @@ For 1-2 simple fixes, just do them yourself — no need for a team.
|
|
|
42
42
|
|
|
43
43
|
## Output
|
|
44
44
|
|
|
45
|
-
After all fixes are applied and tests pass, update `docs/phases/phase-{{PHASE}}/MUST-FIX.md` by
|
|
45
|
+
After all fixes are applied and tests pass, update `docs/phases/phase-{{PHASE}}/MUST-FIX.md` by checking off each completed task and appending a status line:
|
|
46
46
|
|
|
47
47
|
```markdown
|
|
48
|
-
### Task 1: [title]
|
|
49
|
-
**Status:** ✅ Fixed
|
|
50
|
-
**What was done:** [Brief description of the actual fix]
|
|
48
|
+
- [x] ### Task 1: [title]
|
|
49
|
+
**Status:** ✅ Fixed
|
|
50
|
+
**What was done:** [Brief description of the actual fix]
|
|
51
51
|
```
|
|
52
52
|
|
|
53
|
-
If you cannot fix something, mark it:
|
|
53
|
+
If you cannot fix something, check it off anyway and mark it failed:
|
|
54
54
|
```markdown
|
|
55
|
-
### Task N: [title]
|
|
56
|
-
**Status:** ❌ Could not fix
|
|
57
|
-
**Reason:** [Why]
|
|
55
|
+
- [x] ### Task N: [title]
|
|
56
|
+
**Status:** ❌ Could not fix
|
|
57
|
+
**Reason:** [Why]
|
|
58
58
|
```
|
|
@@ -90,15 +90,15 @@ This document is handed directly to a build agent. Write it like a PLAN — acti
|
|
|
90
90
|
|
|
91
91
|
## Tasks
|
|
92
92
|
|
|
93
|
-
### Task 1: [Short title]
|
|
94
|
-
**Priority:** Critical / Minor
|
|
95
|
-
**Files:** `path/to/file.ts`
|
|
96
|
-
**Problem:** [What's wrong — be specific, include line numbers]
|
|
97
|
-
**Fix:** [Exactly what to do — step by step]
|
|
98
|
-
**Verify:** [How to confirm the fix works]
|
|
99
|
-
|
|
100
|
-
### Task 2: [Short title]
|
|
101
|
-
...
|
|
93
|
+
- [ ] ### Task 1: [Short title]
|
|
94
|
+
**Priority:** Critical / Minor
|
|
95
|
+
**Files:** `path/to/file.ts`
|
|
96
|
+
**Problem:** [What's wrong — be specific, include line numbers]
|
|
97
|
+
**Fix:** [Exactly what to do — step by step]
|
|
98
|
+
**Verify:** [How to confirm the fix works]
|
|
99
|
+
|
|
100
|
+
- [ ] ### Task 2: [Short title]
|
|
101
|
+
...
|
|
102
102
|
```
|
|
103
103
|
|
|
104
104
|
**Rules for MUST-FIX.md:**
|