mirror of
https://github.com/johndoe6345789/MetalOS.git
synced 2026-04-25 06:05: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>
21 lines
389 B
Python
Executable File
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()
|