Files
MetalOS/agents/DeployAgent
openhands 29da2e24d4 Add microagents scaffolding for SDLC workflows
- 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>
2026-01-09 02:44:00 +00:00
..

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 (staging or production, 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