Skip to content

Commit 60d92f4

Browse files
Address Will's feedback
1 parent 3fe0de4 commit 60d92f4

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,12 +145,14 @@ claude-code-chat-browser/
145145

146146
See **[`CONTRIBUTING.md`](CONTRIBUTING.md)** for full setup, conventions, and where to change each layer. New contributors should follow **[`docs/onboarding.md`](docs/onboarding.md)** for a first-PR walkthrough and reading order.
147147

148+
Maintainer coverage is concentrated; see [`docs/onboarding.md`](docs/onboarding.md#maintainer-coverage-bus-factor) and [`.github/CODEOWNERS`](.github/CODEOWNERS) for risk and mitigations.
149+
148150
Quick start:
149151

150152
```bash
151153
pip install -r requirements-dev.txt
152154
pytest
153-
npm ci && npm test # only if you changed static/js/
155+
npm ci && npm run test:coverage # only if you changed static/js/
154156
```
155157

156158
`requirements.txt` carries only the runtime dep (Flask); `requirements-dev.txt` pulls it in via `-r` and adds pytest (+ coverage). Frontend tests use vitest (`package.json`).

docs/onboarding.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ ruff check .
6868
ruff format --check .
6969

7070
# Type check (CI: Ubuntu only)
71-
mypy -p api -p utils -p models -p scripts
71+
mypy -p api -p utils -p models
7272

7373
# Security audit (production deps)
7474
pip-audit -r requirements.txt
@@ -81,7 +81,7 @@ pytest tests/test_api_integration.py -v
8181

8282
# Frontend — only if you changed static/js/
8383
npm ci
84-
npm test
84+
npm run test:coverage
8585
```
8686

8787
Fix formatting with `ruff format .` when `ruff format --check` fails.

0 commit comments

Comments
 (0)