@muthuishere/ctx-optimize 0.2.8 → 0.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +17 -7
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -17,7 +17,7 @@ harness) answers *from the store* in a single call. The binary never touches a
17
17
  model, a database, or the network: it's deterministic, and the only
18
18
  intelligence in the system is the agent you already run.
19
19
 
20
- > **Status: v0.1.x — published.** On npm (`@muthuishere/ctx-optimize`) with
20
+ > **Status: v0.3.x — published.** On npm (`@muthuishere/ctx-optimize`) with
21
21
  > prebuilt binaries for macOS / Linux / Windows; CI green; benchmarks
22
22
  > reproducible (see [Proof](#proof--reproducible-not-our-word)). Working
23
23
  > today: code extraction for **12 embedded languages** (Go, Python, JS,
@@ -26,12 +26,22 @@ intelligence in the system is the agent you already run.
26
26
  > (kotlin/swift/dart ship in `grammars/`), markdown docs, the universal
27
27
  > adapter door, `query`/`path`/`explain`/`affected`/`hubs`, **symbol cards**
28
28
  > (`card X`: signature + doc + callers/callees, no file read), the
29
- > **deterministic wiki** (regenerated on every add), the save-result/reflect
30
- > learning loop, merge/export (json/dot/graphml/csv/obsidian), the live
31
- > dashboard, remote init/push/pull, and **multi-module monorepo support**
32
- > (`scan` / `init --scan` / parallel fan-out `add` / navigator + federated
33
- > queries see below). Exact call edges (x/tools + LSP) are
34
- > next see `openspec/` for the plan.
29
+ > **deterministic wiki** (regenerated on every add) with a
30
+ > **community-detected "Subsystems" map**, the save-result/reflect
31
+ > learning loop, merge/export (json/dot/graphml/csv/obsidian), remote
32
+ > init/push/pull, and **multi-module monorepo support** (`scan` /
33
+ > `init --scan` / parallel fan-out `add` / navigator + federated queries).
34
+ > New in v0.3: **framework routes** (FastAPI/Flask/Express/NestJS/Angular/
35
+ > React Router/Vue + OpenAPI/Drupal/Ingress YAML — route nodes linked to
36
+ > their handlers, so `affected <handler>` surfaces the URL that binds it),
37
+ > the **manifest lane** (package.json/pom.xml/csproj+sln/go.mod/gradle
38
+ > dependencies + K8s topology as graph — one `dep:` node federates across
39
+ > build tools and modules), **git-history co-change edges** ("these files
40
+ > change together", from `git log` alone), a **first-class React dashboard**
41
+ > (`serve`: onboard/repos/viewer/settings/changes, all audited), and the
42
+ > **pack doctrine** — routes and manifests are extensible with drop-in JSON
43
+ > packs (`routes add` / `manifests add`, name or GitHub URL) exactly like
44
+ > grammar packs. Exact call edges (x/tools + LSP) are next — see `openspec/`.
35
45
 
36
46
  **Site, demos, benchmarks:** https://muthuishere.github.io/ctx-optimize-site/
37
47
  — landing page, unedited demos, and the full proof write-up. Everything below
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@muthuishere/ctx-optimize",
3
- "version": "0.2.8",
3
+ "version": "0.3.1",
4
4
  "description": "Gather a codebase (and its world) into one local knowledge store an AI agent answers from — deterministic, no LLM API, no DB.",
5
5
  "bin": {
6
6
  "ctx-optimize": "bin/ctx-optimize.js"
@@ -15,10 +15,10 @@
15
15
  "url": "git+https://github.com/muthuishere/ctx-optimize.git"
16
16
  },
17
17
  "optionalDependencies": {
18
- "@muthuishere/ctx-optimize-darwin-arm64": "0.2.8",
19
- "@muthuishere/ctx-optimize-darwin-x64": "0.2.8",
20
- "@muthuishere/ctx-optimize-linux-arm64": "0.2.8",
21
- "@muthuishere/ctx-optimize-linux-x64": "0.2.8",
22
- "@muthuishere/ctx-optimize-windows-x64": "0.2.8"
18
+ "@muthuishere/ctx-optimize-darwin-arm64": "0.3.1",
19
+ "@muthuishere/ctx-optimize-darwin-x64": "0.3.1",
20
+ "@muthuishere/ctx-optimize-linux-arm64": "0.3.1",
21
+ "@muthuishere/ctx-optimize-linux-x64": "0.3.1",
22
+ "@muthuishere/ctx-optimize-windows-x64": "0.3.1"
23
23
  }
24
24
  }