devscribe-reason 1.0.6 ā 1.0.8
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/scripts/setup.js +7 -2
- package/src/CLAUDE.md +4 -2
package/package.json
CHANGED
package/scripts/setup.js
CHANGED
|
@@ -180,6 +180,11 @@ if (cursorAvailable) {
|
|
|
180
180
|
}
|
|
181
181
|
|
|
182
182
|
if (claudeAvailable || cursorAvailable) {
|
|
183
|
-
console.log("\n
|
|
184
|
-
console.log("
|
|
183
|
+
console.log("\nā
Setup complete!\n");
|
|
184
|
+
console.log("š The MCP server is now configured for:");
|
|
185
|
+
if (claudeAvailable) console.log(" ⢠Claude Code");
|
|
186
|
+
if (cursorAvailable) console.log(" ⢠Cursor");
|
|
187
|
+
console.log(
|
|
188
|
+
"\nš” The server will start automatically when you open Claude Code or Cursor.\n"
|
|
189
|
+
);
|
|
185
190
|
}
|
package/src/CLAUDE.md
CHANGED
|
@@ -27,16 +27,18 @@ Works with both Claude Code and Cursor:
|
|
|
27
27
|
GITHUB_TOKEN=ghp_your_token npx devscribe-reason-setup
|
|
28
28
|
```
|
|
29
29
|
|
|
30
|
-
|
|
30
|
+
This command will:
|
|
31
31
|
- Auto-detect your GitHub repo from git remote
|
|
32
32
|
- Auto-detect Claude Code or Cursor
|
|
33
|
-
- Configure the MCP server automatically
|
|
33
|
+
- Configure the MCP server automatically in both editors
|
|
34
34
|
|
|
35
35
|
**If you need to specify the repo explicitly:**
|
|
36
36
|
```bash
|
|
37
37
|
GITHUB_TOKEN=ghp_your_token GITHUB_REPO=owner/repo npx devscribe-reason-setup
|
|
38
38
|
```
|
|
39
39
|
|
|
40
|
+
**After setup:** The MCP server will start automatically when you open Claude Code or Cursor. You don't need to manually start anything.
|
|
41
|
+
|
|
40
42
|
**GitHub Token:** Create a [Personal Access Token](https://github.com/settings/tokens) with `repo` scope (or `contents: write` for fine-grained tokens).
|
|
41
43
|
|
|
42
44
|
### 2. Add system prompt instructions
|