@bonginkan/maria 4.2.6 โ 4.2.7
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 +75 -82
- package/dist/bin/maria.cjs +366 -1285
- package/dist/bin/maria.cjs.map +1 -1
- package/dist/cli.cjs +370 -1294
- package/dist/cli.cjs.map +1 -1
- package/dist/index.js +557 -1351
- package/dist/index.js.map +1 -1
- package/package.json +25 -22
- package/src/slash-commands/READY.manifest.json +75 -82
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bonginkan/maria",
|
|
3
|
-
"version": "4.2.
|
|
3
|
+
"version": "4.2.7",
|
|
4
4
|
"description": "๐ MARIA v4.2.0 - 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",
|
|
@@ -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-03T10:37:41.196Z",
|
|
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,47 @@
|
|
|
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": {
|
|
212
|
+
"evolution/quality": {
|
|
220
213
|
"status": "READY",
|
|
221
214
|
"hasExecute": true,
|
|
222
215
|
"hasMetadata": true,
|
|
223
216
|
"depsAvailable": true,
|
|
224
|
-
"description": "
|
|
217
|
+
"description": "๐ Advanced code quality assessment with 100-point composite scoring"
|
|
225
218
|
},
|
|
226
|
-
"
|
|
227
|
-
"status": "
|
|
219
|
+
"evolution/evolve": {
|
|
220
|
+
"status": "PARTIAL",
|
|
228
221
|
"hasExecute": true,
|
|
229
|
-
"hasMetadata":
|
|
222
|
+
"hasMetadata": false,
|
|
230
223
|
"depsAvailable": true,
|
|
231
|
-
"description": "
|
|
224
|
+
"description": "Autonomous system evolution controls"
|
|
232
225
|
},
|
|
233
|
-
"
|
|
226
|
+
"evolution/benchmark": {
|
|
234
227
|
"status": "READY",
|
|
235
228
|
"hasExecute": true,
|
|
236
229
|
"hasMetadata": true,
|
|
237
230
|
"depsAvailable": true,
|
|
238
|
-
"description": "
|
|
231
|
+
"description": "๐งช Run statistical benchmarks and A/B tests for evolution system performance"
|
|
239
232
|
},
|
|
240
|
-
"
|
|
233
|
+
"evaluation/run": {
|
|
241
234
|
"status": "READY",
|
|
242
235
|
"hasExecute": true,
|
|
243
236
|
"hasMetadata": true,
|
|
244
237
|
"depsAvailable": true,
|
|
245
|
-
"description": "
|
|
238
|
+
"description": "๐งช Run evaluation suites with regression analysis and performance benchmarking"
|
|
246
239
|
},
|
|
247
|
-
"
|
|
240
|
+
"evaluation/evaluate": {
|
|
248
241
|
"status": "READY",
|
|
249
242
|
"hasExecute": true,
|
|
250
243
|
"hasMetadata": true,
|
|
251
244
|
"depsAvailable": true,
|
|
252
|
-
"description": "
|
|
245
|
+
"description": "Evaluate and test AI model performance"
|
|
253
246
|
},
|
|
254
|
-
"
|
|
247
|
+
"conversation/clear": {
|
|
255
248
|
"status": "READY",
|
|
256
249
|
"hasExecute": true,
|
|
257
250
|
"hasMetadata": true,
|
|
258
251
|
"depsAvailable": true,
|
|
259
|
-
"description": "
|
|
252
|
+
"description": "Clear conversation history"
|
|
260
253
|
},
|
|
261
254
|
"core/whoami": {
|
|
262
255
|
"status": "READY",
|
|
@@ -370,40 +363,47 @@
|
|
|
370
363
|
"depsAvailable": true,
|
|
371
364
|
"description": "About MARIA - version, features, and credits"
|
|
372
365
|
},
|
|
373
|
-
"
|
|
366
|
+
"code/mm": {
|
|
374
367
|
"status": "READY",
|
|
375
368
|
"hasExecute": true,
|
|
376
369
|
"hasMetadata": true,
|
|
377
370
|
"depsAvailable": true,
|
|
378
|
-
"description": "
|
|
371
|
+
"description": "Multimodal code generation (image/voice to code)"
|
|
379
372
|
},
|
|
380
|
-
"
|
|
373
|
+
"code/multimodal": {
|
|
381
374
|
"status": "READY",
|
|
382
375
|
"hasExecute": true,
|
|
383
376
|
"hasMetadata": true,
|
|
384
377
|
"depsAvailable": true,
|
|
385
|
-
"description": "
|
|
378
|
+
"description": "Advanced multimodal AI operations"
|
|
386
379
|
},
|
|
387
|
-
"
|
|
380
|
+
"code/code": {
|
|
388
381
|
"status": "READY",
|
|
389
382
|
"hasExecute": true,
|
|
390
383
|
"hasMetadata": true,
|
|
391
384
|
"depsAvailable": true,
|
|
392
|
-
"description": "
|
|
385
|
+
"description": "Generate code with AI assistance"
|
|
393
386
|
},
|
|
394
|
-
"
|
|
387
|
+
"configuration/setup": {
|
|
395
388
|
"status": "READY",
|
|
396
389
|
"hasExecute": true,
|
|
397
390
|
"hasMetadata": true,
|
|
398
391
|
"depsAvailable": true,
|
|
399
|
-
"description": "
|
|
392
|
+
"description": "First-time environment setup wizard"
|
|
400
393
|
},
|
|
401
|
-
"
|
|
394
|
+
"business/sales-dashboard": {
|
|
402
395
|
"status": "READY",
|
|
403
396
|
"hasExecute": true,
|
|
404
397
|
"hasMetadata": true,
|
|
405
398
|
"depsAvailable": true,
|
|
406
|
-
"description": "
|
|
399
|
+
"description": "Sales metrics and dashboard"
|
|
400
|
+
},
|
|
401
|
+
"business/battlecard": {
|
|
402
|
+
"status": "READY",
|
|
403
|
+
"hasExecute": true,
|
|
404
|
+
"hasMetadata": true,
|
|
405
|
+
"depsAvailable": true,
|
|
406
|
+
"description": "Competitive battlecard generator"
|
|
407
407
|
},
|
|
408
408
|
"ai/gpu": {
|
|
409
409
|
"status": "READY",
|
|
@@ -433,6 +433,14 @@
|
|
|
433
433
|
"depsAvailable": true,
|
|
434
434
|
"description": "First-time environment setup wizard"
|
|
435
435
|
},
|
|
436
|
+
"unknown/src\\slash-commands\\categories\\system\\handlers\\doctorcommand.ts": {
|
|
437
|
+
"status": "BROKEN",
|
|
438
|
+
"error": "require is not defined in ES module scope, you can use import instead",
|
|
439
|
+
"hasExecute": false,
|
|
440
|
+
"hasMetadata": false,
|
|
441
|
+
"depsAvailable": false,
|
|
442
|
+
"description": "No description available"
|
|
443
|
+
},
|
|
436
444
|
"core/update": {
|
|
437
445
|
"status": "READY",
|
|
438
446
|
"hasExecute": true,
|
|
@@ -489,6 +497,13 @@
|
|
|
489
497
|
"depsAvailable": true,
|
|
490
498
|
"description": "Advanced memory service operations"
|
|
491
499
|
},
|
|
500
|
+
"core/enhanced-help": {
|
|
501
|
+
"status": "READY",
|
|
502
|
+
"hasExecute": true,
|
|
503
|
+
"hasMetadata": true,
|
|
504
|
+
"depsAvailable": true,
|
|
505
|
+
"description": "Advanced help system with interactive features"
|
|
506
|
+
},
|
|
492
507
|
"configuration/hooks": {
|
|
493
508
|
"status": "READY",
|
|
494
509
|
"hasExecute": true,
|
|
@@ -496,12 +511,12 @@
|
|
|
496
511
|
"depsAvailable": true,
|
|
497
512
|
"description": "Configure and manage command hooks"
|
|
498
513
|
},
|
|
499
|
-
"
|
|
514
|
+
"business/analytics": {
|
|
500
515
|
"status": "READY",
|
|
501
516
|
"hasExecute": true,
|
|
502
517
|
"hasMetadata": true,
|
|
503
518
|
"depsAvailable": true,
|
|
504
|
-
"description": "
|
|
519
|
+
"description": "Business analytics and reporting"
|
|
505
520
|
},
|
|
506
521
|
"auth/usage": {
|
|
507
522
|
"status": "READY",
|
|
@@ -523,20 +538,6 @@
|
|
|
523
538
|
"hasMetadata": true,
|
|
524
539
|
"depsAvailable": true,
|
|
525
540
|
"description": "Sign out from MARIA"
|
|
526
|
-
},
|
|
527
|
-
"auth/login": {
|
|
528
|
-
"status": "READY",
|
|
529
|
-
"hasExecute": true,
|
|
530
|
-
"hasMetadata": true,
|
|
531
|
-
"depsAvailable": true,
|
|
532
|
-
"description": "Sign in to MARIA"
|
|
533
|
-
},
|
|
534
|
-
"business/analytics": {
|
|
535
|
-
"status": "READY",
|
|
536
|
-
"hasExecute": true,
|
|
537
|
-
"hasMetadata": true,
|
|
538
|
-
"depsAvailable": true,
|
|
539
|
-
"description": "Business analytics and reporting"
|
|
540
541
|
}
|
|
541
542
|
},
|
|
542
543
|
"typoMappings": {
|
|
@@ -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
|
}
|