Sync ctx 7eed91d
Browse filesGitHub commit: 7eed91d57c0e5c7a3cbd0fbe8968f7d889871baa
- .gitignore +1 -0
- README.md +9 -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)
|
| 19 |
[](https://python.org)
|
| 20 |
[](https://pypi.org/project/claude-ctx/)
|
| 21 |
-
[](https://stevesolun.github.io/ctx/knowledge-graph/)
|
| 23 |
[](https://stevesolun.github.io/ctx/catalog/?type=skill)
|
| 24 |
[](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;
|
| 166 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 167 |
|
| 168 |
```bash
|
| 169 |
python scripts/ci_preflight.py --profile pr
|
|
|
|
| 18 |
[](LICENSE)
|
| 19 |
[](https://python.org)
|
| 20 |
[](https://pypi.org/project/claude-ctx/)
|
| 21 |
+
[](https://github.com/stevesolun/ctx/actions/workflows/test.yml)
|
| 22 |
[](https://stevesolun.github.io/ctx/knowledge-graph/)
|
| 23 |
[](https://stevesolun.github.io/ctx/catalog/?type=skill)
|
| 24 |
[](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 |
-
|
|
|
|
|
|
|
| 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,
|
| 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),
|