This repository provides a template and specialized CLI installer designed specifically for the Antigravity IDE ecosystem.
Unlike traditional prompt-based editors that use monolithic "Personas", Antigravity orchestrates work via procedural Workflows and code-based Skills. This tool allows you to easily distribute and install these advanced capabilities directly into your projects.
This ecosystem provides two core types of capabilities:
Workflows are declarative Markdown files containing step-by-step procedural guidelines. They teach Antigravity how to accomplish a specific multi-step task (e.g., standardizing a CI/CD setup, generating a UI component according to your design system).
Skills are full advanced toolsets installed as directories. They contain a SKILL.md instruction file and executable scripts/ that Antigravity can be authorized to run autonomously. This allows the AI to perform complex static analysis, migrations, or deploy routines on its own.
You can launch the interactive beautiful installer using npx:
npx github:dmicheneau/antigravity-template-agent tuiThe TUI will guide you to select the Workflows or Skills you need. It automatically routes the files to the correct .agents/workflows or .agents/skills local directories so that Antigravity immediately recognizes them.
To install specific elements directly via the CLI without the UI:
npx github:dmicheneau/antigravity-template-agent install <id>
# Examples:
npx github:dmicheneau/antigravity-template-agent install deploy/setup-github-pages
npx github:dmicheneau/antigravity-template-agent install quality/typescript-stricter- Fork this repository or copy its structure.
- Edit
manifest.jsonto declare your own tools. - Write your
.mdfiles in theworkflows/directory. - Structure your skill sets (directories containing scripts + SKILL.md) in the
skills/directory. - Provide the
npx github:your-org/your-repo tuicommand to your developers for a 1-click upgrade of their local AI capabilities.