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>
RoadmapAgent
RoadmapAgent allows viewing and updating the project roadmap (docs/ROADMAP.md).
Requirements
- Python 3.6+
Installation
No installation required. Ensure the script is executable:
chmod +x agents/RoadmapAgent/main.py
Usage
./agents/RoadmapAgent/main.py (--view | --add ITEM)
Options
-v, --view: Display the current roadmap fromdocs/ROADMAP.md.-a, --add ITEM: Append a new item to the roadmap.
Examples
View the roadmap:
./agents/RoadmapAgent/main.py --view
Add a new roadmap entry:
./agents/RoadmapAgent/main.py --add "Support multi-arch builds"