chromedevtools--chrome-devtools-mcp
6a371144d2
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](https://github.com/github/awesome-copilot/pull/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.
52 行
1.4 KiB
JSON
52 行
1.4 KiB
JSON
{
|
|
"changelog-sections": [
|
|
{"type": "feat", "section": "🎉 Features", "hidden": false},
|
|
{"type": "fix", "section": "🛠️ Fixes", "hidden": false},
|
|
{"type": "docs", "section": "📄 Documentation", "hidden": false},
|
|
|
|
{"type": "perf", "section": "⚡ Performance", "hidden": false},
|
|
{"type": "refactor", "section": "🏗️ Refactor", "hidden": false},
|
|
{"type": "chore", "section": "♻️ Chores", "hidden": true},
|
|
{"type": "test", "section": "♻️ Chores", "hidden": true},
|
|
|
|
{"type": "build", "section": "⚙️ Automation", "hidden": true},
|
|
{"type": "ci", "section": "⚙️ Automation", "hidden": true}
|
|
],
|
|
|
|
"packages": {
|
|
".": {
|
|
"extra-files": [
|
|
{
|
|
"type": "generic",
|
|
"path": "src/version.ts"
|
|
},
|
|
{
|
|
"type": "json",
|
|
"path": "server.json",
|
|
"jsonpath": "version"
|
|
},
|
|
{
|
|
"type": "json",
|
|
"path": "server.json",
|
|
"jsonpath": "packages[0].version"
|
|
},
|
|
{
|
|
"type": "json",
|
|
"path": ".claude-plugin/marketplace.json",
|
|
"jsonpath": "version"
|
|
},
|
|
{
|
|
"type": "json",
|
|
"path": ".claude-plugin/plugin.json",
|
|
"jsonpath": "version"
|
|
},
|
|
{
|
|
"type": "json",
|
|
"path": ".github/plugin/plugin.json",
|
|
"jsonpath": "version"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|