Skip to content

Commit 6a37114

Browse files
authored
chore: adding metadata file for the VS code plugin (#1236)
This is part of bundling the MCP server and the skills as an "agent plugin" for VS code. The marketplace file is being added into github's repo as an [external plugin](https://github.com/github/awesome-copilot?tab=contributing-ov-file#adding-external-plugins) ([PR](github/awesome-copilot#1161)). [Here](https://code.visualstudio.com/docs/copilot/customization/agent-plugins#_configure-plugin-marketplaces) is the general instructions for the agent plugin. With that we still need the plugin metadata file in our repo. This file should specify the version and we should update each time we release. The version here will silently override the version in the marketplace file ([doc](https://code.claude.com/docs/en/plugin-marketplaces#version-resolution-and-release-channels)). The version in the marketplace file is a dummy.
1 parent 181dade commit 6a37114

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

.github/plugin/plugin.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"name": "chrome-devtools-mcp",
3+
"version": "0.20.3",
4+
"description": "Reliable automation, in-depth debugging, and performance analysis in Chrome using Chrome DevTools and Puppeteer",
5+
"mcpServers": {
6+
"chrome-devtools": {
7+
"command": "npx",
8+
"args": ["chrome-devtools-mcp@latest"]
9+
}
10+
}
11+
}

release-please-config.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,11 @@
3939
"type": "json",
4040
"path": ".claude-plugin/plugin.json",
4141
"jsonpath": "version"
42+
},
43+
{
44+
"type": "json",
45+
"path": ".github/plugin/plugin.json",
46+
"jsonpath": "version"
4247
}
4348
]
4449
}

0 commit comments

Comments
 (0)