@huyhoangnhh98/cc2ag
v1.2.3
Published
Convert Claude Code configurations to Antigravity format
Maintainers
Readme
cc2ag
Convert Claude Code configurations to Antigravity format
Installation
npm install -g cc2agUsage
# Convert global ~/.claude to Antigravity
cc2ag global
# Convert project ./.claude to Antigravity
cc2ag project
# Convert both global and project
cc2ag bothOptions
--dry-run # Preview changes without writing
--force # Overwrite existing files
--verbose # Show detailed outputWhat it converts
| Claude Code | Antigravity | Location |
|-------------|-------------|----------|
| commands/*.md | workflows/*.md | Global: ~/.gemini/antigravity/global_workflows/Project: .agent/workflows/ |
| skills/*/ | skill-*/SKILL.md | Project: .agent/skills/ |
| agents/*.md | agent-*/SKILL.md | Project: .agent/skills/ |
Key Features
- Auto-adds activation blocks - Workflows automatically include
Activate skillstatements - Reference updates - Converts
planner→agent-planner,planning→skill-planning - Skill-only in project - Skills/agents always go to
.agent/skills/(Antigravity requirement)
Examples
Before (Claude Code)
# plan-hard.md
Use multiple `researcher` agents...
pass them to `planner` subagent...After (Antigravity)
# plan-hard.md
---
description: Workflow converted from Claude Code command
---
<!-- Skill Activation Block -->
Activate `agent-researcher` skill.
Activate `agent-planner` skill.
Activate `skill-planning` skill.
Use multiple `agent-researcher` skill...
pass them to `agent-planner` skill...License
MIT
