🚀 One command to initialize AI agent workflows in any project
A simple CLI tool that copies AI agent workflow files from Antigravity Kit to your project. No more manual copying!
# Install
npm install -g @vanductan-nlt/agent-workflow-init
# Use in any project
cd your-project
agent-workflow-initThat's it! Now you can use slash commands like /debug, /plan, /test in your AI chat.
# Copy all workflows
agent-workflow-init
awi
# Copy specific workflows
agent-workflow-init debug plan test
# Update existing workflows
agent-workflow-init --update
awi -u
# List available workflows
agent-workflow-init --list
awi -l
# Push project workflows to global skills (overwrite)
agent-workflow-init --push
awi -pThese workflows are sourced from Antigravity Kit:
- Reads workflows from
~/.gemini/antigravity/skills/workflows/ - Creates
.agent/workflows/in your project - Copies selected workflow files
- You can now use slash commands in AI chat
- Node.js >= 14.0.0
- Antigravity Kit workflows installed at
~/.gemini/antigravity/skills/workflows/
New project:
cd my-new-project
agent-workflow-init
# ✓ Copied 9 workflowsExisting project (selective):
cd existing-project
agent-workflow-init debug test
# ✓ Copied 2 workflowsUpdate workflows:
agent-workflow-init --update
# ↻ Updated 9 workflowsPush to global:
agent-workflow-init --push
# 📤 Pushing workflows to global...
# ✓ debug.md
# ✓ plan.md
# ...
# ✅ Done!# Clone
git clone https://github.com/vanductan-NLT/agent-workflow-init.git
cd agent-workflow-init
# Install dependencies
npm install
# Test locally
npm link
agent-workflow-init --helpSee PUBLISHING.md for detailed instructions.
MIT License - see LICENSE
- Workflows from Antigravity Kit by @vudovn
- Built for Antigravity AI
Van Duc Tan
- GitHub: @vanductan-NLT
- Email: vanductan.nlt@gmail.com
Made with ❤️ for the Antigravity community