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>
34 lines
555 B
Markdown
34 lines
555 B
Markdown
# ExampleAgent
|
|
|
|
ExampleAgent is a sample micro agent demonstrating best practices for development and integration within MetalOS.
|
|
|
|
## Requirements
|
|
|
|
- Python 3.6+
|
|
|
|
## Installation
|
|
|
|
No installation required. Ensure the script is executable:
|
|
|
|
```bash
|
|
chmod +x agents/ExampleAgent/main.py
|
|
```
|
|
|
|
## Usage
|
|
|
|
```bash
|
|
./agents/ExampleAgent/main.py [--message MESSAGE]
|
|
```
|
|
|
|
### Options
|
|
|
|
- `-m, --message MESSAGE`: Custom message to print. Default: "Hello from ExampleAgent!"
|
|
|
|
## Tests
|
|
|
|
Run pytest from the project root:
|
|
|
|
```bash
|
|
pytest agents/ExampleAgent/tests
|
|
```
|