rename to prodev request

This commit is contained in:
Connor Rhodes 2026-05-22 13:59:19 -05:00
parent cf0ef1b441
commit 8c73b8fd8a

View file

@ -38,7 +38,7 @@ When Connor needs to justify a training, tool, book, course, or other profession
```bash
uv run --with pymongo ~/notes/skills/professional-development-business-case/scripts/prodev_tasks.py create "<paragraph>" --price <price> --vendor "<vendor>" --product-type "<product type>"
```
This inserts into `wip.agent_tasks` with `type: "prodev expense"`, `status: "todo"`, and metadata fields `price`, `vendor`, `product_type`. Save the returned document ID.
This inserts into `wip.agent_tasks` with `type: "prodev request"`, `status: "todo"`, and metadata fields `price`, `vendor`, `product_type`. Save the returned document ID.
6. **If Connor asks to update the wording**, update both the saved file AND the database entry:
```bash
@ -49,9 +49,9 @@ When Connor needs to justify a training, tool, book, course, or other profession
## Database Commands
The script supports three commands:
- `create "<note>" [--price PRICE] [--vendor VENDOR] [--product-type TYPE]` — insert a new prodev expense entry
- `create "<note>" [--price PRICE] [--vendor VENDOR] [--product-type TYPE]` — insert a new prodev request entry
- `update <doc_id> "<note>" [--price PRICE] [--vendor VENDOR] [--product-type TYPE]` — update the note and/or metadata for an existing entry
- `list` — list all prodev expense entries with price, vendor, and product type
- `list` — list all prodev request entries with price, vendor, and product type
## Rules