mirror of
https://github.com/johndoe6345789/MetalOS.git
synced 2026-04-24 21:55:14 +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>
26 lines
373 B
Markdown
26 lines
373 B
Markdown
# DepUpdateAgent
|
|
|
|
DepUpdateAgent automates updating of project dependencies.
|
|
|
|
## Requirements
|
|
|
|
- Python 3.6+
|
|
- pip, conan, npm installed and on PATH
|
|
|
|
## Usage
|
|
|
|
```bash
|
|
./agents/DepUpdateAgent/main.py [--all]
|
|
```
|
|
|
|
### Options
|
|
|
|
- `-a, --all`: Run all update routines (pip, conan, npm).
|
|
|
|
## Examples
|
|
|
|
Update Python dependencies:
|
|
```bash
|
|
./agents/DepUpdateAgent/main.py -a
|
|
```
|