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.
- package/.claude/settings.local.json +2 -1
- package/package.json +1 -1
- package/scripts/setup.js +1 -1
package/package.json
CHANGED
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
|
|
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" });
|