CLI Reference
Synopsis
gdagent [--json] [--help] [--version] [subcommand]
Without a subcommand, gdagent launches the GUI manager.
Commands
install- Install GDAgent addon to a Godot projectuninstall- Uninstall GDAgent addon from a Godot projectlist-projects- List detected Godot projectsstatus- Show GDAgent installation status for a projectactivate- Activate a license keydeactivate- Deactivate the current license from this machinedoctor- Run diagnostic checks and generate support reportmanpage- Generate a man page forgdagentrepair- Repair an existing GDAgent installation
For command-specific flags and arguments:
gdagent <command> --help
JSON Output
--json is supported for machine-readable output on CLI workflow commands.
Automation Example
- name: Activate and install GDAgent
env:
GDAGENT_LICENSE_KEY: ${{ secrets.GDAGENT_LICENSE_KEY }}
run: |
printf '%s' "$GDAGENT_LICENSE_KEY" | gdagent activate
gdagent install -p ${{ github.workspace }}