@muthuishere/ctx-optimize 0.9.2 → 0.10.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.
- package/README.md +2 -0
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -414,6 +414,8 @@ tarball, no git):
|
|
|
414
414
|
|
|
415
415
|
```sh
|
|
416
416
|
ctx-optimize languages add kotlin # known names resolve to the right repo/branch/exts
|
|
417
|
+
ctx-optimize languages add clojure # Lisps too — head-symbol decls, see docs/languages-packs.md
|
|
418
|
+
ctx-optimize languages add cljgo # a dialect entry: clojure.core + cljgo's own definers
|
|
417
419
|
ctx-optimize languages add https://github.com/tree-sitter-grammars/tree-sitter-lua
|
|
418
420
|
# → ~/ctxoptimize/grammars/<name>.wasm + <name>.json (mapping auto-suggested
|
|
419
421
|
# from the grammar's node-types.json — review it, then `add` just works)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@muthuishere/ctx-optimize",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.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",
|
|
@@ -16,10 +16,10 @@
|
|
|
16
16
|
"url": "git+https://github.com/muthuishere/ctx-optimize.git"
|
|
17
17
|
},
|
|
18
18
|
"optionalDependencies": {
|
|
19
|
-
"@muthuishere/ctx-optimize-darwin-arm64": "0.
|
|
20
|
-
"@muthuishere/ctx-optimize-darwin-x64": "0.
|
|
21
|
-
"@muthuishere/ctx-optimize-linux-arm64": "0.
|
|
22
|
-
"@muthuishere/ctx-optimize-linux-x64": "0.
|
|
23
|
-
"@muthuishere/ctx-optimize-windows-x64": "0.
|
|
19
|
+
"@muthuishere/ctx-optimize-darwin-arm64": "0.10.1",
|
|
20
|
+
"@muthuishere/ctx-optimize-darwin-x64": "0.10.1",
|
|
21
|
+
"@muthuishere/ctx-optimize-linux-arm64": "0.10.1",
|
|
22
|
+
"@muthuishere/ctx-optimize-linux-x64": "0.10.1",
|
|
23
|
+
"@muthuishere/ctx-optimize-windows-x64": "0.10.1"
|
|
24
24
|
}
|
|
25
25
|
}
|