Files
MetalOS/agents/RoadmapAgent/README.md
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

651 B

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 from docs/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"