Skip to content

Commit b49c4bc

Browse files
docs: create initial AGENTS.md noting uv package management
Co-authored-by: deviantintegral <255023+deviantintegral@users.noreply.github.com>
1 parent 9de07d6 commit b49c4bc

1 file changed

Lines changed: 28 additions & 0 deletions

File tree

AGENTS.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Agents
2+
3+
## Package Management
4+
5+
This project uses [`uv`](https://docs.astral.sh/uv/) for package management. Do **not** use `pip` directly.
6+
7+
Install dependencies with:
8+
9+
```bash
10+
uv sync --dev
11+
```
12+
13+
Add packages with:
14+
15+
```bash
16+
uv add <package>
17+
```
18+
19+
## Development
20+
21+
```bash
22+
# Lint and type-check
23+
uv run ruff check .
24+
uv run mypy src/
25+
26+
# Run tests
27+
uv run pytest
28+
```

0 commit comments

Comments
 (0)