Skip to content

Commit 542ac13

Browse files
committed
chore: pin MCP manifest git URLs to v0.5.2
Also fix @ escaping in release skill perl command to prevent array interpolation mangling future version strings.
1 parent 20d788d commit 542ac13

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

.claude/skills/release/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ To:
116116

117117
The safest way to do this in bulk is a single perl pass per file, e.g.:
118118
```bash
119-
perl -i -pe 's|git\+https://github\.com/luarss/openroad-mcp"|git+https://github.com/luarss/openroad-mcp@vX.Y.Z"|g' README.md
119+
perl -i -pe 's|git\+https://github\.com/luarss/openroad-mcp"|git+https://github.com/luarss/openroad-mcp\@vX.Y.Z"|g' README.md
120120
```
121121

122122
Apply this to all files containing the bare URL:

.cursor/mcp.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"command": "uvx",
55
"args": [
66
"--from",
7-
"git+https://github.com/luarss/openroad-mcp",
7+
"git+https://github.com/luarss/openroad-mcp@v0.5.2",
88
"openroad-mcp"
99
]
1010
}

.kilocode/mcp.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"command": "uvx",
55
"args": [
66
"--from",
7-
"git+https://github.com/luarss/openroad-mcp",
7+
"git+https://github.com/luarss/openroad-mcp@v0.5.2",
88
"openroad-mcp"
99
],
1010
"alwaysAllow": [],

.roo/mcp.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"command": "uvx",
55
"args": [
66
"--from",
7-
"git+https://github.com/luarss/openroad-mcp",
7+
"git+https://github.com/luarss/openroad-mcp@v0.5.2",
88
"openroad-mcp"
99
],
1010
"disabled": false,

.vscode/mcp.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"command": "uvx",
66
"args": [
77
"--from",
8-
"git+https://github.com/luarss/openroad-mcp",
8+
"git+https://github.com/luarss/openroad-mcp@v0.5.2",
99
"openroad-mcp"
1010
]
1111
}

opencode.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"command": [
66
"uvx",
77
"--from",
8-
"git+https://github.com/luarss/openroad-mcp",
8+
"git+https://github.com/luarss/openroad-mcp@v0.5.2",
99
"openroad-mcp"
1010
],
1111
"enabled": true

0 commit comments

Comments
 (0)