Master the RunAgent command-line interface
Option | Description |
---|---|
--help | Show help message and exit |
--version | Display RunAgent version |
--verbose | Enable verbose output |
--quiet | Suppress non-error output |
setup
- Configure authentication with API keys (Coming Soon)teardown
- Remove all RunAgent configuration (Coming Soon)db-status
- Monitor local database and capacityinit
- Create new agent projects from templatestemplate
- List and manage available templatesserve
- Start local FastAPI server for testing and deploymentdelete
- Remove agents from local databaseupload
- Upload agent code to remote serverstart
- Start uploaded agent on remote serverdeploy
- Full deployment workflow (upload + start)run
- Execute deployed agents with flexible input optionsSetup Authentication (Coming Soon)
Create Project
Install Dependencies
Configure Environment
Test & Deploy Locally
Deploy to Remote (Coming Soon)
~/.runagent/user_data.json
%USERPROFILE%\.runagent\user_data.json
Variable | Description |
---|---|
RUNAGENT_API_KEY | API key for authentication (Coming Soon) |
RUNAGENT_BASE_URL | Custom API endpoint (Coming Soon) |
RUNAGENT_CACHE_DIR | Custom cache directory location |
RUNAGENT_LOG_LEVEL | Logging level (DEBUG, INFO, WARNING, ERROR) |
Code | Meaning |
---|---|
0 | Success |
1 | General error |
2 | Command line usage error |
3 | Configuration error |
4 | Network/API error |
5 | Authentication error |
Use Version Control
runagent.config.json
but never commit .env
files containing API keysTest Before Deploying
runagent serve
and runagent deploy-local
to test locally before deploying remotelyMonitor Capacity
runagent db-status --capacity
to monitor local database usageUse Templates
runagent template --list
Automate with Scripts