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>
451 B
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 withblack.
Examples
Run linters only:
./agents/LintAgent/main.py
Run linters and auto-format:
./agents/LintAgent/main.py --fix