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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/CLAUDE.md +9 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devscribe-reason",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "MCP server that captures engineering decision reasoning and commits structured markdown to GitHub",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
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 when work is complete, before pushing
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. **Before pushing:** Ask Claude to call `finalize_reasoning_doc` to create the reasoning document
60
- 4. Push to GitHub (the doc is committed automatically)
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