Files
rmyndharis 3eff4af253 chore(release): 1.3.0
Adds the antigravity-skills-manager skill, the dependency-free skills_cli.py
entrypoint, and the plugin.json manifest; replaces retired and never-valid
model ids across three skills; fixes false catalog drift on Windows.

The version is bumped in all four places it is written by hand — package.json,
plugin.json, and package-lock.json at both the root and the self-referential
package entry. test_plugin_json_schema now asserts plugin.json matches
package.json, so a future release cannot bump one and forget the other.

prepublishOnly runs the Node suite, the Python suite, and the catalog drift
check before a tarball can leave the machine. Publishing previously ran no
gate at all, which is how a broken node_modules symlink reached a tagged
commit without anything objecting.
2026-08-03 01:50:36 +07:00

66 lines
2.0 KiB
JSON

{
"name": "antigravity-skills-manager",
"version": "1.3.0",
"description": "Antigravity Skill Manager - Global agy plugin to browse, search, install, and manage 300+ agent skills from the rmyndharis/antigravity-skills catalog. Experimental: not yet verified end-to-end against a released agy CLI.",
"author": "rmyndharis",
"repository": "https://github.com/rmyndharis/antigravity-skills",
"homepage": "https://github.com/rmyndharis/antigravity-skills#readme",
"license": "MIT",
"entry": "skills_cli.py",
"skills": [
"skills/antigravity-skills-manager/SKILL.md"
],
"commands": [
{
"name": "skills-manager",
"description": "Browse, search, install, and manage Antigravity agent skills",
"entry": "skills_cli.py",
"subcommands": [
{
"name": "list",
"description": "List all available skills in the catalog"
},
{
"name": "search",
"description": "Search skills by keyword in name, category, or tags",
"args": "<term>"
},
{
"name": "install",
"description": "Install a skill to ~/.gemini/antigravity/skills/<skill_id>/",
"args": "<skill_id>"
},
{
"name": "installed",
"description": "List all locally installed skills"
}
]
},
{
"name": "skills",
"description": "Browse, search, install, and manage Antigravity agent skills",
"entry": "skills_cli.py",
"subcommands": [
{
"name": "list",
"description": "List all available skills in the catalog"
},
{
"name": "search",
"description": "Search skills by keyword in name, category, or tags",
"args": "<term>"
},
{
"name": "install",
"description": "Install a skill to ~/.gemini/antigravity/skills/<skill_id>/",
"args": "<skill_id>"
},
{
"name": "installed",
"description": "List all locally installed skills"
}
]
}
]
}