antigravity-bridge
v0.0.18
Published
Allows external agents to trigger VS Code tasks via HTTP.
Downloads
7
Readme
Antigravity Bridge 🌉
Antigravity Bridge is a powerful integration tool that bridges the gap between external AI agents (like Claude Code) and your VS Code environment. It allows agents to autonomously trigger tasks, run builds, and manage your workflow without manual intervention.
🚀 Features
- Remote Task Execution: Trigger any VS Code task defined in
tasks.jsonvia a unified HTTP API. - Secure Access: protect your bridge with an optional
Authorizationtoken. - Visual Status: A sleek Status Bar indicator (
$(radio-tower)) shows you exactly when the bridge is active and listening. - Live Logging: Detailed request logs in the "Antigravity Bridge" Output Channel for full transparency.
- Configurable Port: Choose any port you like (default: 9999).
🛠️ Installation
- Current version: v0.0.3
- Install via VSIX:
antigravity-bridge-0.0.3.vsix - Reload Window.
⚙️ Configuration
Add these to your settings.json:
{
"antigravity.bridge.port": 9999, // Port to listen on
"antigravity.bridge.authToken": "secret" // Optional security token
}📡 Usage
The bridge listens for POST requests on /run-task.
Example Payload:
{
"task": "Launch AI Team"
}Curl Example:
curl -X POST http://localhost:9999/run-task \
-H "Content-Type: application/json" \
-d '{"task": "Build Project"}'👨💻 Publisher
nguyenetic
