cc-dev-template 0.1.34 → 0.1.36
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 +1 -1
- package/src/commands/done.md +27 -6
package/package.json
CHANGED
package/src/commands/done.md
CHANGED
|
@@ -29,10 +29,31 @@ Execute this directly - do NOT delegate to a sub-agent. Accurate documentation r
|
|
|
29
29
|
- Adjust "Up Next" based on what was learned
|
|
30
30
|
- Note any new blockers or waiting items
|
|
31
31
|
|
|
32
|
-
3. **
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
32
|
+
3. **Reflect on workflow learnings:**
|
|
33
|
+
|
|
34
|
+
Consider: Did I learn anything this session that would save time in future sessions?
|
|
35
|
+
|
|
36
|
+
**Add to CLAUDE.md only if** you discovered high-value operational knowledge that:
|
|
37
|
+
- Can't be found by reading code (commands, ports, credentials, key paths)
|
|
38
|
+
- Applies generally to working in this project (not one-off fixes)
|
|
39
|
+
- Isn't already documented
|
|
40
|
+
|
|
41
|
+
**Examples of what qualifies:**
|
|
42
|
+
- Dev commands: `make dev`, `npm run watch`, etc.
|
|
43
|
+
- Key paths: log locations, config files, seed data
|
|
44
|
+
- Ports and local URLs
|
|
45
|
+
- Local dev credentials
|
|
46
|
+
- Non-obvious project conventions
|
|
47
|
+
|
|
48
|
+
**What doesn't qualify:**
|
|
49
|
+
- Code structure (discoverable by reading)
|
|
50
|
+
- One-time debugging steps
|
|
51
|
+
- Feature-specific details
|
|
52
|
+
- Anything already in CLAUDE.md
|
|
53
|
+
|
|
54
|
+
**Most sessions: add nothing.** Only add genuinely reusable workflow knowledge.
|
|
55
|
+
|
|
56
|
+
If adding, use a `## Workflows` section with minimal, scannable format (bullets, not paragraphs).
|
|
36
57
|
|
|
37
58
|
4. **Commit and push:**
|
|
38
59
|
```bash
|
|
@@ -45,8 +66,8 @@ Execute this directly - do NOT delegate to a sub-agent. Accurate documentation r
|
|
|
45
66
|
|
|
46
67
|
## Philosophy
|
|
47
68
|
|
|
48
|
-
- **CLAUDE.md** = context loader, minimal, rarely updated
|
|
69
|
+
- **CLAUDE.md** = context loader, minimal, rarely updated (structure + workflow tips)
|
|
49
70
|
- **CURRENT_WORK.md** = dynamic status, updated every session
|
|
50
71
|
- **Git commits** = sufficient for code change history
|
|
51
72
|
|
|
52
|
-
Only update what's necessary.
|
|
73
|
+
Only update what's necessary. Most sessions just update CURRENT_WORK.md.
|