@rubytech/create-maxy-code 0.1.123 → 0.1.126
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/dist/index.js +49 -4
- package/package.json +2 -2
- package/payload/platform/lib/graph-style/dist/index.d.ts +78 -0
- package/payload/platform/lib/graph-style/dist/index.d.ts.map +1 -0
- package/payload/platform/lib/graph-style/dist/index.js +296 -0
- package/payload/platform/lib/graph-style/dist/index.js.map +1 -0
- package/payload/platform/lib/graph-style/src/__tests__/parity.test.ts +114 -0
- package/payload/platform/lib/graph-style/src/index.ts +307 -0
- package/payload/platform/lib/graph-style/tsconfig.json +9 -0
- package/payload/platform/lib/graph-style/vitest.config.ts +9 -0
- package/payload/platform/neo4j/schema.cypher +50 -0
- package/payload/platform/package-lock.json +318 -0
- package/payload/platform/package.json +3 -2
- package/payload/platform/plugins/.claude-plugin/marketplace.json +5 -0
- package/payload/platform/plugins/docs/references/visitor-graph.md +5 -4
- package/payload/platform/plugins/docs/references/voice-mirror-guide.md +60 -0
- package/payload/platform/plugins/email/skills/email-composition/SKILL.md +6 -2
- package/payload/platform/plugins/graph-viewer/.claude-plugin/plugin.json +8 -0
- package/payload/platform/plugins/graph-viewer/PLUGIN.md +56 -0
- package/payload/platform/plugins/graph-viewer/mcp/dist/index.d.ts +7 -0
- package/payload/platform/plugins/graph-viewer/mcp/dist/index.d.ts.map +1 -0
- package/payload/platform/plugins/graph-viewer/mcp/dist/index.js +74 -0
- package/payload/platform/plugins/graph-viewer/mcp/dist/index.js.map +1 -0
- package/payload/platform/plugins/graph-viewer/mcp/dist/lib/neo4j.d.ts +5 -0
- package/payload/platform/plugins/graph-viewer/mcp/dist/lib/neo4j.d.ts.map +1 -0
- package/payload/platform/plugins/graph-viewer/mcp/dist/lib/neo4j.js +43 -0
- package/payload/platform/plugins/graph-viewer/mcp/dist/lib/neo4j.js.map +1 -0
- package/payload/platform/plugins/graph-viewer/mcp/dist/render/draw.d.ts +28 -0
- package/payload/platform/plugins/graph-viewer/mcp/dist/render/draw.d.ts.map +1 -0
- package/payload/platform/plugins/graph-viewer/mcp/dist/render/draw.js +73 -0
- package/payload/platform/plugins/graph-viewer/mcp/dist/render/draw.js.map +1 -0
- package/payload/platform/plugins/graph-viewer/mcp/dist/render/layout.d.ts +40 -0
- package/payload/platform/plugins/graph-viewer/mcp/dist/render/layout.d.ts.map +1 -0
- package/payload/platform/plugins/graph-viewer/mcp/dist/render/layout.js +77 -0
- package/payload/platform/plugins/graph-viewer/mcp/dist/render/layout.js.map +1 -0
- package/payload/platform/plugins/graph-viewer/mcp/dist/tools/graph-render.d.ts +45 -0
- package/payload/platform/plugins/graph-viewer/mcp/dist/tools/graph-render.d.ts.map +1 -0
- package/payload/platform/plugins/graph-viewer/mcp/dist/tools/graph-render.js +170 -0
- package/payload/platform/plugins/graph-viewer/mcp/dist/tools/graph-render.js.map +1 -0
- package/payload/platform/plugins/graph-viewer/mcp/package.json +25 -0
- package/payload/platform/plugins/graph-viewer/mcp/vitest.config.ts +8 -0
- package/payload/platform/plugins/graph-viewer/skills/render-graph/SKILL.md +35 -0
- package/payload/platform/plugins/memory/mcp/dist/lib/__tests__/schema-loader.test.js +17 -0
- package/payload/platform/plugins/memory/mcp/dist/lib/__tests__/schema-loader.test.js.map +1 -1
- package/payload/platform/plugins/memory/mcp/dist/lib/schema-loader.d.ts.map +1 -1
- package/payload/platform/plugins/memory/mcp/dist/lib/schema-loader.js +11 -2
- package/payload/platform/plugins/memory/mcp/dist/lib/schema-loader.js.map +1 -1
- package/payload/platform/plugins/memory/references/schema-base.md +12 -4
- package/payload/platform/plugins/venture-studio/skills/investor-data-room/SKILL.md +2 -0
- package/payload/platform/scripts/check-plugin-tools-mcp-consistency.mjs +136 -0
- package/payload/premium-plugins/venture-studio/skills/investor-data-room/SKILL.md +2 -0
- package/payload/server/public/assets/{admin-D6IfAzYY.js → admin-FcRHAL-3.js} +7 -7
- package/payload/server/public/assets/{data-BGbQyufe.js → data-Ds37mflX.js} +1 -1
- package/payload/server/public/assets/{graph-D-1lRTeL.js → graph-CmWRhaiS.js} +1 -1
- package/payload/server/public/assets/graph-labels-Ch2r00Gt.js +1 -0
- package/payload/server/public/assets/page-BOtNny_4.js +51 -0
- package/payload/server/public/assets/page-BcHhJXUt.js +1 -0
- package/payload/server/public/data.html +3 -3
- package/payload/server/public/graph.html +3 -3
- package/payload/server/public/index.html +4 -4
- package/payload/server/public/privacy.html +2 -2
- package/payload/server/server.js +236 -92
- package/payload/server/public/assets/graph-labels-BRXJHNYE.js +0 -1
- package/payload/server/public/assets/page-B4oirCvn.js +0 -1
- package/payload/server/public/assets/page-FmJ7PIYx.js +0 -51
|
@@ -97,6 +97,10 @@
|
|
|
97
97
|
"resolved": "plugins/email/mcp",
|
|
98
98
|
"link": true
|
|
99
99
|
},
|
|
100
|
+
"node_modules/@maxy/graph-viewer": {
|
|
101
|
+
"resolved": "plugins/graph-viewer/mcp",
|
|
102
|
+
"link": true
|
|
103
|
+
},
|
|
100
104
|
"node_modules/@maxy/memory": {
|
|
101
105
|
"resolved": "plugins/memory/mcp",
|
|
102
106
|
"link": true
|
|
@@ -196,6 +200,255 @@
|
|
|
196
200
|
}
|
|
197
201
|
}
|
|
198
202
|
},
|
|
203
|
+
"node_modules/@napi-rs/canvas": {
|
|
204
|
+
"version": "0.1.100",
|
|
205
|
+
"resolved": "https://registry.npmjs.org/@napi-rs/canvas/-/canvas-0.1.100.tgz",
|
|
206
|
+
"integrity": "sha512-xglYA6q3XO5P3BNJYxVZ1IV7DLVjp1Py6nwag88YntrS+3vKHyYcMqXVS4ZztJmwz2uGvz1FWhI/4LgbR5uQDA==",
|
|
207
|
+
"license": "MIT",
|
|
208
|
+
"workspaces": [
|
|
209
|
+
"e2e/*"
|
|
210
|
+
],
|
|
211
|
+
"engines": {
|
|
212
|
+
"node": ">= 10"
|
|
213
|
+
},
|
|
214
|
+
"funding": {
|
|
215
|
+
"type": "github",
|
|
216
|
+
"url": "https://github.com/sponsors/Brooooooklyn"
|
|
217
|
+
},
|
|
218
|
+
"optionalDependencies": {
|
|
219
|
+
"@napi-rs/canvas-android-arm64": "0.1.100",
|
|
220
|
+
"@napi-rs/canvas-darwin-arm64": "0.1.100",
|
|
221
|
+
"@napi-rs/canvas-darwin-x64": "0.1.100",
|
|
222
|
+
"@napi-rs/canvas-linux-arm-gnueabihf": "0.1.100",
|
|
223
|
+
"@napi-rs/canvas-linux-arm64-gnu": "0.1.100",
|
|
224
|
+
"@napi-rs/canvas-linux-arm64-musl": "0.1.100",
|
|
225
|
+
"@napi-rs/canvas-linux-riscv64-gnu": "0.1.100",
|
|
226
|
+
"@napi-rs/canvas-linux-x64-gnu": "0.1.100",
|
|
227
|
+
"@napi-rs/canvas-linux-x64-musl": "0.1.100",
|
|
228
|
+
"@napi-rs/canvas-win32-arm64-msvc": "0.1.100",
|
|
229
|
+
"@napi-rs/canvas-win32-x64-msvc": "0.1.100"
|
|
230
|
+
}
|
|
231
|
+
},
|
|
232
|
+
"node_modules/@napi-rs/canvas-android-arm64": {
|
|
233
|
+
"version": "0.1.100",
|
|
234
|
+
"resolved": "https://registry.npmjs.org/@napi-rs/canvas-android-arm64/-/canvas-android-arm64-0.1.100.tgz",
|
|
235
|
+
"integrity": "sha512-hjhCKhntPv9+t4ckHymdx0phYNcVW+GKQR6Lzw2zE+pOVjOplSmtx9nNNknTjbEDLcuLZqA1y8ufKg1XfgftzQ==",
|
|
236
|
+
"cpu": [
|
|
237
|
+
"arm64"
|
|
238
|
+
],
|
|
239
|
+
"license": "MIT",
|
|
240
|
+
"optional": true,
|
|
241
|
+
"os": [
|
|
242
|
+
"android"
|
|
243
|
+
],
|
|
244
|
+
"engines": {
|
|
245
|
+
"node": ">= 10"
|
|
246
|
+
},
|
|
247
|
+
"funding": {
|
|
248
|
+
"type": "github",
|
|
249
|
+
"url": "https://github.com/sponsors/Brooooooklyn"
|
|
250
|
+
}
|
|
251
|
+
},
|
|
252
|
+
"node_modules/@napi-rs/canvas-darwin-arm64": {
|
|
253
|
+
"version": "0.1.100",
|
|
254
|
+
"resolved": "https://registry.npmjs.org/@napi-rs/canvas-darwin-arm64/-/canvas-darwin-arm64-0.1.100.tgz",
|
|
255
|
+
"integrity": "sha512-2PcswRaC7Ly645DGt88///zuFDhJxJYdKAs1uU3mfk1atYkXufgcgLfBpk6Tm12nCQBaNt1wpybuPZ4qOhTo8A==",
|
|
256
|
+
"cpu": [
|
|
257
|
+
"arm64"
|
|
258
|
+
],
|
|
259
|
+
"license": "MIT",
|
|
260
|
+
"optional": true,
|
|
261
|
+
"os": [
|
|
262
|
+
"darwin"
|
|
263
|
+
],
|
|
264
|
+
"engines": {
|
|
265
|
+
"node": ">= 10"
|
|
266
|
+
},
|
|
267
|
+
"funding": {
|
|
268
|
+
"type": "github",
|
|
269
|
+
"url": "https://github.com/sponsors/Brooooooklyn"
|
|
270
|
+
}
|
|
271
|
+
},
|
|
272
|
+
"node_modules/@napi-rs/canvas-darwin-x64": {
|
|
273
|
+
"version": "0.1.100",
|
|
274
|
+
"resolved": "https://registry.npmjs.org/@napi-rs/canvas-darwin-x64/-/canvas-darwin-x64-0.1.100.tgz",
|
|
275
|
+
"integrity": "sha512-ePNZtj7pNIva/siZMg+HmbeozkIjqUIYdoymH8HaA3qK7LfzFN4WMBM8G6HQ9ZC+H3+Dnn5pqtiXpgLykaPOhw==",
|
|
276
|
+
"cpu": [
|
|
277
|
+
"x64"
|
|
278
|
+
],
|
|
279
|
+
"license": "MIT",
|
|
280
|
+
"optional": true,
|
|
281
|
+
"os": [
|
|
282
|
+
"darwin"
|
|
283
|
+
],
|
|
284
|
+
"engines": {
|
|
285
|
+
"node": ">= 10"
|
|
286
|
+
},
|
|
287
|
+
"funding": {
|
|
288
|
+
"type": "github",
|
|
289
|
+
"url": "https://github.com/sponsors/Brooooooklyn"
|
|
290
|
+
}
|
|
291
|
+
},
|
|
292
|
+
"node_modules/@napi-rs/canvas-linux-arm-gnueabihf": {
|
|
293
|
+
"version": "0.1.100",
|
|
294
|
+
"resolved": "https://registry.npmjs.org/@napi-rs/canvas-linux-arm-gnueabihf/-/canvas-linux-arm-gnueabihf-0.1.100.tgz",
|
|
295
|
+
"integrity": "sha512-d5cDB48oWFGU8/XPhUOFAlySgb/VAu7D+s8fi55K1Pcfg8aPplHWqMgibhVLU8ky7Pyg/fuiVLz4Nf3JrSTuUA==",
|
|
296
|
+
"cpu": [
|
|
297
|
+
"arm"
|
|
298
|
+
],
|
|
299
|
+
"license": "MIT",
|
|
300
|
+
"optional": true,
|
|
301
|
+
"os": [
|
|
302
|
+
"linux"
|
|
303
|
+
],
|
|
304
|
+
"engines": {
|
|
305
|
+
"node": ">= 10"
|
|
306
|
+
},
|
|
307
|
+
"funding": {
|
|
308
|
+
"type": "github",
|
|
309
|
+
"url": "https://github.com/sponsors/Brooooooklyn"
|
|
310
|
+
}
|
|
311
|
+
},
|
|
312
|
+
"node_modules/@napi-rs/canvas-linux-arm64-gnu": {
|
|
313
|
+
"version": "0.1.100",
|
|
314
|
+
"resolved": "https://registry.npmjs.org/@napi-rs/canvas-linux-arm64-gnu/-/canvas-linux-arm64-gnu-0.1.100.tgz",
|
|
315
|
+
"integrity": "sha512-rDxgxRu69RvDlX/bh9o22DxLsGr8EqsNgotL9+RwQE1S0b0cqeatqsw6aW45mukm0B42DIAaAacKaYQ8cqS1nw==",
|
|
316
|
+
"cpu": [
|
|
317
|
+
"arm64"
|
|
318
|
+
],
|
|
319
|
+
"license": "MIT",
|
|
320
|
+
"optional": true,
|
|
321
|
+
"os": [
|
|
322
|
+
"linux"
|
|
323
|
+
],
|
|
324
|
+
"engines": {
|
|
325
|
+
"node": ">= 10"
|
|
326
|
+
},
|
|
327
|
+
"funding": {
|
|
328
|
+
"type": "github",
|
|
329
|
+
"url": "https://github.com/sponsors/Brooooooklyn"
|
|
330
|
+
}
|
|
331
|
+
},
|
|
332
|
+
"node_modules/@napi-rs/canvas-linux-arm64-musl": {
|
|
333
|
+
"version": "0.1.100",
|
|
334
|
+
"resolved": "https://registry.npmjs.org/@napi-rs/canvas-linux-arm64-musl/-/canvas-linux-arm64-musl-0.1.100.tgz",
|
|
335
|
+
"integrity": "sha512-K3mDW66N+xT2/V439u1alFANiBUjdEx2gLiNYnCmUsva5jZMxWTjafBYwTzYK+EMFMHrUoabuU+T1BIP5CgbYQ==",
|
|
336
|
+
"cpu": [
|
|
337
|
+
"arm64"
|
|
338
|
+
],
|
|
339
|
+
"license": "MIT",
|
|
340
|
+
"optional": true,
|
|
341
|
+
"os": [
|
|
342
|
+
"linux"
|
|
343
|
+
],
|
|
344
|
+
"engines": {
|
|
345
|
+
"node": ">= 10"
|
|
346
|
+
},
|
|
347
|
+
"funding": {
|
|
348
|
+
"type": "github",
|
|
349
|
+
"url": "https://github.com/sponsors/Brooooooklyn"
|
|
350
|
+
}
|
|
351
|
+
},
|
|
352
|
+
"node_modules/@napi-rs/canvas-linux-riscv64-gnu": {
|
|
353
|
+
"version": "0.1.100",
|
|
354
|
+
"resolved": "https://registry.npmjs.org/@napi-rs/canvas-linux-riscv64-gnu/-/canvas-linux-riscv64-gnu-0.1.100.tgz",
|
|
355
|
+
"integrity": "sha512-mooqUBTIsccZpnoQC4NgrC1v6C1vof39etLNMnBwCY+p0gajWJvAHLGQ6g/gGyS5YrpDW+GefSN4+Cvcr08UWw==",
|
|
356
|
+
"cpu": [
|
|
357
|
+
"riscv64"
|
|
358
|
+
],
|
|
359
|
+
"license": "MIT",
|
|
360
|
+
"optional": true,
|
|
361
|
+
"os": [
|
|
362
|
+
"linux"
|
|
363
|
+
],
|
|
364
|
+
"engines": {
|
|
365
|
+
"node": ">= 10"
|
|
366
|
+
},
|
|
367
|
+
"funding": {
|
|
368
|
+
"type": "github",
|
|
369
|
+
"url": "https://github.com/sponsors/Brooooooklyn"
|
|
370
|
+
}
|
|
371
|
+
},
|
|
372
|
+
"node_modules/@napi-rs/canvas-linux-x64-gnu": {
|
|
373
|
+
"version": "0.1.100",
|
|
374
|
+
"resolved": "https://registry.npmjs.org/@napi-rs/canvas-linux-x64-gnu/-/canvas-linux-x64-gnu-0.1.100.tgz",
|
|
375
|
+
"integrity": "sha512-1eCvkDCazm7FFhsT7DfGOdSaHgZVK3bt/dSBl5EWHOWmnz+I7j8tPseJqqD81NF+MH21jKUK4wQSDjN0mdhnTg==",
|
|
376
|
+
"cpu": [
|
|
377
|
+
"x64"
|
|
378
|
+
],
|
|
379
|
+
"license": "MIT",
|
|
380
|
+
"optional": true,
|
|
381
|
+
"os": [
|
|
382
|
+
"linux"
|
|
383
|
+
],
|
|
384
|
+
"engines": {
|
|
385
|
+
"node": ">= 10"
|
|
386
|
+
},
|
|
387
|
+
"funding": {
|
|
388
|
+
"type": "github",
|
|
389
|
+
"url": "https://github.com/sponsors/Brooooooklyn"
|
|
390
|
+
}
|
|
391
|
+
},
|
|
392
|
+
"node_modules/@napi-rs/canvas-linux-x64-musl": {
|
|
393
|
+
"version": "0.1.100",
|
|
394
|
+
"resolved": "https://registry.npmjs.org/@napi-rs/canvas-linux-x64-musl/-/canvas-linux-x64-musl-0.1.100.tgz",
|
|
395
|
+
"integrity": "sha512-20arT6lnI19S68qNlii73TSEDbECNgzMz2EpldC1V3mZFuRkeujXkcebRk0LRJe9SEUAooYiLokfMViY8IX7yA==",
|
|
396
|
+
"cpu": [
|
|
397
|
+
"x64"
|
|
398
|
+
],
|
|
399
|
+
"license": "MIT",
|
|
400
|
+
"optional": true,
|
|
401
|
+
"os": [
|
|
402
|
+
"linux"
|
|
403
|
+
],
|
|
404
|
+
"engines": {
|
|
405
|
+
"node": ">= 10"
|
|
406
|
+
},
|
|
407
|
+
"funding": {
|
|
408
|
+
"type": "github",
|
|
409
|
+
"url": "https://github.com/sponsors/Brooooooklyn"
|
|
410
|
+
}
|
|
411
|
+
},
|
|
412
|
+
"node_modules/@napi-rs/canvas-win32-arm64-msvc": {
|
|
413
|
+
"version": "0.1.100",
|
|
414
|
+
"resolved": "https://registry.npmjs.org/@napi-rs/canvas-win32-arm64-msvc/-/canvas-win32-arm64-msvc-0.1.100.tgz",
|
|
415
|
+
"integrity": "sha512-DZFFT1wIAg37LJw37yhMRFfjATd3vTQzjZ1Yki8u2vhO6Hi5VE6BVaGQ1aaDu7xb4iMErz+9EOwjpS7xcxFeBw==",
|
|
416
|
+
"cpu": [
|
|
417
|
+
"arm64"
|
|
418
|
+
],
|
|
419
|
+
"license": "MIT",
|
|
420
|
+
"optional": true,
|
|
421
|
+
"os": [
|
|
422
|
+
"win32"
|
|
423
|
+
],
|
|
424
|
+
"engines": {
|
|
425
|
+
"node": ">= 10"
|
|
426
|
+
},
|
|
427
|
+
"funding": {
|
|
428
|
+
"type": "github",
|
|
429
|
+
"url": "https://github.com/sponsors/Brooooooklyn"
|
|
430
|
+
}
|
|
431
|
+
},
|
|
432
|
+
"node_modules/@napi-rs/canvas-win32-x64-msvc": {
|
|
433
|
+
"version": "0.1.100",
|
|
434
|
+
"resolved": "https://registry.npmjs.org/@napi-rs/canvas-win32-x64-msvc/-/canvas-win32-x64-msvc-0.1.100.tgz",
|
|
435
|
+
"integrity": "sha512-MyT1j3mHC2+Lu4pBi9mKyMJhtP6U7k7EldY7sj/uS5gJA65gTXt8MefJQXLJo5d/vZbuWmfxzkEUNc/urV3pHA==",
|
|
436
|
+
"cpu": [
|
|
437
|
+
"x64"
|
|
438
|
+
],
|
|
439
|
+
"license": "MIT",
|
|
440
|
+
"optional": true,
|
|
441
|
+
"os": [
|
|
442
|
+
"win32"
|
|
443
|
+
],
|
|
444
|
+
"engines": {
|
|
445
|
+
"node": ">= 10"
|
|
446
|
+
},
|
|
447
|
+
"funding": {
|
|
448
|
+
"type": "github",
|
|
449
|
+
"url": "https://github.com/sponsors/Brooooooklyn"
|
|
450
|
+
}
|
|
451
|
+
},
|
|
199
452
|
"node_modules/@napi-rs/wasm-runtime": {
|
|
200
453
|
"version": "1.1.4",
|
|
201
454
|
"resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.4.tgz",
|
|
@@ -524,6 +777,13 @@
|
|
|
524
777
|
"assertion-error": "^2.0.1"
|
|
525
778
|
}
|
|
526
779
|
},
|
|
780
|
+
"node_modules/@types/d3-force": {
|
|
781
|
+
"version": "3.0.10",
|
|
782
|
+
"resolved": "https://registry.npmjs.org/@types/d3-force/-/d3-force-3.0.10.tgz",
|
|
783
|
+
"integrity": "sha512-ZYeSaCF3p73RdOKcjj+swRlZfnYpK1EbaDiYICEEp5Q6sUiqFaFQ9qgoshp5CzIyyb/yD09kD9o2zEltCexlgw==",
|
|
784
|
+
"dev": true,
|
|
785
|
+
"license": "MIT"
|
|
786
|
+
},
|
|
527
787
|
"node_modules/@types/deep-eql": {
|
|
528
788
|
"version": "4.0.2",
|
|
529
789
|
"resolved": "https://registry.npmjs.org/@types/deep-eql/-/deep-eql-4.0.2.tgz",
|
|
@@ -1038,6 +1298,47 @@
|
|
|
1038
1298
|
"node": ">= 8"
|
|
1039
1299
|
}
|
|
1040
1300
|
},
|
|
1301
|
+
"node_modules/d3-dispatch": {
|
|
1302
|
+
"version": "3.0.1",
|
|
1303
|
+
"resolved": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-3.0.1.tgz",
|
|
1304
|
+
"integrity": "sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==",
|
|
1305
|
+
"license": "ISC",
|
|
1306
|
+
"engines": {
|
|
1307
|
+
"node": ">=12"
|
|
1308
|
+
}
|
|
1309
|
+
},
|
|
1310
|
+
"node_modules/d3-force": {
|
|
1311
|
+
"version": "3.0.0",
|
|
1312
|
+
"resolved": "https://registry.npmjs.org/d3-force/-/d3-force-3.0.0.tgz",
|
|
1313
|
+
"integrity": "sha512-zxV/SsA+U4yte8051P4ECydjD/S+qeYtnaIyAs9tgHCqfguma/aAQDjo85A9Z6EKhBirHRJHXIgJUlffT4wdLg==",
|
|
1314
|
+
"license": "ISC",
|
|
1315
|
+
"dependencies": {
|
|
1316
|
+
"d3-dispatch": "1 - 3",
|
|
1317
|
+
"d3-quadtree": "1 - 3",
|
|
1318
|
+
"d3-timer": "1 - 3"
|
|
1319
|
+
},
|
|
1320
|
+
"engines": {
|
|
1321
|
+
"node": ">=12"
|
|
1322
|
+
}
|
|
1323
|
+
},
|
|
1324
|
+
"node_modules/d3-quadtree": {
|
|
1325
|
+
"version": "3.0.1",
|
|
1326
|
+
"resolved": "https://registry.npmjs.org/d3-quadtree/-/d3-quadtree-3.0.1.tgz",
|
|
1327
|
+
"integrity": "sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw==",
|
|
1328
|
+
"license": "ISC",
|
|
1329
|
+
"engines": {
|
|
1330
|
+
"node": ">=12"
|
|
1331
|
+
}
|
|
1332
|
+
},
|
|
1333
|
+
"node_modules/d3-timer": {
|
|
1334
|
+
"version": "3.0.1",
|
|
1335
|
+
"resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz",
|
|
1336
|
+
"integrity": "sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==",
|
|
1337
|
+
"license": "ISC",
|
|
1338
|
+
"engines": {
|
|
1339
|
+
"node": ">=12"
|
|
1340
|
+
}
|
|
1341
|
+
},
|
|
1041
1342
|
"node_modules/debug": {
|
|
1042
1343
|
"version": "4.4.3",
|
|
1043
1344
|
"resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
|
|
@@ -3410,6 +3711,23 @@
|
|
|
3410
3711
|
"typescript": "^5.7.0"
|
|
3411
3712
|
}
|
|
3412
3713
|
},
|
|
3714
|
+
"plugins/graph-viewer/mcp": {
|
|
3715
|
+
"name": "@maxy/graph-viewer",
|
|
3716
|
+
"version": "0.1.0",
|
|
3717
|
+
"dependencies": {
|
|
3718
|
+
"@modelcontextprotocol/sdk": "^1.12.1",
|
|
3719
|
+
"@napi-rs/canvas": "^0.1.56",
|
|
3720
|
+
"d3-force": "^3.0.0",
|
|
3721
|
+
"neo4j-driver": "^5.28.1",
|
|
3722
|
+
"zod": "^3.23.0"
|
|
3723
|
+
},
|
|
3724
|
+
"devDependencies": {
|
|
3725
|
+
"@types/d3-force": "^3.0.10",
|
|
3726
|
+
"@types/node": "^22.0.0",
|
|
3727
|
+
"typescript": "^5.7.0",
|
|
3728
|
+
"vitest": "^4.1.2"
|
|
3729
|
+
}
|
|
3730
|
+
},
|
|
3413
3731
|
"plugins/memory/mcp": {
|
|
3414
3732
|
"name": "@maxy/memory",
|
|
3415
3733
|
"version": "0.1.0",
|
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
"services/*"
|
|
7
7
|
],
|
|
8
8
|
"scripts": {
|
|
9
|
-
"build": "tsc -p lib/models/tsconfig.json && tsc -p lib/oauth-llm/tsconfig.json && tsc -p lib/mcp-stderr-tee/tsconfig.json && tsc -p lib/mcp-spawn-tee/tsconfig.json && tsc -p lib/mcp-eager/tsconfig.json && tsc -p lib/account-enumeration/tsconfig.json && tsc -p lib/graph-write/tsconfig.json && tsc -p lib/graph-mcp/tsconfig.json && tsc -p lib/graph-trash/tsconfig.json && tsc -p lib/admin-conversation-purge/tsconfig.json && tsc -p lib/graph-search/tsconfig.json && tsc -p lib/screening-patterns/tsconfig.json && tsc -p lib/device-url/tsconfig.json && tsc -p lib/brand-templating/tsconfig.json && tsc -p lib/entitlement/tsconfig.json && tsc -p lib/task-secrets/tsconfig.json && tsc -p lib/admins-write/tsconfig.json && tsc -p lib/persistent-components/tsconfig.json && tsc -p lib/require-port-env/tsconfig.json && tsc -p services/claude-session-manager/tsconfig.json && NODE_OPTIONS='--max-old-space-size=8192' tsc -b plugins/*/mcp/tsconfig.json",
|
|
10
|
-
"build:lib": "tsc -p lib/models/tsconfig.json && tsc -p lib/oauth-llm/tsconfig.json && tsc -p lib/mcp-stderr-tee/tsconfig.json && tsc -p lib/mcp-spawn-tee/tsconfig.json && tsc -p lib/mcp-eager/tsconfig.json && tsc -p lib/account-enumeration/tsconfig.json && tsc -p lib/graph-write/tsconfig.json && tsc -p lib/graph-mcp/tsconfig.json && tsc -p lib/graph-trash/tsconfig.json && tsc -p lib/admin-conversation-purge/tsconfig.json && tsc -p lib/graph-search/tsconfig.json && tsc -p lib/screening-patterns/tsconfig.json && tsc -p lib/device-url/tsconfig.json && tsc -p lib/brand-templating/tsconfig.json && tsc -p lib/entitlement/tsconfig.json && tsc -p lib/task-secrets/tsconfig.json && tsc -p lib/admins-write/tsconfig.json && tsc -p lib/persistent-components/tsconfig.json && tsc -p lib/require-port-env/tsconfig.json",
|
|
9
|
+
"build": "tsc -p lib/models/tsconfig.json && tsc -p lib/oauth-llm/tsconfig.json && tsc -p lib/mcp-stderr-tee/tsconfig.json && tsc -p lib/mcp-spawn-tee/tsconfig.json && tsc -p lib/mcp-eager/tsconfig.json && tsc -p lib/account-enumeration/tsconfig.json && tsc -p lib/graph-write/tsconfig.json && tsc -p lib/graph-mcp/tsconfig.json && tsc -p lib/graph-trash/tsconfig.json && tsc -p lib/admin-conversation-purge/tsconfig.json && tsc -p lib/graph-search/tsconfig.json && tsc -p lib/graph-style/tsconfig.json && tsc -p lib/screening-patterns/tsconfig.json && tsc -p lib/device-url/tsconfig.json && tsc -p lib/brand-templating/tsconfig.json && tsc -p lib/entitlement/tsconfig.json && tsc -p lib/task-secrets/tsconfig.json && tsc -p lib/admins-write/tsconfig.json && tsc -p lib/persistent-components/tsconfig.json && tsc -p lib/require-port-env/tsconfig.json && tsc -p services/claude-session-manager/tsconfig.json && NODE_OPTIONS='--max-old-space-size=8192' tsc -b plugins/*/mcp/tsconfig.json",
|
|
10
|
+
"build:lib": "tsc -p lib/models/tsconfig.json && tsc -p lib/oauth-llm/tsconfig.json && tsc -p lib/mcp-stderr-tee/tsconfig.json && tsc -p lib/mcp-spawn-tee/tsconfig.json && tsc -p lib/mcp-eager/tsconfig.json && tsc -p lib/account-enumeration/tsconfig.json && tsc -p lib/graph-write/tsconfig.json && tsc -p lib/graph-mcp/tsconfig.json && tsc -p lib/graph-trash/tsconfig.json && tsc -p lib/admin-conversation-purge/tsconfig.json && tsc -p lib/graph-search/tsconfig.json && tsc -p lib/graph-style/tsconfig.json && tsc -p lib/screening-patterns/tsconfig.json && tsc -p lib/device-url/tsconfig.json && tsc -p lib/brand-templating/tsconfig.json && tsc -p lib/entitlement/tsconfig.json && tsc -p lib/task-secrets/tsconfig.json && tsc -p lib/admins-write/tsconfig.json && tsc -p lib/persistent-components/tsconfig.json && tsc -p lib/require-port-env/tsconfig.json",
|
|
11
11
|
"build:memory": "tsc -p plugins/memory/mcp/tsconfig.json",
|
|
12
12
|
"build:contacts": "tsc -p plugins/contacts/mcp/tsconfig.json",
|
|
13
13
|
"build:telegram": "tsc -p plugins/telegram/mcp/tsconfig.json",
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"build:workflows": "tsc -p plugins/workflows/mcp/tsconfig.json",
|
|
20
20
|
"build:stubs": "tsc -p plugins/scheduling/mcp/tsconfig.json",
|
|
21
21
|
"build:replicate": "tsc -p plugins/replicate/mcp/tsconfig.json",
|
|
22
|
+
"build:graph-viewer": "tsc -p plugins/graph-viewer/mcp/tsconfig.json",
|
|
22
23
|
"build:claude-session-manager": "tsc -p services/claude-session-manager/tsconfig.json"
|
|
23
24
|
}
|
|
24
25
|
}
|
|
@@ -50,17 +50,18 @@ All under the `real-agent-buyers` plugin, admin-side only:
|
|
|
50
50
|
| `visitor-recent-by-person` | Recent sessions for a known `:Person` (morning round, 1:1 prep). |
|
|
51
51
|
| `visitor-recent-by-page` | Recent visitors of a given listing slug or URL. |
|
|
52
52
|
| `visitor-engagement-score` | Engagement-ranked `:Person` list (nurture queue). |
|
|
53
|
-
| `visitor-recommendation-ctr` | Graph-backed CTR over a window
|
|
53
|
+
| `visitor-recommendation-ctr` | Graph-backed CTR over a window, joined from `:Recommendation` and `:Click` nodes. |
|
|
54
54
|
| `visitor-session-detail` | Full event timeline for one `:Session`. |
|
|
55
55
|
| `visitor-event-ingest` | Admin companion to `POST /v/event` for test harness work. |
|
|
56
|
-
| `visitor-backfill-from-logs` | One-shot importer: parses `[property-recommended]` and `[property-card-click]` log lines
|
|
56
|
+
| `visitor-backfill-from-logs` | One-shot importer: parses `[property-recommended]` and `[property-card-click]` log lines into the graph; used to recover late-arriving sessions and for ad-hoc forensics. |
|
|
57
|
+
| `mint-visitor-token` | Mints a signed token bound to a `:Person` for outbound URLs in `morning-round`, `lead-nurturing`, `vendor-updates`. Returns `{ token, expiryMs }`; the agent appends `&v=<token>` to `/listings/<slug>/click?session=<sk>`. Same secret file as the UI server; both processes share it via the wx-create pattern. (Task 362) |
|
|
57
58
|
|
|
58
59
|
## Privacy
|
|
59
60
|
|
|
60
61
|
The full description is at `/privacy` on every brand domain. Highlights:
|
|
61
62
|
|
|
62
63
|
- First-party cookie only, no third-party scripts.
|
|
63
|
-
-
|
|
64
|
+
- Retention is erasure-on-request, not time-based; visit data persists until a `:Person` is erased.
|
|
64
65
|
- Right-to-erasure cascades through `contact-erase`: `:Session`, every `:HAS_EVENT` child, and any owned `:AnonVisitor` are removed when the `:Person` is erased. `:Page` and `:Listing` are content metadata and intentionally preserved.
|
|
65
66
|
|
|
66
67
|
## Verification
|
|
@@ -70,7 +71,7 @@ Quick checks the operator can run after deployment:
|
|
|
70
71
|
1. Load a published listing page; grep `[visitor-event] type=pageview` in `server.log` within 1s.
|
|
71
72
|
2. Scroll past 50%; grep `[visitor-event] type=scroll depth=50`.
|
|
72
73
|
3. Click an element marked `data-track="floorplan"`; grep `[visitor-event] type=click label=floorplan`.
|
|
73
|
-
4. Run `visitor-backfill-from-logs` over
|
|
74
|
+
4. Run `visitor-backfill-from-logs` over a log window where live writes were lost (process restart, etc.); the response reports `recWritten` and `clickWritten` counts. Subsequent runs over the same window are idempotent for `:Recommendation` and append-only for `:Click`.
|
|
74
75
|
|
|
75
76
|
## Failure signals
|
|
76
77
|
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
# Voice Mirror Guide
|
|
2
|
+
|
|
3
|
+
## What It Does
|
|
4
|
+
|
|
5
|
+
{{productName}} reads emails, posts, and documents that you wrote yourself, and uses them to make sure agent-drafted copy reads like you wrote it — not like generic AI prose.
|
|
6
|
+
|
|
7
|
+
Anthropic models cannot be fine-tuned. Voice mirror works by feeding the model two things alongside every drafting task:
|
|
8
|
+
|
|
9
|
+
- A **style card** distilled from your own writing — sentence length, register, favourite phrases, things you never say.
|
|
10
|
+
- A handful of **exemplars** — actual paragraphs you wrote, picked for relevance to the current draft.
|
|
11
|
+
|
|
12
|
+
The model conditions on both and produces copy that reads as yours.
|
|
13
|
+
|
|
14
|
+
## Setup
|
|
15
|
+
|
|
16
|
+
### 1. Tell {{productName}} what you wrote
|
|
17
|
+
|
|
18
|
+
Voice mirror only learns from content you genuinely authored. Everything else stays unknown until you say otherwise.
|
|
19
|
+
|
|
20
|
+
In the admin chat, ask: **"Start the voice-mirror backfill."**
|
|
21
|
+
|
|
22
|
+
{{productName}} asks which stream to backfill first — discrete documents (emails, posts, PDFs) or chat archives (WhatsApp, Telegram, etc.). **Pick chat archives first if you have any imported.** Chat is where your unguarded voice lives; email is the same voice in dress clothes.
|
|
23
|
+
|
|
24
|
+
- **Chat archives** — tag a whole conversation in one click. {{productName}} doesn't ask about individual messages because chunks within a conversation almost always share the same voice. Options per conversation: yours, mixed (multiple authors on your side — rare), or not yours (e.g. a Slack channel where you only forwarded other people's messages).
|
|
25
|
+
- **Documents and posts** — paginated 10 at a time. Tag the whole batch, a subset by number, or per-item if you want a precise label like `human-led-agent-assisted` (you wrote the content, {{productName}} polished).
|
|
26
|
+
|
|
27
|
+
Skip a batch if none qualify, or stop at any time — the next session resumes where you left off.
|
|
28
|
+
|
|
29
|
+
### 2. Distil the profile
|
|
30
|
+
|
|
31
|
+
Once you have at least ~20 `human-only` items tagged, ask: **"Build my voice profile."**
|
|
32
|
+
|
|
33
|
+
{{productName}} reads the corpus, summarises your style as a YAML card, and saves it to the graph. It picks up your sentence rhythms, the constructions you reach for, the words you avoid.
|
|
34
|
+
|
|
35
|
+
The profile re-runs automatically when your corpus grows by ≥20% or every 30 days, whichever comes first.
|
|
36
|
+
|
|
37
|
+
### 3. Done
|
|
38
|
+
|
|
39
|
+
That's it. Every agent-drafted email, social post, brochure paragraph, and prospectus section from this point conditions on your voice. You don't need to ask for it.
|
|
40
|
+
|
|
41
|
+
## Feedback Loop
|
|
42
|
+
|
|
43
|
+
When you edit an agent draft before sending — shorten a sentence, change a sign-off, swap a phrase — {{productName}} captures the edit and feeds it into the next distillation. The more you edit, the closer the voice gets.
|
|
44
|
+
|
|
45
|
+
This happens silently as part of the edit-loop in any drafting skill (email composition is the first wired surface).
|
|
46
|
+
|
|
47
|
+
## Opt-Out Per Skill
|
|
48
|
+
|
|
49
|
+
Voice mirror is on by default for every drafting skill. To opt out for one, set `voiceMirror: false` in that skill's frontmatter. The skill falls back to a neutral British business register.
|
|
50
|
+
|
|
51
|
+
## What It Won't Do
|
|
52
|
+
|
|
53
|
+
- **Blend voices** — one profile per person, no "Joel + Neo combined".
|
|
54
|
+
- **Copy public figures** — voice mirror only learns from your own writing.
|
|
55
|
+
- **Clone audio** — text only, no speech synthesis.
|
|
56
|
+
- **Guess** — content stays `unknown` until you mark it. {{productName}} never auto-classifies your historical writing.
|
|
57
|
+
|
|
58
|
+
## Status
|
|
59
|
+
|
|
60
|
+
Voice mirror shipped end-to-end. The schema, the four tools (`voice-tag-content`, `voice-distil-profile`, `voice-retrieve-conditioning`, `voice-record-feedback`), and wiring into the three live drafting surfaces (email composition, property brochures, investor data room) are all live. When no voice profile exists on the account, every drafting skill degrades gracefully — the output matches what it was before voice mirror was installed.
|
|
@@ -53,7 +53,11 @@ Before drafting, check the inbound for:
|
|
|
53
53
|
|
|
54
54
|
### 4. Retrieve voice exemplars (conditional)
|
|
55
55
|
|
|
56
|
-
|
|
56
|
+
Call `voice-retrieve-conditioning` with `format: "short"` and `topic` set to the inbound thread's subject (or, for a new outbound, the topic the operator named). The tool returns `{styleCard, exemplars[]}` — when `styleCard` is non-null, inject both the style card and the exemplar bodies into the drafting prompt before composing.
|
|
57
|
+
|
|
58
|
+
If the tool returns `{styleCard: null, exemplars: []}` (the operator has no `:VoiceProfile` yet, or the `writer-craft` plugin isn't enabled on the account), draft in a **neutral British business register** — polite, concise, no slang, no transatlantic spellings — and state explicitly in the presentation: "drafted in neutral British business voice (no voice profile on file)."
|
|
59
|
+
|
|
60
|
+
Emit narration `[email-composition] voice-mirror styleCardBytes=<n> exemplars=<k>` when conditioning was applied. Absence of the line confirms the fallback path was taken.
|
|
57
61
|
|
|
58
62
|
### 5. Draft
|
|
59
63
|
|
|
@@ -87,7 +91,7 @@ The operator may:
|
|
|
87
91
|
- **Edit verbally** ("make it shorter", "drop the second paragraph", "say yes to the price but not the timeline"). Apply the edit and re-present. Stay in the loop until approval or abandonment.
|
|
88
92
|
- **Abandon** ("never mind", "I'll do it myself"). Emit `[email-composition] send-aborted reason=operator-abandoned`. Do not send.
|
|
89
93
|
|
|
90
|
-
Every operator edit is downstream feedback for `voice-mirror
|
|
94
|
+
Every operator edit on the draft (before final approval) is downstream feedback for `voice-mirror`. After the operator approves the final send, call `voice-record-feedback` with the original agent draft and the final edited version (`skill: "email-composition"`, `brief` set to the topic/subject). The call is fire-and-forget — failure is logged but does not block the send. If the `writer-craft` plugin isn't enabled on the account the tool call is omitted; no feedback is recorded.
|
|
91
95
|
|
|
92
96
|
### 8. Send
|
|
93
97
|
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "graph-viewer",
|
|
3
|
+
"description": "Inline Neo4j subgraph renderer. Provides graph-render — a Node-side PNG renderer that walks N hops from a starting node, applies the same palette and display strings the live /graph page uses, and returns the image as an MCP image content block. Removes the device-switch otherwise required for the agent to show the operator what a subgraph looks like. Account-scoped: the tool refuses to render nodes outside the caller's accountId. Layout is d3-force with a deterministic seed; drawing is @napi-rs/canvas with a system-font fallback for labels. The fidelity contract is palette and display-string parity — node positions will differ from the live page's vis-network layout. Ships one skill: render-graph.",
|
|
4
|
+
"version": "0.1.0",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "Rubytech LLC"
|
|
7
|
+
}
|
|
8
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: graph-viewer
|
|
3
|
+
mcp:
|
|
4
|
+
command: node
|
|
5
|
+
args:
|
|
6
|
+
- ${PLATFORM_ROOT}/lib/mcp-spawn-tee/dist/index.js
|
|
7
|
+
- ${PLATFORM_ROOT}/plugins/graph-viewer/mcp/dist/index.js
|
|
8
|
+
env:
|
|
9
|
+
MCP_SPAWN_TEE_NAME: graph-viewer
|
|
10
|
+
LOG_DIR: ${LOG_DIR}
|
|
11
|
+
PLATFORM_ROOT: ${PLATFORM_ROOT}
|
|
12
|
+
ACCOUNT_ID: ${ACCOUNT_ID}
|
|
13
|
+
SESSION_ID: ${SESSION_ID}
|
|
14
|
+
mcp-manifest: skip
|
|
15
|
+
description: "Inline Neo4j subgraph renderer. Provides graph-render — a Node-side PNG renderer that walks N hops from a starting node, applies the same palette and display strings the live /graph page uses, and returns the image as an MCP image content block. Removes the device-switch otherwise required for the agent to show the operator what a subgraph looks like. Account-scoped: the tool refuses to render nodes outside the caller's accountId. Layout is d3-force with a deterministic seed; drawing is @napi-rs/canvas with a system-font fallback for labels. The fidelity contract is palette and display-string parity — node positions will differ from the live page's vis-network layout. Ships one skill: render-graph."
|
|
16
|
+
tools:
|
|
17
|
+
- name: graph-render
|
|
18
|
+
publicAllowlist: false
|
|
19
|
+
adminAllowlist: true
|
|
20
|
+
---
|
|
21
|
+
|
|
22
|
+
# graph-viewer
|
|
23
|
+
|
|
24
|
+
## What it does
|
|
25
|
+
|
|
26
|
+
A single MCP tool, `graph-render`, takes a Neo4j node ID and a hop depth and
|
|
27
|
+
returns an inline PNG of the subgraph rooted at that node. The agent
|
|
28
|
+
attaches the PNG to its reply so the operator can see the graph without
|
|
29
|
+
opening the admin UI on a different device.
|
|
30
|
+
|
|
31
|
+
## Why it exists
|
|
32
|
+
|
|
33
|
+
Before this plugin, the agent had no way to ship the operator a picture
|
|
34
|
+
of a subgraph from inside chat. Mermaid and ASCII substitutes were
|
|
35
|
+
illegible and bore no resemblance to the live `/graph` page. Operators
|
|
36
|
+
otherwise had to leave the chat surface, open the admin UI on whatever
|
|
37
|
+
device hosts it, and re-find the same subgraph by hand.
|
|
38
|
+
|
|
39
|
+
## Surface boundaries
|
|
40
|
+
|
|
41
|
+
- `graph-render` only accepts a `nodeId + hopDepth` query shape. Arbitrary
|
|
42
|
+
Cypher is not supported and is filed as a follow-up task.
|
|
43
|
+
- Pixel-equivalence with `/graph` is not a goal. The layout engine is
|
|
44
|
+
d3-force, not the live page's vis-network port; node positions will
|
|
45
|
+
differ. The colour palette, label precedence, and short-label strings
|
|
46
|
+
are shared with `/graph` via `platform/lib/graph-style/`.
|
|
47
|
+
- Subgraphs above 200 nodes return a truncation envelope alongside the
|
|
48
|
+
capped render.
|
|
49
|
+
- `:Trashed` nodes are filtered out, matching `memory-search`'s contract.
|
|
50
|
+
|
|
51
|
+
## Enabling
|
|
52
|
+
|
|
53
|
+
The plugin is auto-discovered from `platform/plugins/`. Each operator
|
|
54
|
+
account must list `graph-viewer` in its `enabledPlugins` (use the admin
|
|
55
|
+
`plugin-toggle-enabled` MCP tool) before `graph-render` appears in the
|
|
56
|
+
agent's tool surface.
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* MCP server entrypoint for the graph-viewer plugin. Registers one tool,
|
|
3
|
+
* `graph-render`, on the standard stdio transport. Account-scoping is
|
|
4
|
+
* enforced inside the tool handler against the caller-supplied accountId.
|
|
5
|
+
*/
|
|
6
|
+
export {};
|
|
7
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG"}
|