feat(codex): Add repo-local plugin marketplace support

Add Codex marketplace metadata and a repo-local plugin scaffold so the repository can be installed as a Codex plugin without duplicating the skills catalog.

Document the new integration path and cover it with a regression test to keep the marketplace entry and plugin manifest in sync.
This commit is contained in:
sickn33
2026-03-27 04:10:20 +01:00
parent 367c4e0915
commit 57e90d0f83
7 changed files with 132 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
{
"name": "antigravity-awesome-skills",
"interface": {
"displayName": "Antigravity Awesome Skills"
},
"plugins": [
{
"name": "antigravity-awesome-skills",
"source": {
"source": "local",
"path": "./plugins/antigravity-awesome-skills"
},
"policy": {
"installation": "AVAILABLE",
"authentication": "ON_INSTALL"
},
"category": "Productivity"
}
]
}