@muthuishere/ctx-optimize 0.6.3 → 0.8.0
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 +5 -0
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -135,6 +135,11 @@ ctx-optimize query "where is the refund flow" --json
|
|
|
135
135
|
# blast radius + WHICH TESTS TO RUN + co-change history
|
|
136
136
|
ctx-optimize change-plan "RefundService"
|
|
137
137
|
|
|
138
|
+
# list / filter natively — NO jq, NO python, works on Windows, all modules
|
|
139
|
+
ctx-optimize nodes --kind service --where namespace=prod # every prod k8s service
|
|
140
|
+
ctx-optimize edges --relation resolves_to # code→dependency links
|
|
141
|
+
ctx-optimize deps --scope dev --importers # dev deps + who imports each
|
|
142
|
+
|
|
138
143
|
# fast lane / slow lane: re-gather code without running adapter scripts;
|
|
139
144
|
# run adapters (DB dumps, doc converters) on demand — all, or one by name
|
|
140
145
|
ctx-optimize sync
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@muthuishere/ctx-optimize",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.8.0",
|
|
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.8.0",
|
|
20
|
+
"@muthuishere/ctx-optimize-darwin-x64": "0.8.0",
|
|
21
|
+
"@muthuishere/ctx-optimize-linux-arm64": "0.8.0",
|
|
22
|
+
"@muthuishere/ctx-optimize-linux-x64": "0.8.0",
|
|
23
|
+
"@muthuishere/ctx-optimize-windows-x64": "0.8.0"
|
|
24
24
|
}
|
|
25
25
|
}
|