Skip to content

Commit 90bcf30

Browse files
committed
fix(pm-skills): use plain tag name for ref, not refs/tags/...
`apm install pm-skills@awesome-copilot` invokes `git clone --depth=1 --branch=<ref>` against the source repo. `git clone --branch` rejects `refs/tags/v2.1.0` ("Remote branch not found in upstream origin") and only accepts the plain tag name. The fix is a one-character change in the `source.ref` field of the pm-skills entry. This matches the convention used by the other entries in this file — `chrome-devtools-plugin` uses `chrome-devtools-mcp-v1.0.1`, `ai-ready` uses a SHA. `pm-skills` was the only entry using the `refs/tags/` prefix, inherited from the placeholder example in the external-plugin issue form. Tested locally: with the fix applied, `apm install pm-skills@awesome-copilot --target claude` resolves cleanly (12 skills + MCP server + 2 hooks integrated). Original submission: #1767 / #1770
1 parent 18fc8fd commit 90bcf30

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

plugins/external.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[
22
{
33
"name": "ai-ready",
4-
"description": "Analyze any repository and generate AI-ready configuration AGENTS.md, copilot-instructions.md, CI workflows, issue templates, and more. Mines your PR review patterns and creates files customized to your stack.",
4+
"description": "Analyze any repository and generate AI-ready configuration \u00e2\u20ac\u201d AGENTS.md, copilot-instructions.md, CI workflows, issue templates, and more. Mines your PR review patterns and creates files customized to your stack.",
55
"version": "1.0.0",
66
"author": {
77
"name": "John Papa",
@@ -265,7 +265,7 @@
265265
},
266266
{
267267
"name": "microsoft-events",
268-
"description": "Connect your project to Microsoft Build and Ignite sessions discover relevant talks, explore what's new for your stack, and plan next steps from your development environment.",
268+
"description": "Connect your project to Microsoft Build and Ignite sessions \u00e2\u20ac\u201d discover relevant talks, explore what's new for your stack, and plan next steps from your development environment.",
269269
"version": "1.0.0",
270270
"author": {
271271
"name": "Microsoft",
@@ -335,7 +335,7 @@
335335
"source": {
336336
"source": "github",
337337
"repo": "Avyayalaya/pm-skills-arsenal",
338-
"ref": "refs/tags/v2.1.0"
338+
"ref": "v2.1.0"
339339
}
340340
},
341341
{
@@ -388,7 +388,7 @@
388388
},
389389
{
390390
"name": "whatidid",
391-
"description": "Turn your Copilot sessions into proof of impact research-grounded HTML reports with effort estimation, skills analysis, and ROI metrics from local session logs.",
391+
"description": "Turn your Copilot sessions into proof of impact \u00e2\u20ac\u201d research-grounded HTML reports with effort estimation, skills analysis, and ROI metrics from local session logs.",
392392
"version": "1.0.0",
393393
"author": {
394394
"name": "Microsoft",

0 commit comments

Comments
 (0)