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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devscribe-reason",
3
- "version": "1.0.6",
3
+ "version": "1.0.8",
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
@@ -180,6 +180,11 @@ if (cursorAvailable) {
180
180
  }
181
181
 
182
182
  if (claudeAvailable || cursorAvailable) {
183
- console.log("\nšŸ“ To use devscribe-reason in your sessions:");
184
- console.log(" GITHUB_TOKEN=your_token npx devscribe-reason\n");
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
- The setup script will:
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