ralph-mcp 1.0.2 → 1.0.3
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/dist/index.js +2 -2
- package/package.json +7 -8
package/dist/index.js
CHANGED
|
@@ -47,8 +47,8 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
|
|
|
47
47
|
},
|
|
48
48
|
autoMerge: {
|
|
49
49
|
type: "boolean",
|
|
50
|
-
description: "Auto add to merge queue when all stories pass (default:
|
|
51
|
-
default:
|
|
50
|
+
description: "Auto add to merge queue when all stories pass (default: true)",
|
|
51
|
+
default: true,
|
|
52
52
|
},
|
|
53
53
|
notifyOnComplete: {
|
|
54
54
|
type: "boolean",
|
package/package.json
CHANGED
|
@@ -1,18 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ralph-mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "MCP server for autonomous PRD execution with Claude Code. Git worktree isolation, progress tracking, auto-merge.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"bin": {
|
|
8
8
|
"ralph-mcp": "dist/index.js"
|
|
9
9
|
},
|
|
10
|
-
"scripts": {
|
|
11
|
-
"build": "tsc",
|
|
12
|
-
"dev": "tsx watch src/index.ts",
|
|
13
|
-
"start": "node dist/index.js",
|
|
14
|
-
"prepublishOnly": "npm run build"
|
|
15
|
-
},
|
|
16
10
|
"keywords": [
|
|
17
11
|
"mcp",
|
|
18
12
|
"claude",
|
|
@@ -54,5 +48,10 @@
|
|
|
54
48
|
"@types/node-notifier": "^8.0.5",
|
|
55
49
|
"tsx": "^4.21.0",
|
|
56
50
|
"typescript": "^5.9.3"
|
|
51
|
+
},
|
|
52
|
+
"scripts": {
|
|
53
|
+
"build": "tsc",
|
|
54
|
+
"dev": "tsx watch src/index.ts",
|
|
55
|
+
"start": "node dist/index.js"
|
|
57
56
|
}
|
|
58
|
-
}
|
|
57
|
+
}
|