ctxloom-pro 1.5.1 → 1.5.3
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 +17 -2
- package/apps/dashboard/dist/dashboard/client/assets/index-C1BQXiWY.css +1 -0
- package/apps/dashboard/dist/dashboard/client/assets/index-CXHxBCR_.js +144 -0
- package/apps/dashboard/dist/dashboard/client/index.html +2 -2
- package/apps/dashboard/dist/server/index.js +276 -19
- package/dist/budgetStats-NCV473MV.js +11 -0
- package/dist/{budgetStats-TURA232F.js → chunk-7YSLFUVN.js} +4 -3
- package/dist/{chunk-D3RJQLX6.js → chunk-MIC7Q72C.js} +106 -20
- package/dist/index.js +14 -13
- package/dist/{src-FU53WQZC.js → src-MTMXJEKZ.js} +16 -3
- package/package.json +3 -1
- package/apps/dashboard/dist/dashboard/client/assets/index-DNFP0Mer.js +0 -144
- package/apps/dashboard/dist/dashboard/client/assets/index-MBoNDzdn.css +0 -1
|
@@ -129,7 +129,7 @@ import {
|
|
|
129
129
|
wrapBlock,
|
|
130
130
|
wrapWithIndexingEnvelope,
|
|
131
131
|
writeCODEOWNERS
|
|
132
|
-
} from "./chunk-
|
|
132
|
+
} from "./chunk-MIC7Q72C.js";
|
|
133
133
|
import {
|
|
134
134
|
VectorStore
|
|
135
135
|
} from "./chunk-DVI2RWJR.js";
|
|
@@ -139,10 +139,18 @@ import {
|
|
|
139
139
|
generateEmbedding,
|
|
140
140
|
indexDirectory
|
|
141
141
|
} from "./chunk-UVR65QBJ.js";
|
|
142
|
-
import
|
|
142
|
+
import {
|
|
143
|
+
filenameForDate,
|
|
144
|
+
readEvents,
|
|
145
|
+
telemetryDir
|
|
146
|
+
} from "./chunk-5I6CJITG.js";
|
|
143
147
|
import {
|
|
144
148
|
logger
|
|
145
149
|
} from "./chunk-TYDMSHV7.js";
|
|
150
|
+
import {
|
|
151
|
+
renderSummary,
|
|
152
|
+
summarize
|
|
153
|
+
} from "./chunk-7YSLFUVN.js";
|
|
146
154
|
export {
|
|
147
155
|
ASTParser,
|
|
148
156
|
ApiClient,
|
|
@@ -223,6 +231,7 @@ export {
|
|
|
223
231
|
extractImports,
|
|
224
232
|
extractNotebookLanguage,
|
|
225
233
|
extractNotebookPythonSource,
|
|
234
|
+
filenameForDate,
|
|
226
235
|
findGrammar,
|
|
227
236
|
findGrammarByExtension,
|
|
228
237
|
findLargeFunctions,
|
|
@@ -256,7 +265,9 @@ export {
|
|
|
256
265
|
noParseableSourcesWarning,
|
|
257
266
|
projectRootNotFoundError,
|
|
258
267
|
projectRootUnreadableError,
|
|
268
|
+
readEvents,
|
|
259
269
|
recordTrendSnapshot,
|
|
270
|
+
renderSummary as renderBudgetSummary,
|
|
260
271
|
renderStatusXml,
|
|
261
272
|
requireActive,
|
|
262
273
|
resolveHmacKey,
|
|
@@ -272,6 +283,8 @@ export {
|
|
|
272
283
|
shouldShowTelemetryNotice,
|
|
273
284
|
skillFilePath,
|
|
274
285
|
startTrial,
|
|
286
|
+
summarize as summarizeBudgetEvents,
|
|
287
|
+
telemetryDir,
|
|
275
288
|
track,
|
|
276
289
|
upsertBlock,
|
|
277
290
|
validateAlias,
|
|
@@ -281,4 +294,4 @@ export {
|
|
|
281
294
|
wrapWithIndexingEnvelope,
|
|
282
295
|
writeCODEOWNERS
|
|
283
296
|
};
|
|
284
|
-
//# sourceMappingURL=src-
|
|
297
|
+
//# sourceMappingURL=src-MTMXJEKZ.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ctxloom-pro",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.3",
|
|
4
4
|
"description": "ctxloom — The Universal Code Context Engine. A local-first MCP server providing intelligent code context via hybrid Vector + AST + Graph search with Skeletonization (92% token reduction).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -43,6 +43,8 @@
|
|
|
43
43
|
"lint": "tsc --noEmit",
|
|
44
44
|
"postinstall": "node dist/setup/postinstall.js || true",
|
|
45
45
|
"bench:repos": "tsx benchmarks/benchmark-public-repos.ts",
|
|
46
|
+
"bench:spike": "tsx scripts/bench/eval.ts spike",
|
|
47
|
+
"bench:full": "tsx scripts/bench/eval.ts full",
|
|
46
48
|
"e2e:corpus": "node e2e-corpus/run.mjs"
|
|
47
49
|
},
|
|
48
50
|
"keywords": [
|