Allowlisted files

Only operational docs and config. DB files, credentials, and private config are never shown.

.claude/commands/verify.md

# /verify

Run standard Mission Control verification. Stop at first failure and report.

Run these commands from workspace root in order:

```bash
python3 -m compileall mission_control tests
python3 -m unittest discover -s tests
python3 -m mission_control.cli init
python3 -m mission_control.cli dashboard
```

Steps:

1. `python3 -m compileall mission_control tests` — confirm all Python files parse and byte-compile.
2. `python3 -m unittest discover -s tests` — run the full unittest suite.
3. `python3 -m mission_control.cli init` — initialize/upgrade schema and seed on `data/mission-control.sqlite3`.
4. `python3 -m mission_control.cli dashboard` — print current dashboard JSON.

Report:
- Each step pass/fail with exit code.
- First failing output verbatim.
- Total elapsed time.
- If all green: short "verify ok" line plus dashboard counts (tasks by status, recent event count).

Do not modify code while running verify. If a step fails, surface the error and ask before fixing.