adaptive-pricing/.claude/rules/stack-and-commands.md

29 lines
827 B
Markdown
Raw Normal View History

2026-06-22 23:05:05 +02:00
## Stack
2026-07-02 10:21:02 +02:00
- **Language:** Markdown-heavy repo with a Python 3 implementation subtree
- **Key deps:** Python stdlib for the observatory runtime, `pytest` for tests,
optional `make` for wrappers, whynot-design vendored UI assets in
`projects/coulomb-pricing/ui/vendor/`
2026-06-22 23:05:05 +02:00
## Dev Commands
```bash
2026-07-02 10:21:02 +02:00
# Root repo: metadata/workplan sync
statehub fix-consistency
/home/worsch/state-hub/.venv/bin/python /home/worsch/state-hub/custodian_cli.py \
fix-consistency --repo adaptive-pricing --repo-path /home/worsch/adaptive-pricing
2026-06-22 23:05:05 +02:00
2026-07-02 10:21:02 +02:00
# Project runtime
cd /home/worsch/adaptive-pricing/projects/coulomb-pricing
python3 -m observatory --period 2026-06
python3 -m observatory --period 2026-06 --output reports/economics-2026-06.md
python3 -m observatory.server
2026-06-22 23:05:05 +02:00
2026-07-02 10:21:02 +02:00
# Tests
python3 -m pytest -q
make test
2026-06-22 23:05:05 +02:00
2026-07-02 10:21:02 +02:00
# UI vendor refresh
make design
2026-06-22 23:05:05 +02:00
```