Sidecars
Section titled “Sidecars”Sidecars are background processes that run alongside Antigravity. Antigravity manages the lifecycle of sidecars, automatically launching them and restarting them if they crash or error.
They are useful for persistent background scripts, scheduled recurring tasks, and reacting to events.
Configuration
Section titled “Configuration”Sidecars are discovered by searching for sidecar.json configuration files. They can be defined in two locations:
- Global sidecars: Under
~/.gemini/config/sidecars/ - Plugin sidecars: Under
~/.gemini/config/plugins/<pluginName>/sidecars/
Each sidecar has its own directory and the directory name is used as the sidecar’s ID. Sidecars loaded from plugins have the ID <pluginName>/<sidecarName>.
The sidecar’s directory must contain a sidecar.json file and may also contain other helper files like scripts to run. The sidecar’s directory also acts as the current working directory for the sidecar’s command.
Example directory structure
~/.gemini/config/sidecars/
├── sidecar1/
│ ├── sidecar.json
│ └── script.py
└── sidecar2/
└── sidecar.json
~/.gemini/config/plugins/
└── my-plugin/
└── sidecars/
└── plugin-sidecar/
└── sidecar.json
Config Schema (sidecar.json)
Section titled “Config Schema (sidecar.json)”command(string): Command/executable (e.g.,python3or/bin/bash). Mutually exclusive withbuiltin.builtin(string): Builtin command to execute. Currently supportsschedule. Mutually exclusive withcommand.args(string[]): Optional. Arguments passed to the command or builtin function.restart_policy(string): Optional. Restart behavior. One ofalways,on-failure, ornever. Defaults toalways.description(string): Optional. Human-readable description of what the sidecar does.env(object): Optional. Map of environment variables to set for the sidecar process.display_name(string): Optional. Display name used in the UI.
One of command or builtin must be set.
Examples:
{
"description": "Background worker",
"command": "python3",
"args": ["worker.py"],
"restart_policy": "on-failure"
}
{
"description": "Hourly agent to triage review requests.",
"builtin": "schedule",
"args": [
"0 * * * *",
"agentapi",
"new-conversation",
"Give me a summary of incoming review requests."
]
}
User Configuration (config.json)
Section titled “User Configuration (config.json)”Sidecars are disabled unless explicitly enabled by the user in the global configuration file, located at ~/.gemini/config/config.json.
enabled(boolean): Whether the sidecar is enabled.projectId(string): Optional. The ID of the projectagentapiwill create conversations in.
Example:
{
"sidecars": {
"sidecar1": {
"enabled": true
},
"my-plugin/plugin-sidecar": {
"enabled": true,
"projectId": "<projectId>"
}
}
}
Runtime Data
Section titled “Runtime Data”Runtime data produced by sidecars are stored in ~/.gemini/antigravity/sidecar_data/<sidecarId>/.
This includes:
data/: Subdirectory for any persistent data. This path is available via theANTIGRAVITY_EXECUTABLE_DATA_DIRenvironment variable.logs/: Auto-generated timestamped logs from stdout and stderr.events/: JSON files recorded foragentapicalls.
schedule builtin
Section titled “schedule builtin”schedule is a simple builtin scheduler for running recurring commands.
{
"builtin": "schedule",
"args": [
"* * * * *",
"<command>",
"<arg1>",
"<arg2>"
]
}
The first argument is a standard 5-field cron expression. The remaining arguments are the command and arguments to run on the specified schedule.
agentapi
Section titled “agentapi”Sidecars can use the agentapi CLI to programmatically interact with Antigravity. The executable is automatically added to the sidecar’s path and available as agentapi.
agentapi new-conversation <prompt>
Sidecars creating conversations must have aprojectIdset.agentapi send-message <conversation_id> <prompt>