| name | nx-baseline-verify |
| description | Run baseline installs, tests, and CLI/UI smoke checks, then update PRODUCTS/03_BASELINE.md with results. Use before product work or after significant changes. |
Nx Baseline Verify
Overview
Establish a reproducible baseline by installing dependencies, running key tests, and verifying CLI/UI startup.
Workflow
- Install Python deps.
- Install UI deps (Cerebro) and capture npm audit summary.
- Run pytest suite (full or segmented if timeouts occur).
- Run CLI bootstrap verification.
- Update
PRODUCTS/03_BASELINE.md and append to PRODUCTS/PROGRESS_LOG.md.
- If baseline fails, apply minimal hotfixes and record an ADR.
Commands
python -m pip install -r requirements.txt
cd interface/ui/cerebro
npm install
python -m pytest tests/ -v
python nexus7.py --verify
Output Checklist
PRODUCTS/03_BASELINE.md updated with command outputs and failures.
PRODUCTS/PROGRESS_LOG.md appended with baseline summary.
PRODUCTS/DECISIONS/ADR-*.md added if hotfixes were required.