fix: make install uses uv tool install without requiring a venv

uv pip install needs a virtual environment. Use uv tool install for the
global CLI path and make sync for editable .venv development installs.
This commit is contained in:
2026-07-03 01:34:57 +02:00
parent fcea33924b
commit d72f64d7a0
2 changed files with 12 additions and 6 deletions

View File

@@ -36,7 +36,8 @@ make test
Install for local development or ops-warden integration:
```bash
make install-editable
make install # global CLI: phase-memory, phase-memory-service
make sync # dev: editable install into .venv
# or from ops-warden: make install-all
```