Agent configuration system. Installs skills, workflows, and rules into any AI coding agent that reads markdown files from a context directory.
Tested with: Google Gemini CLI, Claude Code, Cursor.
antigravity/
├── install.sh # Installer — copies config into the active agent directory
├── AGENT.md # Global agent rules (copy of template/agent-instructions.md)
├── rules/ # Core protocol — loaded by agent on every session
├── skills/ # Domain modules — loaded by agent based on task context
└── workflows/ # Slash commands — invoked explicitly by the user
The installer detects which agent is active based on the --target flag and copies the relevant files into the agent's configuration directory. The agent then reads these files at session start or on-demand.
Agents must:
- Read
rules/protocol.mdbefore resolving any task. - Autonomously load relevant skills from
skills/based on the user's prompt. - Adhere to
DESIGN.mdin the project root for any frontend work. If absent, use the fallback defined inrules/protocol.md. - Follow the GitOps Continuous Commit protocol after completing tasks.
git clone https://github.com/LuisSambrano/01-antigravity.git
cd 01-antigravity
chmod +x install.sh
# Gemini CLI → ~/.gemini/
./install.sh --target gemini
# Claude Code → project root CLAUDE.md + .claude/
./install.sh --target claude
# Cursor → .cursor/rules/
./install.sh --target cursorMIT. No PII or proprietary code.