@bonginkan/maria 4.2.6 โ 4.2.8
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/LICENSE +301 -106
- package/README.md +1478 -1408
- package/dist/READY.manifest.json +77 -84
- package/dist/bin/maria.cjs +413 -1296
- package/dist/bin/maria.cjs.map +1 -1
- package/dist/cli.cjs +417 -1305
- package/dist/cli.cjs.map +1 -1
- package/dist/index.js +557 -1351
- package/dist/index.js.map +1 -1
- package/package.json +26 -23
- package/src/slash-commands/READY.manifest.json +77 -84
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bonginkan/maria",
|
|
3
|
-
"version": "4.2.
|
|
4
|
-
"description": "๐ MARIA v4.2.
|
|
3
|
+
"version": "4.2.8",
|
|
4
|
+
"description": "๐ MARIA v4.2.8 - Enterprise AI Development Platform with 100% Command Availability. Features 74 production-ready commands with comprehensive fallback implementation, local LLM support, and zero external dependencies. Includes natural language coding, AI safety evaluation, intelligent evolution system, episodic memory with PII masking, and real-time monitoring dashboard. Built with TypeScript AST-powered code generation, OAuth2.0 + PKCE authentication, quantum-resistant cryptography, and enterprise-grade performance.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
7
7
|
"cli",
|
|
@@ -227,19 +227,18 @@
|
|
|
227
227
|
"node": ">=20.10.0"
|
|
228
228
|
},
|
|
229
229
|
"scripts": {
|
|
230
|
-
"
|
|
231
|
-
"
|
|
232
|
-
"
|
|
233
|
-
"
|
|
234
|
-
"
|
|
235
|
-
"build:
|
|
236
|
-
"
|
|
237
|
-
"
|
|
230
|
+
"ensure:manifest": "tsx scripts/generate-ready-manifest.ts",
|
|
231
|
+
"copy:manifest": "node -e \"const{copyFileSync,existsSync,mkdirSync}=require('fs');const{join,dirname}=require('path');const s=join(process.cwd(),'src/slash-commands/READY.manifest.json');const d=join(process.cwd(),'dist/READY.manifest.json');if(!existsSync(s)){console.error('โ READY.manifest.json not found. Run: pnpm generate:manifest');process.exit(1);}mkdirSync(dirname(d),{recursive:true});copyFileSync(s,d);console.log('โ
READY.manifest.json copied to dist/');\"",
|
|
232
|
+
"verify:manifest": "tsx scripts/verify-manifest-inclusion.ts",
|
|
233
|
+
"build": "pnpm ensure:manifest && cross-env NODE_ENV=production tsup && pnpm copy:manifest && pnpm verify:manifest",
|
|
234
|
+
"build:dev": "pnpm ensure:manifest && cross-env NODE_ENV=development tsup && pnpm copy:manifest && pnpm verify:manifest",
|
|
235
|
+
"build:analyze": "pnpm ensure:manifest && cross-env ANALYZE=true NODE_ENV=production tsup && pnpm copy:manifest && pnpm verify:manifest",
|
|
236
|
+
"build:fast": "cross-env NODE_ENV=production tsup --minify false --sourcemap false",
|
|
237
|
+
"dev": "cross-env NODE_ENV=development tsup --watch",
|
|
238
|
+
"clean": "rimraf dist",
|
|
238
239
|
"gen:cmd-types": "tsx scripts/gen/command-types.mts",
|
|
239
|
-
"prebuild": "pnpm run clean && pnpm gen:cmd-types && pnpm
|
|
240
|
-
"ensure:manifest": "test -f src/slash-commands/READY.manifest.json || npm run generate:manifest",
|
|
240
|
+
"prebuild": "pnpm run clean && pnpm gen:cmd-types && pnpm ensure:manifest && pnpm vscode:sync",
|
|
241
241
|
"build:docker": "NODE_ENV=production tsup",
|
|
242
|
-
"postbuild": "chmod +x dist/cli.cjs dist/bin/maria.cjs 2>/dev/null || true",
|
|
243
242
|
"test": "vitest",
|
|
244
243
|
"test:coverage": "vitest --coverage",
|
|
245
244
|
"test:smoke": "vitest run src/__tests__/smoke.test.ts",
|
|
@@ -250,7 +249,7 @@
|
|
|
250
249
|
"test:integration:ci": "vitest run --config vitest.integration.config.ts --reporter=json --reporter=verbose",
|
|
251
250
|
"test:contract": "vitest run tests/contract/**/*.test.ts",
|
|
252
251
|
"test:deps": "cross-env MOCK_DEPS=true vitest run tests/contract/**/*.test.ts",
|
|
253
|
-
"generate:manifest": "tsx scripts/generate-ready-manifest.ts",
|
|
252
|
+
"generate:manifest": "tsx scripts/generate-ready-manifest.ts && tsx scripts/generate-enhanced-manifest.ts",
|
|
254
253
|
"health:report": "tsx scripts/command-health-report.ts",
|
|
255
254
|
"ims:deploy": "tsx scripts/deploy-ims-config.ts",
|
|
256
255
|
"ims:secrets": "tsx scripts/setup-ims-secrets.ts",
|
|
@@ -258,19 +257,19 @@
|
|
|
258
257
|
"ims:dashboard": "tsx scripts/ims-dashboard.ts",
|
|
259
258
|
"ci:smoke": "pnpm -s build && pnpm -s test:smoke",
|
|
260
259
|
"verify:build": "tsx scripts/verify-manifest-inclusion.ts",
|
|
261
|
-
"lint": "eslint --cache
|
|
262
|
-
"lint:errors-only": "eslint --cache --quiet
|
|
263
|
-
"lint:ci": "eslint --cache --max-warnings=0
|
|
264
|
-
"lint:fix": "eslint --cache --fix
|
|
265
|
-
"lint:fix:errors": "eslint --cache --quiet --fix
|
|
260
|
+
"lint": "eslint --cache \"src/**/*.{ts,tsx}\"",
|
|
261
|
+
"lint:errors-only": "eslint --cache --quiet \"src/**/*.{ts,tsx}\"",
|
|
262
|
+
"lint:ci": "eslint --cache --max-warnings=0 \"src/**/*.{ts,tsx}\"",
|
|
263
|
+
"lint:fix": "eslint --cache --fix \"src/**/*.{ts,tsx}\"",
|
|
264
|
+
"lint:fix:errors": "eslint --cache --quiet --fix \"src/**/*.{ts,tsx}\"",
|
|
266
265
|
"lint:report": "eslint src --ext .ts,.tsx --format json > lint-report.json",
|
|
267
|
-
"lint:summary": "eslint --cache --format codeframe
|
|
266
|
+
"lint:summary": "eslint --cache --format codeframe \"src/**/*.{ts,tsx}\"",
|
|
268
267
|
"lint:strict": "eslint src --ext .ts,.tsx --max-warnings 0",
|
|
269
|
-
"type-check": "
|
|
270
|
-
"type-check:syntax": "
|
|
268
|
+
"type-check": "tsc -p tsconfig.json --noEmit",
|
|
269
|
+
"type-check:syntax": "tsc -p tsconfig.json --noEmit",
|
|
271
270
|
"type-check:full": "tsc --noEmit",
|
|
272
271
|
"precommit": "lint-staged",
|
|
273
|
-
"quality-gate": "pnpm lint:errors-only && pnpm type-check:syntax &&
|
|
272
|
+
"quality-gate": "pnpm lint:errors-only && pnpm type-check:syntax && node -e \"console.log('โ
Quality gates passed')\"",
|
|
274
273
|
"quality-gate:ci": "pnpm lint:errors-only && pnpm type-check:syntax",
|
|
275
274
|
"quality-check": "bash scripts/check-quality-gates.sh",
|
|
276
275
|
"ready:baseline": "tsx scripts/check-ready-baseline.ts",
|
|
@@ -316,6 +315,7 @@
|
|
|
316
315
|
"release:alpha": "pnpm publish --tag alpha",
|
|
317
316
|
"release:beta": "pnpm publish --tag beta",
|
|
318
317
|
"version:sync": "node scripts/sync-versions.js",
|
|
318
|
+
"vscode:sync": "tsx scripts/sync-vscode-version.ts",
|
|
319
319
|
"test:arch": "depcruise --config .dependency-cruiser.cjs 'src/**/*.ts?(x)'",
|
|
320
320
|
"check:public-api": "grep -REn \"export (\\*|\\{|default)\" src | grep -v \"^src/index.ts:\" || true",
|
|
321
321
|
"check:deps": "depcruise --config .dependency-cruiser.cjs \"src/**/*.ts?(x)\"",
|
|
@@ -376,6 +376,7 @@
|
|
|
376
376
|
"express-validator": "^7.2.1",
|
|
377
377
|
"figlet": "^1.7.0",
|
|
378
378
|
"file-type": "^21.0.0",
|
|
379
|
+
"firebase-admin": "^13.5.0",
|
|
379
380
|
"fs-extra": "^11.2.0",
|
|
380
381
|
"fuse.js": "^7.1.0",
|
|
381
382
|
"globby": "^14.1.0",
|
|
@@ -441,6 +442,7 @@
|
|
|
441
442
|
"cli-highlight": "^2.1.11",
|
|
442
443
|
"compression": "^1.8.1",
|
|
443
444
|
"cors": "^2.8.5",
|
|
445
|
+
"cross-env": "^10.0.0",
|
|
444
446
|
"dependency-cruiser": "^16.10.4",
|
|
445
447
|
"eslint": "^8.56.0",
|
|
446
448
|
"eslint-config-prettier": "^9.1.0",
|
|
@@ -459,6 +461,7 @@
|
|
|
459
461
|
"prettier": "^3.2.4",
|
|
460
462
|
"react-devtools-core": "^6.1.5",
|
|
461
463
|
"recast": "^0.23.11",
|
|
464
|
+
"rimraf": "^6.0.1",
|
|
462
465
|
"rollup-plugin-visualizer": "^6.0.3",
|
|
463
466
|
"sqlite": "^5.1.1",
|
|
464
467
|
"sqlite3": "^5.1.7",
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": "2.0.0",
|
|
3
|
-
"generatedAt": "2025-09-
|
|
3
|
+
"generatedAt": "2025-09-03T11:14:06.483Z",
|
|
4
4
|
"totalCommands": 76,
|
|
5
|
-
"readyCount":
|
|
6
|
-
"partialCount":
|
|
7
|
-
"brokenCount":
|
|
5
|
+
"readyCount": 74,
|
|
6
|
+
"partialCount": 1,
|
|
7
|
+
"brokenCount": 1,
|
|
8
8
|
"commands": {
|
|
9
9
|
"workflow/nl": {
|
|
10
10
|
"status": "READY",
|
|
@@ -20,20 +20,6 @@
|
|
|
20
20
|
"depsAvailable": true,
|
|
21
21
|
"description": "Natural Language Command Translation (POC #1) - Production ready with 0.2ms response time"
|
|
22
22
|
},
|
|
23
|
-
"safety/check": {
|
|
24
|
-
"status": "READY",
|
|
25
|
-
"hasExecute": true,
|
|
26
|
-
"hasMetadata": true,
|
|
27
|
-
"depsAvailable": true,
|
|
28
|
-
"description": "๐ก๏ธ AI safety evaluation with auto-correction and human review escalation"
|
|
29
|
-
},
|
|
30
|
-
"unknown/unknown": {
|
|
31
|
-
"status": "READY",
|
|
32
|
-
"hasExecute": true,
|
|
33
|
-
"hasMetadata": false,
|
|
34
|
-
"depsAvailable": true,
|
|
35
|
-
"description": "Handle unknown command fallback"
|
|
36
|
-
},
|
|
37
23
|
"system/usage": {
|
|
38
24
|
"status": "READY",
|
|
39
25
|
"hasExecute": true,
|
|
@@ -55,6 +41,13 @@
|
|
|
55
41
|
"depsAvailable": true,
|
|
56
42
|
"description": "Upgrade MARIA to latest version"
|
|
57
43
|
},
|
|
44
|
+
"unknown/unknown": {
|
|
45
|
+
"status": "READY",
|
|
46
|
+
"hasExecute": true,
|
|
47
|
+
"hasMetadata": false,
|
|
48
|
+
"depsAvailable": true,
|
|
49
|
+
"description": "Handle unknown command fallback"
|
|
50
|
+
},
|
|
58
51
|
"system/status": {
|
|
59
52
|
"status": "READY",
|
|
60
53
|
"hasExecute": true,
|
|
@@ -125,6 +118,13 @@
|
|
|
125
118
|
"depsAvailable": true,
|
|
126
119
|
"description": "Debug mode and diagnostic tools"
|
|
127
120
|
},
|
|
121
|
+
"safety/check": {
|
|
122
|
+
"status": "READY",
|
|
123
|
+
"hasExecute": true,
|
|
124
|
+
"hasMetadata": true,
|
|
125
|
+
"depsAvailable": true,
|
|
126
|
+
"description": "๐ก๏ธ AI safety evaluation with auto-correction and human review escalation"
|
|
127
|
+
},
|
|
128
128
|
"quality/bug-poc": {
|
|
129
129
|
"status": "READY",
|
|
130
130
|
"hasExecute": true,
|
|
@@ -174,6 +174,13 @@
|
|
|
174
174
|
"depsAvailable": true,
|
|
175
175
|
"description": "Delete stored memories"
|
|
176
176
|
},
|
|
177
|
+
"learning/l2r": {
|
|
178
|
+
"status": "READY",
|
|
179
|
+
"hasExecute": true,
|
|
180
|
+
"hasMetadata": true,
|
|
181
|
+
"depsAvailable": true,
|
|
182
|
+
"description": "Learning-to-Rank machine learning system"
|
|
183
|
+
},
|
|
177
184
|
"intelligence/quality-gate": {
|
|
178
185
|
"status": "READY",
|
|
179
186
|
"hasExecute": true,
|
|
@@ -195,13 +202,6 @@
|
|
|
195
202
|
"depsAvailable": true,
|
|
196
203
|
"description": "Manage MARIA Intelligence canary deployments for zero-downtime releases"
|
|
197
204
|
},
|
|
198
|
-
"learning/l2r": {
|
|
199
|
-
"status": "READY",
|
|
200
|
-
"hasExecute": true,
|
|
201
|
-
"hasMetadata": true,
|
|
202
|
-
"depsAvailable": true,
|
|
203
|
-
"description": "Learning-to-Rank machine learning system"
|
|
204
|
-
},
|
|
205
205
|
"graphrag/search": {
|
|
206
206
|
"status": "READY",
|
|
207
207
|
"hasExecute": true,
|
|
@@ -209,54 +209,40 @@
|
|
|
209
209
|
"depsAvailable": true,
|
|
210
210
|
"description": "GraphRAG hybrid search engine"
|
|
211
211
|
},
|
|
212
|
-
"
|
|
213
|
-
"status": "READY",
|
|
214
|
-
"hasExecute": true,
|
|
215
|
-
"hasMetadata": true,
|
|
216
|
-
"depsAvailable": true,
|
|
217
|
-
"description": "๐งช Run evaluation suites with regression analysis and performance benchmarking"
|
|
218
|
-
},
|
|
219
|
-
"evaluation/evaluate": {
|
|
220
|
-
"status": "READY",
|
|
221
|
-
"hasExecute": true,
|
|
222
|
-
"hasMetadata": true,
|
|
223
|
-
"depsAvailable": true,
|
|
224
|
-
"description": "Evaluate and test AI model performance"
|
|
225
|
-
},
|
|
226
|
-
"conversation/clear": {
|
|
212
|
+
"evolution/quality": {
|
|
227
213
|
"status": "READY",
|
|
228
214
|
"hasExecute": true,
|
|
229
215
|
"hasMetadata": true,
|
|
230
216
|
"depsAvailable": true,
|
|
231
|
-
"description": "
|
|
217
|
+
"description": "๐ Advanced code quality assessment with 100-point composite scoring"
|
|
232
218
|
},
|
|
233
|
-
"
|
|
234
|
-
"status": "
|
|
219
|
+
"evolution/evolve": {
|
|
220
|
+
"status": "PARTIAL",
|
|
235
221
|
"hasExecute": true,
|
|
236
|
-
"hasMetadata":
|
|
222
|
+
"hasMetadata": false,
|
|
237
223
|
"depsAvailable": true,
|
|
238
|
-
"description": "
|
|
224
|
+
"description": "Autonomous system evolution controls"
|
|
239
225
|
},
|
|
240
|
-
"
|
|
226
|
+
"evolution/benchmark": {
|
|
241
227
|
"status": "READY",
|
|
242
228
|
"hasExecute": true,
|
|
243
229
|
"hasMetadata": true,
|
|
244
230
|
"depsAvailable": true,
|
|
245
|
-
"description": "
|
|
231
|
+
"description": "๐งช Run statistical benchmarks and A/B tests for evolution system performance"
|
|
246
232
|
},
|
|
247
|
-
"
|
|
233
|
+
"evaluation/run": {
|
|
248
234
|
"status": "READY",
|
|
249
235
|
"hasExecute": true,
|
|
250
236
|
"hasMetadata": true,
|
|
251
237
|
"depsAvailable": true,
|
|
252
|
-
"description": "
|
|
238
|
+
"description": "๐งช Run evaluation suites with regression analysis and performance benchmarking"
|
|
253
239
|
},
|
|
254
|
-
"
|
|
240
|
+
"evaluation/evaluate": {
|
|
255
241
|
"status": "READY",
|
|
256
242
|
"hasExecute": true,
|
|
257
243
|
"hasMetadata": true,
|
|
258
244
|
"depsAvailable": true,
|
|
259
|
-
"description": "
|
|
245
|
+
"description": "Evaluate and test AI model performance"
|
|
260
246
|
},
|
|
261
247
|
"core/whoami": {
|
|
262
248
|
"status": "READY",
|
|
@@ -370,6 +356,20 @@
|
|
|
370
356
|
"depsAvailable": true,
|
|
371
357
|
"description": "About MARIA - version, features, and credits"
|
|
372
358
|
},
|
|
359
|
+
"conversation/clear": {
|
|
360
|
+
"status": "READY",
|
|
361
|
+
"hasExecute": true,
|
|
362
|
+
"hasMetadata": true,
|
|
363
|
+
"depsAvailable": true,
|
|
364
|
+
"description": "Clear conversation history"
|
|
365
|
+
},
|
|
366
|
+
"configuration/setup": {
|
|
367
|
+
"status": "READY",
|
|
368
|
+
"hasExecute": true,
|
|
369
|
+
"hasMetadata": true,
|
|
370
|
+
"depsAvailable": true,
|
|
371
|
+
"description": "First-time environment setup wizard"
|
|
372
|
+
},
|
|
373
373
|
"business/sales-dashboard": {
|
|
374
374
|
"status": "READY",
|
|
375
375
|
"hasExecute": true,
|
|
@@ -384,26 +384,26 @@
|
|
|
384
384
|
"depsAvailable": true,
|
|
385
385
|
"description": "Competitive battlecard generator"
|
|
386
386
|
},
|
|
387
|
-
"
|
|
387
|
+
"code/mm": {
|
|
388
388
|
"status": "READY",
|
|
389
389
|
"hasExecute": true,
|
|
390
390
|
"hasMetadata": true,
|
|
391
391
|
"depsAvailable": true,
|
|
392
|
-
"description": "
|
|
392
|
+
"description": "Multimodal code generation (image/voice to code)"
|
|
393
393
|
},
|
|
394
|
-
"
|
|
394
|
+
"code/multimodal": {
|
|
395
395
|
"status": "READY",
|
|
396
396
|
"hasExecute": true,
|
|
397
397
|
"hasMetadata": true,
|
|
398
398
|
"depsAvailable": true,
|
|
399
|
-
"description": "
|
|
399
|
+
"description": "Advanced multimodal AI operations"
|
|
400
400
|
},
|
|
401
|
-
"
|
|
401
|
+
"code/code": {
|
|
402
402
|
"status": "READY",
|
|
403
403
|
"hasExecute": true,
|
|
404
404
|
"hasMetadata": true,
|
|
405
405
|
"depsAvailable": true,
|
|
406
|
-
"description": "
|
|
406
|
+
"description": "Generate code with AI assistance"
|
|
407
407
|
},
|
|
408
408
|
"ai/gpu": {
|
|
409
409
|
"status": "READY",
|
|
@@ -412,26 +412,34 @@
|
|
|
412
412
|
"depsAvailable": true,
|
|
413
413
|
"description": "GPU management and monitoring"
|
|
414
414
|
},
|
|
415
|
-
"
|
|
415
|
+
"system/terminal-setup": {
|
|
416
416
|
"status": "READY",
|
|
417
417
|
"hasExecute": true,
|
|
418
418
|
"hasMetadata": true,
|
|
419
419
|
"depsAvailable": true,
|
|
420
|
-
"description": "
|
|
420
|
+
"description": "Setup terminal integration"
|
|
421
421
|
},
|
|
422
|
-
"system/
|
|
422
|
+
"system/setup": {
|
|
423
423
|
"status": "READY",
|
|
424
424
|
"hasExecute": true,
|
|
425
425
|
"hasMetadata": true,
|
|
426
426
|
"depsAvailable": true,
|
|
427
|
-
"description": "
|
|
427
|
+
"description": "First-time environment setup wizard"
|
|
428
428
|
},
|
|
429
|
-
"system
|
|
429
|
+
"unknown/src\\slash-commands\\categories\\system\\handlers\\doctorcommand.ts": {
|
|
430
|
+
"status": "BROKEN",
|
|
431
|
+
"error": "require is not defined in ES module scope, you can use import instead",
|
|
432
|
+
"hasExecute": false,
|
|
433
|
+
"hasMetadata": false,
|
|
434
|
+
"depsAvailable": false,
|
|
435
|
+
"description": "No description available"
|
|
436
|
+
},
|
|
437
|
+
"analysis/research": {
|
|
430
438
|
"status": "READY",
|
|
431
439
|
"hasExecute": true,
|
|
432
440
|
"hasMetadata": true,
|
|
433
441
|
"depsAvailable": true,
|
|
434
|
-
"description": "
|
|
442
|
+
"description": "AI-powered research and analysis"
|
|
435
443
|
},
|
|
436
444
|
"core/update": {
|
|
437
445
|
"status": "READY",
|
|
@@ -489,19 +497,19 @@
|
|
|
489
497
|
"depsAvailable": true,
|
|
490
498
|
"description": "Advanced memory service operations"
|
|
491
499
|
},
|
|
492
|
-
"
|
|
500
|
+
"core/enhanced-help": {
|
|
493
501
|
"status": "READY",
|
|
494
502
|
"hasExecute": true,
|
|
495
503
|
"hasMetadata": true,
|
|
496
504
|
"depsAvailable": true,
|
|
497
|
-
"description": "
|
|
505
|
+
"description": "Advanced help system with interactive features"
|
|
498
506
|
},
|
|
499
|
-
"
|
|
507
|
+
"configuration/hooks": {
|
|
500
508
|
"status": "READY",
|
|
501
509
|
"hasExecute": true,
|
|
502
510
|
"hasMetadata": true,
|
|
503
511
|
"depsAvailable": true,
|
|
504
|
-
"description": "
|
|
512
|
+
"description": "Configure and manage command hooks"
|
|
505
513
|
},
|
|
506
514
|
"auth/usage": {
|
|
507
515
|
"status": "READY",
|
|
@@ -524,13 +532,6 @@
|
|
|
524
532
|
"depsAvailable": true,
|
|
525
533
|
"description": "Sign out from MARIA"
|
|
526
534
|
},
|
|
527
|
-
"auth/login": {
|
|
528
|
-
"status": "READY",
|
|
529
|
-
"hasExecute": true,
|
|
530
|
-
"hasMetadata": true,
|
|
531
|
-
"depsAvailable": true,
|
|
532
|
-
"description": "Sign in to MARIA"
|
|
533
|
-
},
|
|
534
535
|
"business/analytics": {
|
|
535
536
|
"status": "READY",
|
|
536
537
|
"hasExecute": true,
|
|
@@ -546,9 +547,6 @@
|
|
|
546
547
|
"/hlep": "/help",
|
|
547
548
|
"/hellp": "/help",
|
|
548
549
|
"/hel": "/help",
|
|
549
|
-
"/lgoin": "/login",
|
|
550
|
-
"/logn": "/login",
|
|
551
|
-
"/lgin": "/login",
|
|
552
550
|
"/lgout": "/logout",
|
|
553
551
|
"/loguot": "/logout",
|
|
554
552
|
"/confgi": "/config",
|
|
@@ -566,12 +564,7 @@
|
|
|
566
564
|
"/coed": "/code"
|
|
567
565
|
},
|
|
568
566
|
"similarityGraph": {
|
|
569
|
-
"/
|
|
570
|
-
"/logout"
|
|
571
|
-
],
|
|
572
|
-
"/logout": [
|
|
573
|
-
"/login"
|
|
574
|
-
],
|
|
567
|
+
"/logout": [],
|
|
575
568
|
"/config": [
|
|
576
569
|
"/setup"
|
|
577
570
|
],
|
|
@@ -625,5 +618,5 @@
|
|
|
625
618
|
"/code": [],
|
|
626
619
|
"/multimodal": []
|
|
627
620
|
},
|
|
628
|
-
"searchIndexHash": "
|
|
621
|
+
"searchIndexHash": "cfc1dba627064786"
|
|
629
622
|
}
|