Overview
yg¶
Remote execution for local AI coding agents
Synopsis¶
yeager runs commands on a remote Linux VM in your AWS account. Your laptop stays free for editing. The cloud does the compute.
Examples¶
yg echo 'hello world' # verify setup — run your first command
yg cargo test # run Rust tests
yg npm run build # build a Node.js project
yg go test ./... # run Go tests
yg pytest # run Python tests
yg make build # run make targets
yg -- ls -al # use -- to pass flags to remote command
Options¶
-h, --help help for yg
-j, --json output in JSON format
-q, --quiet suppress yeager messages, show only command output
-v, --verbose enable debug logging
SEE ALSO¶
- yg configure - Set up AWS credentials for yeager
- yg destroy - Terminate the VM and clean up all resources
- yg init - Create a .yeager.toml with sensible defaults
- yg kill - Cancel the most recent (or specified) command on the VM
- yg logs - Replay and stream output from the last (or specified) run
- yg status - Show VM state, active commands, and recent history
- yg stop - Stop the VM (keeps it for fast restart later)
- yg up - Boot the VM and sync files without running a command