mirror of
https://github.com/microsoft/BCQuality.git
synced 2026-08-06 09:26:52 +01:00
The GitHub Copilot CLI plugin reference requires plugin.json at the root of the plugin directory. BCQuality shipped it only under .claude-plugin/, which is tolerated by --plugin-dir but is non-canonical and can be rejected on the marketplace / 'plugin install owner/repo' path. Mirror the proven microsoft/BC-ALAgents al-review plugin layout: move plugin.json to the repo (plugin) root and add an explicit skills array plus repository/license/keywords metadata to both plugin.json and marketplace.json. The skills array pins the one real skill (skills/bcquality-al-review/), avoiding ambiguity with the loose meta .md files in skills/. Verified: 'copilot --plugin-dir <clone>' still loads the bcquality plugin and the bcquality-al-review skill registers at runtime, identical to before.
21 lines
574 B
JSON
21 lines
574 B
JSON
{
|
|
"name": "bcquality",
|
|
"description": "Quality skills and knowledge for Business Central development. Exposes a review bridge skill that drives the BCQuality Entry protocol over the installed knowledge base.",
|
|
"version": "0.1.0",
|
|
"author": {
|
|
"name": "microsoft/BCQuality",
|
|
"url": "https://github.com/microsoft/BCQuality"
|
|
},
|
|
"repository": "https://github.com/microsoft/BCQuality",
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"bc",
|
|
"al",
|
|
"business-central",
|
|
"code-review",
|
|
"quality"
|
|
],
|
|
"skills": [
|
|
"./skills/bcquality-al-review/"
|
|
]
|
|
}
|