Installation
Prerequisites
Section titled “Prerequisites”- Node.js (v18 or higher)
- npm or yarn
To install the AgCel CLI globally, run:
npm install -g agcelThis makes the agc command available globally. If you are developing AgCel locally, you can run npm install -g . from the project root.
Once installed, the CLI can run in a “Global Mode” even without a project-specific setup, using built-in skills and workflows.
While AgCel works globally, you can initialize it in a specific project to customize its behavior:
agc initThis command copies default workflows to your project’s .agent/workflows directory and skills to .agc/skills. When running inside a project initialized this way, AgCel will prioritize these local resources.
Next Steps
Section titled “Next Steps”Once installed, simply open your project in the Antigravity IDE. The IDE will automatically detect and start the AgCel MCP server for you.
You can verify your skills and workflows using the discovery commands:
agc skills listTo remove AgCel from your system and clean up configuration, run:
agc uninstallThis command will:
- Remove AgCel from your
mcp_config.json. - Optionally delete the global data directory at
~/.agcel. - Prompt to run
npm uninstall -g agcelfor you.