devscribe-reason 1.0.1 → 1.0.2

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.
@@ -21,7 +21,8 @@
21
21
  "Bash(git -C . status --short)",
22
22
  "mcp__devscribe-reason__log_intent",
23
23
  "Bash(npm publish:*)",
24
- "mcp__devscribe-reason__log_decision"
24
+ "mcp__devscribe-reason__log_decision",
25
+ "mcp__devscribe-reason__finalize_reasoning_doc"
25
26
  ]
26
27
  }
27
28
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devscribe-reason",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
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/scripts/setup.js CHANGED
@@ -98,7 +98,7 @@ if (!claudeAvailable && !cursorAvailable) {
98
98
  // Setup for Claude Code
99
99
  if (claudeAvailable) {
100
100
  const claudeCmd = findClaudeBinary();
101
- const cmd = `${claudeCmd} mcp add --scope user devscribe-reason npx -y devscribe-reason ${envArgs}`;
101
+ const cmd = `${claudeCmd} mcp add --scope user devscribe-reason npx devscribe-reason ${envArgs}`;
102
102
 
103
103
  try {
104
104
  execSync(cmd, { stdio: "inherit" });