Stevesolun commited on
Commit
c774f15
·
verified ·
1 Parent(s): c076f84

Sync ctx 7eed91d

Browse files

GitHub commit: 7eed91d57c0e5c7a3cbd0fbe8968f7d889871baa

Files changed (3) hide show
  1. .gitignore +1 -0
  2. README.md +9 -3
  3. docs/index.md +4 -2
.gitignore CHANGED
@@ -28,6 +28,7 @@ package-lock.json
28
 
29
  # Temp / runtime outputs
30
  /tmp/
 
31
  *.tmp
32
  *.bak
33
  *.swp
 
28
 
29
  # Temp / runtime outputs
30
  /tmp/
31
+ .gate/
32
  *.tmp
33
  *.bak
34
  *.swp
README.md CHANGED
@@ -18,7 +18,7 @@ tags:
18
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
19
  [![Python 3.11+](https://img.shields.io/badge/Python-3.11+-green.svg)](https://python.org)
20
  [![PyPI](https://img.shields.io/pypi/v/claude-ctx.svg)](https://pypi.org/project/claude-ctx/)
21
- [![Tests](https://img.shields.io/badge/Tests-4577_inventory-brightgreen.svg)](https://github.com/stevesolun/ctx/actions/workflows/test.yml)
22
  [![Graph](https://img.shields.io/badge/Graph-79%2C958_nodes_/_1%2C778%2C069_edges-red.svg)](https://stevesolun.github.io/ctx/knowledge-graph/)
23
  [![Skills](https://img.shields.io/badge/Skills-68%2C494-blue.svg)](https://stevesolun.github.io/ctx/catalog/?type=skill)
24
  [![Agents](https://img.shields.io/badge/Agents-467-purple.svg)](https://stevesolun.github.io/ctx/catalog/?type=agent)
@@ -162,8 +162,14 @@ 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; the serial preflight/no-mistakes path remains the
166
- authoritative final local gate:
 
 
 
 
 
 
167
 
168
  ```bash
169
  python scripts/ci_preflight.py --profile pr
 
18
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
19
  [![Python 3.11+](https://img.shields.io/badge/Python-3.11+-green.svg)](https://python.org)
20
  [![PyPI](https://img.shields.io/pypi/v/claude-ctx.svg)](https://pypi.org/project/claude-ctx/)
21
+ [![Tests](https://img.shields.io/badge/Tests-4584_inventory-brightgreen.svg)](https://github.com/stevesolun/ctx/actions/workflows/test.yml)
22
  [![Graph](https://img.shields.io/badge/Graph-79%2C958_nodes_/_1%2C778%2C069_edges-red.svg)](https://stevesolun.github.io/ctx/knowledge-graph/)
23
  [![Skills](https://img.shields.io/badge/Skills-68%2C494-blue.svg)](https://stevesolun.github.io/ctx/catalog/?type=skill)
24
  [![Agents](https://img.shields.io/badge/Agents-467-purple.svg)](https://stevesolun.github.io/ctx/catalog/?type=agent)
 
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; use lane filters for quick reruns after a failed lane:
166
+
167
+ ```bash
168
+ scripts/no_mistakes_run.sh fast --lane static --lane unit --summary-json .gate/local-fast.json
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:
173
 
174
  ```bash
175
  python scripts/ci_preflight.py --profile pr
docs/index.md CHANGED
@@ -55,7 +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
- serial preflight/no-mistakes path remains the authoritative final local
 
 
59
  gate. Preflight uses the same changed-file classifier as GitHub Actions and
60
  runs the matching local gates before you open a PR: stats, ruff
61
  format/check, mypy, pip check, unit coverage, canaries, package build,
@@ -232,7 +234,7 @@ ones are flagged. New ones self-ingest.
232
  ---
233
 
234
  Current main is **v1.0.21** — MIT, CI-matrixed (Ubuntu 3.12 plus Windows/macOS 3.11/3.12),
235
- 4,577 test inventory. Adds enterprise OpenTelemetry-ready telemetry and
236
  ships console scripts including `ctx-init`,
237
  `ctx-monitor` (local dashboard with graph + wiki + load/unload for
238
  skills, agents, and MCP servers, plus Harness Setup for user-owned LLMs),
 
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 filters support fast reruns such as
59
+ `scripts/no_mistakes_run.sh fast --lane static --lane unit --summary-json .gate/local-fast.json`.
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
63
  format/check, mypy, pip check, unit coverage, canaries, package build,
 
234
  ---
235
 
236
  Current main is **v1.0.21** — MIT, CI-matrixed (Ubuntu 3.12 plus Windows/macOS 3.11/3.12),
237
+ 4,584 test inventory. Adds enterprise OpenTelemetry-ready telemetry and
238
  ships console scripts including `ctx-init`,
239
  `ctx-monitor` (local dashboard with graph + wiki + load/unload for
240
  skills, agents, and MCP servers, plus Harness Setup for user-owned LLMs),