Sync ctx 5171262
Browse filesGitHub commit: 51712623108b1bb81db0a985600ef58069a3d21d
- CHANGELOG.md +2 -0
- CONTRIBUTING.md +2 -1
- README.md +4 -2
- docs/index.md +3 -2
CHANGELOG.md
CHANGED
|
@@ -18,6 +18,8 @@ Format loosely follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|
| 18 |
suite.
|
| 19 |
- Added `ruff format --check` to local preflight and main static CI gates for
|
| 20 |
`src`, `hooks`, and `scripts`.
|
|
|
|
|
|
|
| 21 |
- Made canonical Hugging Face sync fail when `HF_TOKEN` is missing while forks
|
| 22 |
still skip safely without publishing.
|
| 23 |
- Made `ctx-mcp-add` stream JSONL inputs, extended Hugging Face card-only sync
|
|
|
|
| 18 |
suite.
|
| 19 |
- Added `ruff format --check` to local preflight and main static CI gates for
|
| 20 |
`src`, `hooks`, and `scripts`.
|
| 21 |
+
- Made `scripts/no_mistakes_run.sh fast` write local-fast lane timing evidence
|
| 22 |
+
to `.gate/local-fast.json` by default.
|
| 23 |
- Made canonical Hugging Face sync fail when `HF_TOKEN` is missing while forks
|
| 24 |
still skip safely without publishing.
|
| 25 |
- Made `ctx-mcp-add` stream JSONL inputs, extended Hugging Face card-only sync
|
CONTRIBUTING.md
CHANGED
|
@@ -34,7 +34,8 @@ scripts/no_mistakes_run.sh fast
|
|
| 34 |
|
| 35 |
This selects the same PR checks as CI, groups independent work into lanes, and
|
| 36 |
runs those lanes in isolated temporary git worktrees so local CPU, graph, docs,
|
| 37 |
-
package, and test checks can run in parallel. It
|
|
|
|
| 38 |
serial preflight/no-mistakes gate remains the authoritative final check:
|
| 39 |
|
| 40 |
```bash
|
|
|
|
| 34 |
|
| 35 |
This selects the same PR checks as CI, groups independent work into lanes, and
|
| 36 |
runs those lanes in isolated temporary git worktrees so local CPU, graph, docs,
|
| 37 |
+
package, and test checks can run in parallel. It writes lane timing evidence to
|
| 38 |
+
`.gate/local-fast.json` by default. It is the fast front door; the
|
| 39 |
serial preflight/no-mistakes gate remains the authoritative final check:
|
| 40 |
|
| 41 |
```bash
|
README.md
CHANGED
|
@@ -162,11 +162,13 @@ scripts/no_mistakes_run.sh fast
|
|
| 162 |
|
| 163 |
That runner selects the same checks as PR preflight, groups independent checks
|
| 164 |
into isolated temporary worktree lanes, and runs them in parallel. Treat it as
|
| 165 |
-
the fast front door
|
|
|
|
| 166 |
|
| 167 |
```bash
|
| 168 |
-
scripts/no_mistakes_run.sh fast --lane static --lane unit
|
| 169 |
scripts/no_mistakes_run.sh fast --skip-lane graph
|
|
|
|
| 170 |
```
|
| 171 |
|
| 172 |
The serial preflight/no-mistakes path remains the authoritative final local gate:
|
|
|
|
| 162 |
|
| 163 |
That runner selects the same checks as PR preflight, groups independent checks
|
| 164 |
into isolated temporary worktree lanes, and runs them in parallel. Treat it as
|
| 165 |
+
the fast front door. It writes lane timing evidence to `.gate/local-fast.json`
|
| 166 |
+
by default; use lane filters for quick reruns after a failed lane:
|
| 167 |
|
| 168 |
```bash
|
| 169 |
+
scripts/no_mistakes_run.sh fast --lane static --lane unit
|
| 170 |
scripts/no_mistakes_run.sh fast --skip-lane graph
|
| 171 |
+
scripts/no_mistakes_run.sh fast --summary-json /tmp/local-fast.json
|
| 172 |
```
|
| 173 |
|
| 174 |
The serial preflight/no-mistakes path remains the authoritative final local gate:
|
docs/index.md
CHANGED
|
@@ -55,8 +55,9 @@ with persistent memory that gets smarter every session.
|
|
| 55 |
`scripts/no_mistakes_run.sh fast` is the fast front door: it selects the
|
| 56 |
same PR checks, splits independent work into isolated temporary worktree
|
| 57 |
lanes, and runs them in parallel against committed branch history. The
|
| 58 |
-
lane
|
| 59 |
-
|
|
|
|
| 60 |
The serial preflight/no-mistakes path remains the authoritative final local
|
| 61 |
gate. Preflight uses the same changed-file classifier as GitHub Actions and
|
| 62 |
runs the matching local gates before you open a PR: stats, ruff
|
|
|
|
| 55 |
`scripts/no_mistakes_run.sh fast` is the fast front door: it selects the
|
| 56 |
same PR checks, splits independent work into isolated temporary worktree
|
| 57 |
lanes, and runs them in parallel against committed branch history. The
|
| 58 |
+
wrapper writes lane timing evidence to `.gate/local-fast.json` by default,
|
| 59 |
+
and lane filters support fast reruns such as
|
| 60 |
+
`scripts/no_mistakes_run.sh fast --lane static --lane unit`.
|
| 61 |
The serial preflight/no-mistakes path remains the authoritative final local
|
| 62 |
gate. Preflight uses the same changed-file classifier as GitHub Actions and
|
| 63 |
runs the matching local gates before you open a PR: stats, ruff
|