Files
MetalOS/agents/ExampleAgent/main.py
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

21 lines
389 B
Python
Executable File

#!/usr/bin/env python3
import argparse
def main():
parser = argparse.ArgumentParser(
description="ExampleAgent: sample micro agent"
)
parser.add_argument(
'--message', '-m',
help='Custom message to print',
default='Hello from ExampleAgent!'
)
args = parser.parse_args()
print(args.message)
if __name__ == '__main__':
main()