This guide outlines how to migrate the current Claude Code + Muxile workflow to Google Antigravity (VS Code-based AI IDE).
Create the configuration directory in your project root:
mkdir -p .antigravity/{config,scripts,prompts}Antigravity uses .antigravity/config.yaml instead of .claude/settings.json. See the attached config.yaml for the migrated configuration.
Move existing Bash scripts from .claude/hooks/ to .antigravity/scripts/.
cp .claude/hooks/go-build-check.sh .antigravity/scripts/
cp .claude/hooks/discord-notify.sh .antigravity/scripts/
cp .claude/hooks/protect-git-clean.sh .antigravity/scripts/- Discord Notification: Ensure the JSON parsing in
discord-notify.shaligns with Antigravity's event payload. - Permissions: Ensure scripts have execute permissions (
chmod +x .antigravity/scripts/*.sh).
Move markdown skill files to .antigravity/prompts/.
- TDD: Save content of
.claude/skills/tdd/SKILL.mdto.antigravity/prompts/tdd.md. - Review: Save content of
.claude/skills/review-session/SKILL.mdto.antigravity/prompts/review.md.
Usage: Invoke via @tdd or @review in the chat interface.
Replace tmux + Muxile with Antigravity Remote Tunnels (VS Code Tunnels) for a full IDE experience on mobile.
- Open Command Palette (
Cmd+Shift+P). - Run "Antigravity: Turn on Remote Tunnel Access...".
- Authenticate with GitHub or Google.
- Access via mobile browser at
vscode.dev/tunnel/<machine_name>.
- Full UI: Code editor, terminal, and agent chat on phone.
- Persistence: Session runs on host machine.
- Security: Authenticated access (no public ports/QR codes).