mirror of
https://github.com/johndoe6345789/MetalOS.git
synced 2026-04-24 13:45:02 +00:00
- Created ExampleAgent, BuildAgent, TestAgent, LintAgent, DocGenAgent, DeployAgent, DepUpdateAgent, RoadmapAgent under agents/ - Added CLI stubs and READMEs for each agent - Updated AGENTS.md with all agent entries Co-authored-by: openhands <openhands@all-hands.dev>
DeployAgent
DeployAgent packages and deploys project builds.
Requirements
- Python 3.6+
- tar on PATH
- Deployment script or API setup (optional)
Usage
./agents/DeployAgent/main.py [--build-dir DIR] [--target TARGET] [--version VERSION]
Options
-d, --build-dir DIR: Build directory (default:build).-t, --target TARGET: Deployment target (stagingorproduction, default:staging).-v, --version VERSION: Version tag for deployment.
Examples
Package and deploy to staging:
./agents/DeployAgent/main.py
Specify build directory and production target:
./agents/DeployAgent/main.py -d out -t production -v v1.0.0