Antigravity Bridge
by @heintonny
One-directional knowledge bridge from Google Antigravity IDE to OpenClaw. Syncs only .md documentation files from Antigravity projects into OpenClaw workspac...
clawhub install antigravity-bridgeπ About This Skill
name: antigravity-bridge version: 2.0.1 description: "One-directional knowledge bridge from Google Antigravity IDE to OpenClaw. Syncs only .md documentation files from Antigravity projects into OpenClaw workspace for native vector indexing. No secrets, credentials, or binary state are synced β rsync filters enforce .md-only transfer. Supports multiple projects." author: heintonny metadata: {"openclaw":{"emoji":"π","tags":["antigravity","gemini","knowledge-sync","multi-agent","bridge","ide","sync"],"requires":{"bins":["rsync","yq"]},"install":[{"id":"yq","kind":"brew","package":"yq","bins":["yq"],"label":"Install yq YAML parser"},{"id":"rsync","kind":"system","package":"rsync","bins":["rsync"],"label":"rsync (usually pre-installed)"}]}}
Antigravity Bridge
One-directional knowledge bridge from Google Antigravity IDE to OpenClaw.
Syncs .md files from your Antigravity/Gemini projects into the OpenClaw workspace, where they are natively embedded and indexed for memory_search. No MEMORY.md dumping, no custom state tracking β just files on disk, indexed automatically.
When to Use
When NOT to Use
memory_search β the files are already indexed)Architecture
Antigravity IDE OpenClaw Workspace
βββββββββββββββββ βββββββββββββββββββββββββββββ
~/repo/acme-corp/acme-platform/
.agent/memory/ ββrsyncβββΊ antigravity/acme-platform/
.agent/rules/ ββrsyncβββΊ .agent/memory/
.agent/skills/ ββrsyncβββΊ .agent/rules/
.agent/sessions/ ββrsyncβββΊ .agent/skills/
.agent/tasks.md ββrsyncβββΊ .agent/sessions/
.gemini/GEMINI.md ββrsyncβββΊ .agent/tasks.md
docs/ ββrsyncβββΊ .gemini/GEMINI.md
*.md (root) ββrsyncβββΊ docs/
*.md (root)
~/.gemini/antigravity/
knowledge/ ββrsyncβββΊ antigravity/gemini-knowledge/
βββββββββββββββββ βββββββββββββββββββββββββββββ
β
OpenClaw native embedder
(memorySearch.extraPaths)
β
memory_search queries β
Key design decisions:
antigravity// under the OpenClaw workspace destinationmemorySearch.extraPathssync.sh is idempotent β safe to run repeatedly or on cronSetup Guide
Step 1: Prerequisites
# rsync (usually pre-installed on macOS/Linux)
rsync --versionyq β YAML parser (required)
brew install yq # macOS
or: sudo apt install yq # Ubuntu/Debian
or: snap install yq # Ubuntu snap
yq --version
Step 2: Copy the config template
cp ~/.openclaw/workspace/skills/antigravity-bridge/config-template.yaml \
~/.openclaw/workspace/antigravity-bridge.yaml
Step 3: Edit the config
Open ~/.openclaw/workspace/antigravity-bridge.yaml and configure your projects:
projects:
- name: acme-platform
repo: ~/repo/acme-corp/acme-platform
paths:
- .agent/memory
- .agent/rules
- .agent/skills
- .agent/tasks.md
- .gemini/GEMINI.md
- docs
include_root_md: trueknowledge:
- name: gemini-knowledge
path: ~/.gemini/antigravity/knowledge
destination: antigravity
projects β list of Antigravity-managed reposknowledge β standalone knowledge directories (e.g. Gemini's global knowledge store)destination β subfolder within the OpenClaw workspace (default: antigravity)Step 4: Configure OpenClaw extraPaths
Tell OpenClaw to index the synced directory. In your OpenClaw config (~/.openclaw/config.yaml or equivalent), add:
memorySearch:
extraPaths:
- ~/path/to/openclaw/workspace/antigravity
Replace with the actual workspace path. After saving, restart OpenClaw or reload memory indexing.
Step 5: Test with --dry-run
~/.openclaw/workspace/skills/antigravity-bridge/sync.sh --dry-run --verbose
You'll see what *would* be synced without touching anything.
Step 6: Run for real
~/.openclaw/workspace/skills/antigravity-bridge/sync.sh --verbose
Step 7: Verify with memory_search
After syncing, query OpenClaw memory to confirm indexing:
memory_search: "acme-platform agent rules"
memory_search: "GEMINI.md"
If results come back from the synced files, the bridge is working.
Config Reference
# ~/.openclaw/workspace/antigravity-bridge.yamlprojects:
- name: # Identifier β used as subfolder name
repo: # Root of the Antigravity project (~ expanded)
paths: # List of paths relative to repo root
- .agent/memory # Directory β recursively sync *.md
- .agent/tasks.md # Single file β synced directly
- docs # Directory β recursively sync *.md
include_root_md: true # Also sync *.md files at repo root (optional, default: false)
knowledge:
- name: # Identifier β used as subfolder name
path: # Source path to rsync *.md from (~ expanded)
destination: antigravity # Target subfolder in OpenClaw workspace
# Full path: //
Path types:
--include='*.md' --exclude='*' recursively.md)Missing sources: If a configured path doesn't exist, sync.sh logs a warning and skips it. Other paths continue normally. Exit code remains 0.
CLI Reference
sync.sh [options]Options:
--config Config file (default: ~/.openclaw/workspace/antigravity-bridge.yaml)
--project Sync only this project (by name)
--dry-run Show what would be synced, without making changes
--verbose Show rsync output and detailed progress
--help Show this help
Examples:
# Sync everything
sync.shSync one project only
sync.sh --project acme-platformPreview without touching files
sync.sh --dry-run --verboseUse a custom config
sync.sh --config ~/my-bridge.yaml
Cron Integration
Add to crontab (crontab -e) for automatic syncing:
# Antigravity Bridge β hourly during business hours (Mon-Fri, 08:00-18:00)
0 8-18 * * 1-5 ~/.openclaw/workspace/skills/antigravity-bridge/sync.sh >> ~/.openclaw/logs/antigravity-bridge.log 2>&1Nightly full sync (all days, 02:00)
0 2 * * * ~/.openclaw/workspace/skills/antigravity-bridge/sync.sh --verbose >> ~/.openclaw/logs/antigravity-bridge.log 2>&1
Create the log directory first:
mkdir -p ~/.openclaw/logs
Troubleshooting
yq: command not found
Install yq: brew install yq (macOS) or see https://github.com/mikefarah/yq
Config file not found
Copy the template: cp config-template.yaml ~/.openclaw/workspace/antigravity-bridge.yaml
rsync: command not found
Install rsync: brew install rsync (macOS) or sudo apt install rsync
No results from memory_search
memorySearch.extraPaths includes the destination folderls ~/.openclaw/workspace/antigravity/Files not updating
--verbose to see rsync outputls ~/repo/acme-corp/acme-platform/.agent/memory/Wrong files synced
.md files are synced (rsync filter: --include='*.md' --exclude='*')Security & Privacy
.md files are synced. rsync filters (--filter='+ *.md' --filter='- *') enforce markdown-only transfer. No secrets, credentials, API keys, binary state, session tokens, or config files are ever copied..agent/ and .gemini/ directories are Antigravity's documentation folders containing markdown notes about rules, tasks, memory, and project context. They do not contain credentials or sensitive runtime state β those are stored elsewhere by the IDE.--dry-run to inspect behavior before committing.rsync (system), yq (YAML parser) β both declared in manifest metadata.β‘ When to Use
π Tips & Best Practices
yq: command not found
Install yq: brew install yq (macOS) or see https://github.com/mikefarah/yq
Config file not found
Copy the template: cp config-template.yaml ~/.openclaw/workspace/antigravity-bridge.yaml
rsync: command not found
Install rsync: brew install rsync (macOS) or sudo apt install rsync
No results from memory_search
memorySearch.extraPaths includes the destination folderls ~/.openclaw/workspace/antigravity/Files not updating
--verbose to see rsync outputls ~/repo/acme-corp/acme-platform/.agent/memory/Wrong files synced
.md files are synced (rsync filter: --include='*.md' --exclude='*')