Files
MetalOS/agents/LintAgent/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

451 B

LintAgent

LintAgent runs static analysis tools and formatters on the MetalOS codebase.

Requirements

  • Python 3.6+
  • flake8, clang-tidy, black installed and on PATH

Usage

./agents/LintAgent/main.py [--fix]

Options

  • --fix: Automatically fix formatting issues with black.

Examples

Run linters only:

./agents/LintAgent/main.py

Run linters and auto-format:

./agents/LintAgent/main.py --fix