Update requirements and AGENTS instructions

This commit is contained in:
Jordan Wages 2025-07-17 00:17:46 -05:00
commit d216433a07
6 changed files with 153 additions and 4 deletions

View file

@ -19,7 +19,10 @@ This document outlines general practices and expectations for AI agents assistin
```bash
python -m venv .venv
source .venv/bin/activate
````
pip install -r requirements.txt
```
The `init.sh` script can create this environment automatically. Always
activate it before running scripts or tests.
* Dependency management: Use `requirements.txt` or `pip-tools`
* Use standard libraries where feasible (e.g., `sqlite3`, `argparse`, `datetime`)
@ -96,3 +99,4 @@ As the project matures, agents may also:
## Changelog
* **2025-07-17**: Initial version by Jordan + ChatGPT
* **2025-07-17**: Expanded virtual environment usage guidance