devscribe-reason 1.0.4 → 1.0.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 +1 -1
- package/src/CLAUDE.md +9 -3
package/package.json
CHANGED
package/src/CLAUDE.md
CHANGED
|
@@ -48,7 +48,7 @@ When the devscribe-reason MCP server is connected:
|
|
|
48
48
|
- Call log_intent at the start of every session before doing any work
|
|
49
49
|
- Call log_decision whenever making a significant technical or architectural choice
|
|
50
50
|
- Call log_alternative whenever an approach is considered and rejected
|
|
51
|
-
- Call finalize_reasoning_doc
|
|
51
|
+
- **When user asks to push/commit:** Call finalize_reasoning_doc first, then proceed with push
|
|
52
52
|
- Never ask permission to log — just do it silently in the background
|
|
53
53
|
```
|
|
54
54
|
|
|
@@ -56,8 +56,14 @@ When the devscribe-reason MCP server is connected:
|
|
|
56
56
|
|
|
57
57
|
1. Work in Claude Code or Cursor
|
|
58
58
|
2. Claude logs decisions and alternatives as you code
|
|
59
|
-
3.
|
|
60
|
-
|
|
59
|
+
3. When done, ask Claude to push:
|
|
60
|
+
```
|
|
61
|
+
Push the changes
|
|
62
|
+
```
|
|
63
|
+
4. Claude will:
|
|
64
|
+
- Call `finalize_reasoning_doc` to create the reasoning document
|
|
65
|
+
- Commit the decision doc to `/docs/decisions/`
|
|
66
|
+
- Push everything to GitHub
|
|
61
67
|
|
|
62
68
|
## Output
|
|
63
69
|
|