momo-ai 1.0.21 → 1.0.22

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.
Files changed (94) hide show
  1. package/.claude/skills/r2mo-rad-lain/SKILL.md +63 -374
  2. package/.trae/skills/algorithmic-art/LICENSE.txt +202 -0
  3. package/.trae/skills/algorithmic-art/SKILL.md +405 -0
  4. package/.trae/skills/algorithmic-art/templates/generator_template.js +223 -0
  5. package/.trae/skills/algorithmic-art/templates/viewer.html +599 -0
  6. package/.trae/skills/doc-coauthoring/SKILL.md +375 -0
  7. package/.trae/skills/frontend-design/LICENSE.txt +177 -0
  8. package/.trae/skills/frontend-design/SKILL.md +42 -0
  9. package/.trae/skills/r2mo-rad-lain/SKILL.md +101 -0
  10. package/README.md +9 -32
  11. package/docs/images/r2mo-lain.png +0 -0
  12. package/package.json +11 -11
  13. package/skills/r2mo-rad-domain/SKILL.md +70 -0
  14. package/src/_skill/repositories.json +9 -3
  15. package/src/_template/LAIN/.obsidian/app.json +1 -0
  16. package/src/_template/LAIN/.obsidian/appearance.json +10 -0
  17. package/src/_template/LAIN/.obsidian/community-plugins.json +7 -0
  18. package/src/_template/LAIN/.obsidian/core-plugins.json +33 -0
  19. package/src/_template/LAIN/.obsidian/plugins/dataview/main.js +20876 -0
  20. package/src/_template/LAIN/.obsidian/plugins/dataview/manifest.json +11 -0
  21. package/src/_template/LAIN/.obsidian/plugins/dataview/styles.css +141 -0
  22. package/src/_template/LAIN/.obsidian/plugins/obsidian-excalidraw-plugin/data.json +815 -0
  23. package/src/_template/LAIN/.obsidian/plugins/obsidian-excalidraw-plugin/main.js +10 -0
  24. package/src/_template/LAIN/.obsidian/plugins/obsidian-excalidraw-plugin/manifest.json +12 -0
  25. package/src/_template/LAIN/.obsidian/plugins/obsidian-excalidraw-plugin/styles.css +1 -0
  26. package/src/_template/LAIN/.obsidian/plugins/obsidian-kanban/main.js +153 -0
  27. package/src/_template/LAIN/.obsidian/plugins/obsidian-kanban/manifest.json +11 -0
  28. package/src/_template/LAIN/.obsidian/plugins/obsidian-kanban/styles.css +1 -0
  29. package/src/_template/LAIN/.obsidian/plugins/obsidian-plantuml/main.js +7732 -0
  30. package/src/_template/LAIN/.obsidian/plugins/obsidian-plantuml/manifest.json +10 -0
  31. package/src/_template/LAIN/.obsidian/plugins/obsidian-plantuml/styles.css +38 -0
  32. package/src/_template/LAIN/.obsidian/plugins/obsidian-tasks-plugin/main.js +504 -0
  33. package/src/_template/LAIN/.obsidian/plugins/obsidian-tasks-plugin/manifest.json +12 -0
  34. package/src/_template/LAIN/.obsidian/plugins/obsidian-tasks-plugin/styles.css +1 -0
  35. package/src/_template/LAIN/.obsidian/snippets/body-font.css +27 -0
  36. package/src/_template/LAIN/.obsidian/themes/Primary/manifest.json +9 -0
  37. package/src/_template/LAIN/.obsidian/themes/Primary/theme.css +3878 -0
  38. package/src/_template/LAIN/.obsidian/themes/Retro Windows/manifest.json +7 -0
  39. package/src/_template/LAIN/.obsidian/themes/Retro Windows/theme.css +582 -0
  40. package/src/_template/LAIN/.obsidian/themes/RetroOS 98/manifest.json +9 -0
  41. package/src/_template/LAIN/.obsidian/themes/RetroOS 98/theme.css +2566 -0
  42. package/src/_template/LAIN/.obsidian/types.json +28 -0
  43. package/src/_template/LAIN/.obsidian/workspace.json +184 -0
  44. package/src/_template/LAIN/AGENTS.md +170 -16
  45. package/src/_template/R2MO/domain-enhance.md +10 -0
  46. package/src/commander/app.json +13 -0
  47. package/src/commander/apply.json +13 -0
  48. package/src/commander/ask.json +6 -0
  49. package/src/commander/docs.json +13 -0
  50. package/src/commander/domain.json +19 -0
  51. package/src/commander/init.json +1 -1
  52. package/src/commander/mmr0.json +6 -0
  53. package/src/commander/mmr2.json +6 -0
  54. package/src/executor/executeApp.js +133 -0
  55. package/src/executor/{executeSkills.js → executeApply.js} +166 -302
  56. package/src/executor/executeAsk.js +274 -0
  57. package/src/executor/executeDocs.js +498 -0
  58. package/src/executor/executeDomain.js +293 -0
  59. package/src/executor/executeInit.js +159 -383
  60. package/src/executor/executeMcp.js +74 -1
  61. package/src/executor/executeMmr0.js +488 -0
  62. package/src/executor/executeMmr2.js +880 -0
  63. package/src/executor/index.js +15 -3
  64. package/src/python/r2mo_proto.py +418 -0
  65. package/src/python/r2mo_proto_database.py +369 -0
  66. package/src/python/r2mo_proto_domain.py +458 -0
  67. package/src/utils/momo-menu.js +43 -13
  68. package/.claude/skills/r2mo-rad-lain/PROMPT.md +0 -281
  69. package/.claude/skills/r2mo-rad-lain/README.md +0 -192
  70. package/.claude/skills/r2mo-rad-lain/examples/argument-parsing.js +0 -154
  71. package/.claude/skills/r2mo-rad-lain/examples/file-operations.js +0 -182
  72. package/.claude/skills/r2mo-rad-lain/file-utils-api.md +0 -281
  73. package/.claude/skills/r2mo-rad-lain/menu-api.md +0 -187
  74. package/.claude/skills/r2mo-rad-lain/scripts/file-utils.js +0 -223
  75. package/.claude/skills/r2mo-rad-lain/scripts/menu.js +0 -289
  76. package/.claude/skills/r2mo-rad-lain/scripts/yaml-parser.js +0 -209
  77. package/.claude/skills/r2mo-rad-lain/templates/command.json.template +0 -13
  78. package/.claude/skills/r2mo-rad-lain/templates/executor.js.template +0 -32
  79. package/.claude/skills/r2mo-rad-lain/templates/interactive-menu.js.template +0 -221
  80. package/src/_template/LAIN/.momo/advanced/actor.md +0 -42
  81. package/src/_template/LAIN/.momo/advanced/refer.json +0 -46
  82. package/src/_template/LAIN/.momo/scripts/submodule-clean.sh +0 -56
  83. package/src/_template/LAIN/changes/proposal.md +0 -39
  84. package/src/_template/LAIN/changes/tasks/task-detail.md +0 -45
  85. package/src/_template/LAIN/changes/tasks.md +0 -49
  86. package/src/_template/LAIN/execute/admin-n-f-dashboard.md +0 -53
  87. package/src/_template/LAIN/execute/admin-n-f-form.md +0 -51
  88. package/src/_template/LAIN/execute/admin-n-f-home.md +0 -49
  89. package/src/_template/LAIN/execute/admin-n-f-list.md +0 -52
  90. package/src/_template/LAIN/execute/admin-n-f-login.md +0 -56
  91. package/src/_template/LAIN/specification/project-model.md +0 -13
  92. package/src/_template/LAIN/specification/project.md +0 -73
  93. package/src/_template/LAIN/specification/requirement.md +0 -25
  94. package/src/commander/skills.json +0 -20
@@ -0,0 +1,815 @@
1
+ {
2
+ "disableDoubleClickTextEditing": false,
3
+ "folder": "Excalidraw",
4
+ "cropFolder": "",
5
+ "annotateFolder": "",
6
+ "embedUseExcalidrawFolder": false,
7
+ "templateFilePath": "Excalidraw/Template.excalidraw",
8
+ "scriptFolderPath": "Excalidraw/Scripts",
9
+ "fontAssetsPath": "Excalidraw/CJK Fonts",
10
+ "loadChineseFonts": false,
11
+ "loadJapaneseFonts": false,
12
+ "loadKoreanFonts": false,
13
+ "compress": true,
14
+ "decompressForMDView": false,
15
+ "onceOffCompressFlagReset": true,
16
+ "onceOffGPTVersionReset": true,
17
+ "autosave": true,
18
+ "autosaveIntervalDesktop": 60000,
19
+ "autosaveIntervalMobile": 30000,
20
+ "drawingFilenamePrefix": "Drawing ",
21
+ "drawingEmbedPrefixWithFilename": true,
22
+ "drawingFilnameEmbedPostfix": " ",
23
+ "drawingFilenameDateTime": "YYYY-MM-DD HH.mm.ss",
24
+ "useExcalidrawExtension": true,
25
+ "cropSuffix": "",
26
+ "cropPrefix": "cropped_",
27
+ "annotateSuffix": "",
28
+ "annotatePrefix": "annotated_",
29
+ "annotatePreserveSize": false,
30
+ "previewImageType": "SVGIMG",
31
+ "renderingConcurrency": 3,
32
+ "allowImageCache": true,
33
+ "allowImageCacheInScene": true,
34
+ "displayExportedImageIfAvailable": false,
35
+ "previewMatchObsidianTheme": false,
36
+ "width": "400",
37
+ "height": "",
38
+ "overrideObsidianFontSize": false,
39
+ "dynamicStyling": "colorful",
40
+ "isLeftHanded": false,
41
+ "desktopUIMode": "tray",
42
+ "tabletUIMode": "compact",
43
+ "iframeMatchExcalidrawTheme": true,
44
+ "matchTheme": false,
45
+ "matchThemeAlways": false,
46
+ "matchThemeTrigger": false,
47
+ "defaultMode": "normal",
48
+ "defaultPenMode": "never",
49
+ "penModeDoubleTapEraser": true,
50
+ "penModeSingleFingerPanning": true,
51
+ "penModeCrosshairVisible": true,
52
+ "panWithRightMouseButton": false,
53
+ "renderImageInMarkdownReadingMode": false,
54
+ "renderImageInHoverPreviewForMDNotes": false,
55
+ "renderImageInMarkdownToPDF": false,
56
+ "allowPinchZoom": false,
57
+ "allowWheelZoom": false,
58
+ "zoomToFitOnOpen": true,
59
+ "zoomToFitOnResize": false,
60
+ "zoomToFitMaxLevel": 2,
61
+ "zoomStep": 0.05,
62
+ "zoomMin": 0.1,
63
+ "zoomMax": 30,
64
+ "linkPrefix": "📍",
65
+ "urlPrefix": "🌐",
66
+ "parseTODO": false,
67
+ "todo": "☐",
68
+ "done": "🗹",
69
+ "hoverPreviewWithoutCTRL": false,
70
+ "linkOpacity": 1,
71
+ "openInAdjacentPane": true,
72
+ "showSecondOrderLinks": true,
73
+ "focusOnFileTab": true,
74
+ "openInMainWorkspace": true,
75
+ "showLinkBrackets": true,
76
+ "allowCtrlClick": true,
77
+ "forceWrap": false,
78
+ "pageTransclusionCharLimit": 200,
79
+ "wordWrappingDefault": 0,
80
+ "removeTransclusionQuoteSigns": true,
81
+ "iframelyAllowed": true,
82
+ "pngExportScale": 1,
83
+ "exportWithTheme": true,
84
+ "exportWithBackground": true,
85
+ "exportPaddingSVG": 10,
86
+ "exportEmbedScene": false,
87
+ "keepInSync": false,
88
+ "autoexportSVG": false,
89
+ "autoexportPNG": false,
90
+ "autoExportLightAndDark": false,
91
+ "autoexportExcalidraw": false,
92
+ "embedType": "excalidraw",
93
+ "embedMarkdownCommentLinks": true,
94
+ "embedWikiLink": true,
95
+ "syncExcalidraw": false,
96
+ "experimentalFileType": false,
97
+ "experimentalFileTag": "✏️",
98
+ "experimentalLivePreview": true,
99
+ "fadeOutExcalidrawMarkup": false,
100
+ "loadPropertySuggestions": false,
101
+ "experimentalEnableFourthFont": false,
102
+ "experimantalFourthFont": "Virgil",
103
+ "addDummyTextElement": false,
104
+ "zoteroCompatibility": false,
105
+ "fieldSuggester": true,
106
+ "compatibilityMode": false,
107
+ "drawingOpenCount": 0,
108
+ "library": "deprecated",
109
+ "library2": {
110
+ "type": "excalidrawlib",
111
+ "version": 2,
112
+ "source": "https://github.com/zsviczian/obsidian-excalidraw-plugin/releases/tag/2.18.0",
113
+ "libraryItems": []
114
+ },
115
+ "imageElementNotice": true,
116
+ "mdSVGwidth": 500,
117
+ "mdSVGmaxHeight": 800,
118
+ "mdFont": "Virgil",
119
+ "mdFontColor": "Black",
120
+ "mdBorderColor": "Black",
121
+ "mdCSS": "",
122
+ "scriptEngineSettings": {},
123
+ "previousRelease": "2.18.0",
124
+ "showReleaseNotes": true,
125
+ "compareManifestToPluginVersion": true,
126
+ "showNewVersionNotification": true,
127
+ "latexBoilerplate": "\\color{blue}",
128
+ "latexPreambleLocation": "preamble.sty",
129
+ "taskboneEnabled": false,
130
+ "taskboneAPIkey": "",
131
+ "pinnedScripts": [],
132
+ "customPens": [
133
+ {
134
+ "type": "default",
135
+ "freedrawOnly": false,
136
+ "strokeColor": "#000000",
137
+ "backgroundColor": "transparent",
138
+ "fillStyle": "hachure",
139
+ "strokeWidth": 0,
140
+ "roughness": 0,
141
+ "penOptions": {
142
+ "highlighter": false,
143
+ "constantPressure": false,
144
+ "hasOutline": false,
145
+ "outlineWidth": 1,
146
+ "options": {
147
+ "thinning": 0.6,
148
+ "smoothing": 0.5,
149
+ "streamline": 0.5,
150
+ "easing": "easeOutSine",
151
+ "start": {
152
+ "cap": true,
153
+ "taper": 0,
154
+ "easing": "linear"
155
+ },
156
+ "end": {
157
+ "cap": true,
158
+ "taper": 0,
159
+ "easing": "linear"
160
+ }
161
+ }
162
+ }
163
+ },
164
+ {
165
+ "type": "highlighter",
166
+ "freedrawOnly": true,
167
+ "strokeColor": "#FFC47C",
168
+ "backgroundColor": "#FFC47C",
169
+ "fillStyle": "solid",
170
+ "strokeWidth": 2,
171
+ "roughness": null,
172
+ "penOptions": {
173
+ "highlighter": true,
174
+ "constantPressure": true,
175
+ "hasOutline": true,
176
+ "outlineWidth": 4,
177
+ "options": {
178
+ "thinning": 1,
179
+ "smoothing": 0.5,
180
+ "streamline": 0.5,
181
+ "easing": "linear",
182
+ "start": {
183
+ "taper": 0,
184
+ "cap": true,
185
+ "easing": "linear"
186
+ },
187
+ "end": {
188
+ "taper": 0,
189
+ "cap": true,
190
+ "easing": "linear"
191
+ }
192
+ }
193
+ }
194
+ },
195
+ {
196
+ "type": "finetip",
197
+ "freedrawOnly": false,
198
+ "strokeColor": "#3E6F8D",
199
+ "backgroundColor": "transparent",
200
+ "fillStyle": "hachure",
201
+ "strokeWidth": 0.5,
202
+ "roughness": 0,
203
+ "penOptions": {
204
+ "highlighter": false,
205
+ "hasOutline": false,
206
+ "outlineWidth": 1,
207
+ "constantPressure": true,
208
+ "options": {
209
+ "smoothing": 0.4,
210
+ "thinning": -0.5,
211
+ "streamline": 0.4,
212
+ "easing": "linear",
213
+ "start": {
214
+ "taper": 5,
215
+ "cap": false,
216
+ "easing": "linear"
217
+ },
218
+ "end": {
219
+ "taper": 5,
220
+ "cap": false,
221
+ "easing": "linear"
222
+ }
223
+ }
224
+ }
225
+ },
226
+ {
227
+ "type": "fountain",
228
+ "freedrawOnly": false,
229
+ "strokeColor": "#000000",
230
+ "backgroundColor": "transparent",
231
+ "fillStyle": "hachure",
232
+ "strokeWidth": 2,
233
+ "roughness": 0,
234
+ "penOptions": {
235
+ "highlighter": false,
236
+ "constantPressure": false,
237
+ "hasOutline": false,
238
+ "outlineWidth": 1,
239
+ "options": {
240
+ "smoothing": 0.2,
241
+ "thinning": 0.6,
242
+ "streamline": 0.2,
243
+ "easing": "easeInOutSine",
244
+ "start": {
245
+ "taper": 150,
246
+ "cap": true,
247
+ "easing": "linear"
248
+ },
249
+ "end": {
250
+ "taper": 1,
251
+ "cap": true,
252
+ "easing": "linear"
253
+ }
254
+ }
255
+ }
256
+ },
257
+ {
258
+ "type": "marker",
259
+ "freedrawOnly": true,
260
+ "strokeColor": "#B83E3E",
261
+ "backgroundColor": "#FF7C7C",
262
+ "fillStyle": "dashed",
263
+ "strokeWidth": 2,
264
+ "roughness": 3,
265
+ "penOptions": {
266
+ "highlighter": false,
267
+ "constantPressure": true,
268
+ "hasOutline": true,
269
+ "outlineWidth": 4,
270
+ "options": {
271
+ "thinning": 1,
272
+ "smoothing": 0.5,
273
+ "streamline": 0.5,
274
+ "easing": "linear",
275
+ "start": {
276
+ "taper": 0,
277
+ "cap": true,
278
+ "easing": "linear"
279
+ },
280
+ "end": {
281
+ "taper": 0,
282
+ "cap": true,
283
+ "easing": "linear"
284
+ }
285
+ }
286
+ }
287
+ },
288
+ {
289
+ "type": "thick-thin",
290
+ "freedrawOnly": true,
291
+ "strokeColor": "#CECDCC",
292
+ "backgroundColor": "transparent",
293
+ "fillStyle": "hachure",
294
+ "strokeWidth": 0,
295
+ "roughness": null,
296
+ "penOptions": {
297
+ "highlighter": true,
298
+ "constantPressure": true,
299
+ "hasOutline": false,
300
+ "outlineWidth": 1,
301
+ "options": {
302
+ "thinning": 1,
303
+ "smoothing": 0.5,
304
+ "streamline": 0.5,
305
+ "easing": "linear",
306
+ "start": {
307
+ "taper": 0,
308
+ "cap": true,
309
+ "easing": "linear"
310
+ },
311
+ "end": {
312
+ "cap": true,
313
+ "taper": true,
314
+ "easing": "linear"
315
+ }
316
+ }
317
+ }
318
+ },
319
+ {
320
+ "type": "thin-thick-thin",
321
+ "freedrawOnly": true,
322
+ "strokeColor": "#CECDCC",
323
+ "backgroundColor": "transparent",
324
+ "fillStyle": "hachure",
325
+ "strokeWidth": 0,
326
+ "roughness": null,
327
+ "penOptions": {
328
+ "highlighter": true,
329
+ "constantPressure": true,
330
+ "hasOutline": false,
331
+ "outlineWidth": 1,
332
+ "options": {
333
+ "thinning": 1,
334
+ "smoothing": 0.5,
335
+ "streamline": 0.5,
336
+ "easing": "linear",
337
+ "start": {
338
+ "cap": true,
339
+ "taper": true,
340
+ "easing": "linear"
341
+ },
342
+ "end": {
343
+ "cap": true,
344
+ "taper": true,
345
+ "easing": "linear"
346
+ }
347
+ }
348
+ }
349
+ },
350
+ {
351
+ "type": "default",
352
+ "freedrawOnly": false,
353
+ "strokeColor": "#000000",
354
+ "backgroundColor": "transparent",
355
+ "fillStyle": "hachure",
356
+ "strokeWidth": 0,
357
+ "roughness": 0,
358
+ "penOptions": {
359
+ "highlighter": false,
360
+ "constantPressure": false,
361
+ "hasOutline": false,
362
+ "outlineWidth": 1,
363
+ "options": {
364
+ "thinning": 0.6,
365
+ "smoothing": 0.5,
366
+ "streamline": 0.5,
367
+ "easing": "easeOutSine",
368
+ "start": {
369
+ "cap": true,
370
+ "taper": 0,
371
+ "easing": "linear"
372
+ },
373
+ "end": {
374
+ "cap": true,
375
+ "taper": 0,
376
+ "easing": "linear"
377
+ }
378
+ }
379
+ }
380
+ },
381
+ {
382
+ "type": "default",
383
+ "freedrawOnly": false,
384
+ "strokeColor": "#000000",
385
+ "backgroundColor": "transparent",
386
+ "fillStyle": "hachure",
387
+ "strokeWidth": 0,
388
+ "roughness": 0,
389
+ "penOptions": {
390
+ "highlighter": false,
391
+ "constantPressure": false,
392
+ "hasOutline": false,
393
+ "outlineWidth": 1,
394
+ "options": {
395
+ "thinning": 0.6,
396
+ "smoothing": 0.5,
397
+ "streamline": 0.5,
398
+ "easing": "easeOutSine",
399
+ "start": {
400
+ "cap": true,
401
+ "taper": 0,
402
+ "easing": "linear"
403
+ },
404
+ "end": {
405
+ "cap": true,
406
+ "taper": 0,
407
+ "easing": "linear"
408
+ }
409
+ }
410
+ }
411
+ },
412
+ {
413
+ "type": "default",
414
+ "freedrawOnly": false,
415
+ "strokeColor": "#000000",
416
+ "backgroundColor": "transparent",
417
+ "fillStyle": "hachure",
418
+ "strokeWidth": 0,
419
+ "roughness": 0,
420
+ "penOptions": {
421
+ "highlighter": false,
422
+ "constantPressure": false,
423
+ "hasOutline": false,
424
+ "outlineWidth": 1,
425
+ "options": {
426
+ "thinning": 0.6,
427
+ "smoothing": 0.5,
428
+ "streamline": 0.5,
429
+ "easing": "easeOutSine",
430
+ "start": {
431
+ "cap": true,
432
+ "taper": 0,
433
+ "easing": "linear"
434
+ },
435
+ "end": {
436
+ "cap": true,
437
+ "taper": 0,
438
+ "easing": "linear"
439
+ }
440
+ }
441
+ }
442
+ }
443
+ ],
444
+ "numberOfCustomPens": 0,
445
+ "pdfScale": 4,
446
+ "pdfBorderBox": true,
447
+ "pdfFrame": false,
448
+ "pdfGapSize": 20,
449
+ "pdfGroupPages": false,
450
+ "pdfLockAfterImport": true,
451
+ "pdfNumColumns": 1,
452
+ "pdfNumRows": 1,
453
+ "pdfDirection": "right",
454
+ "pdfImportScale": 0.3,
455
+ "gridSettings": {
456
+ "DYNAMIC_COLOR": true,
457
+ "COLOR": "#000000",
458
+ "OPACITY": 50,
459
+ "GRID_DIRECTION": {
460
+ "horizontal": true,
461
+ "vertical": true
462
+ }
463
+ },
464
+ "laserSettings": {
465
+ "DECAY_LENGTH": 50,
466
+ "DECAY_TIME": 1000,
467
+ "COLOR": "#ff0000"
468
+ },
469
+ "embeddableMarkdownDefaults": {
470
+ "useObsidianDefaults": false,
471
+ "backgroundMatchCanvas": false,
472
+ "backgroundMatchElement": true,
473
+ "backgroundColor": "#fff",
474
+ "backgroundOpacity": 60,
475
+ "borderMatchElement": true,
476
+ "borderColor": "#fff",
477
+ "borderOpacity": 0,
478
+ "filenameVisible": false
479
+ },
480
+ "markdownNodeOneClickEditing": false,
481
+ "canvasImmersiveEmbed": true,
482
+ "startupScriptPath": "",
483
+ "aiEnabled": true,
484
+ "openAIAPIToken": "",
485
+ "openAIDefaultTextModel": "gpt-3.5-turbo-1106",
486
+ "openAIDefaultTextModelMaxTokens": 4096,
487
+ "openAIDefaultVisionModel": "gpt-4o",
488
+ "openAIDefaultImageGenerationModel": "dall-e-3",
489
+ "openAIURL": "https://api.openai.com/v1/chat/completions",
490
+ "openAIImageGenerationURL": "https://api.openai.com/v1/images/generations",
491
+ "openAIImageEditsURL": "https://api.openai.com/v1/images/edits",
492
+ "openAIImageVariationURL": "https://api.openai.com/v1/images/variations",
493
+ "modifierKeyConfig": {
494
+ "Mac": {
495
+ "LocalFileDragAction": {
496
+ "defaultAction": "image-import",
497
+ "rules": [
498
+ {
499
+ "shift": false,
500
+ "ctrl_cmd": false,
501
+ "alt_opt": false,
502
+ "meta_ctrl": false,
503
+ "result": "image-import"
504
+ },
505
+ {
506
+ "shift": true,
507
+ "ctrl_cmd": false,
508
+ "alt_opt": true,
509
+ "meta_ctrl": false,
510
+ "result": "link"
511
+ },
512
+ {
513
+ "shift": true,
514
+ "ctrl_cmd": false,
515
+ "alt_opt": false,
516
+ "meta_ctrl": false,
517
+ "result": "image-url"
518
+ },
519
+ {
520
+ "shift": false,
521
+ "ctrl_cmd": false,
522
+ "alt_opt": true,
523
+ "meta_ctrl": false,
524
+ "result": "embeddable"
525
+ }
526
+ ]
527
+ },
528
+ "WebBrowserDragAction": {
529
+ "defaultAction": "image-url",
530
+ "rules": [
531
+ {
532
+ "shift": false,
533
+ "ctrl_cmd": false,
534
+ "alt_opt": false,
535
+ "meta_ctrl": false,
536
+ "result": "image-url"
537
+ },
538
+ {
539
+ "shift": true,
540
+ "ctrl_cmd": false,
541
+ "alt_opt": true,
542
+ "meta_ctrl": false,
543
+ "result": "link"
544
+ },
545
+ {
546
+ "shift": false,
547
+ "ctrl_cmd": false,
548
+ "alt_opt": true,
549
+ "meta_ctrl": false,
550
+ "result": "embeddable"
551
+ },
552
+ {
553
+ "shift": true,
554
+ "ctrl_cmd": false,
555
+ "alt_opt": false,
556
+ "meta_ctrl": false,
557
+ "result": "image-import"
558
+ }
559
+ ]
560
+ },
561
+ "InternalDragAction": {
562
+ "defaultAction": "link",
563
+ "rules": [
564
+ {
565
+ "shift": false,
566
+ "ctrl_cmd": false,
567
+ "alt_opt": false,
568
+ "meta_ctrl": false,
569
+ "result": "link"
570
+ },
571
+ {
572
+ "shift": false,
573
+ "ctrl_cmd": false,
574
+ "alt_opt": false,
575
+ "meta_ctrl": true,
576
+ "result": "embeddable"
577
+ },
578
+ {
579
+ "shift": true,
580
+ "ctrl_cmd": false,
581
+ "alt_opt": false,
582
+ "meta_ctrl": false,
583
+ "result": "image"
584
+ },
585
+ {
586
+ "shift": true,
587
+ "ctrl_cmd": false,
588
+ "alt_opt": false,
589
+ "meta_ctrl": true,
590
+ "result": "image-fullsize"
591
+ }
592
+ ]
593
+ },
594
+ "LinkClickAction": {
595
+ "defaultAction": "new-tab",
596
+ "rules": [
597
+ {
598
+ "shift": false,
599
+ "ctrl_cmd": false,
600
+ "alt_opt": false,
601
+ "meta_ctrl": false,
602
+ "result": "active-pane"
603
+ },
604
+ {
605
+ "shift": false,
606
+ "ctrl_cmd": true,
607
+ "alt_opt": false,
608
+ "meta_ctrl": false,
609
+ "result": "new-tab"
610
+ },
611
+ {
612
+ "shift": false,
613
+ "ctrl_cmd": true,
614
+ "alt_opt": true,
615
+ "meta_ctrl": false,
616
+ "result": "new-pane"
617
+ },
618
+ {
619
+ "shift": true,
620
+ "ctrl_cmd": true,
621
+ "alt_opt": true,
622
+ "meta_ctrl": false,
623
+ "result": "popout-window"
624
+ },
625
+ {
626
+ "shift": false,
627
+ "ctrl_cmd": true,
628
+ "alt_opt": false,
629
+ "meta_ctrl": true,
630
+ "result": "md-properties"
631
+ }
632
+ ]
633
+ }
634
+ },
635
+ "Win": {
636
+ "LocalFileDragAction": {
637
+ "defaultAction": "image-import",
638
+ "rules": [
639
+ {
640
+ "shift": false,
641
+ "ctrl_cmd": false,
642
+ "alt_opt": false,
643
+ "meta_ctrl": false,
644
+ "result": "image-import"
645
+ },
646
+ {
647
+ "shift": false,
648
+ "ctrl_cmd": true,
649
+ "alt_opt": false,
650
+ "meta_ctrl": false,
651
+ "result": "link"
652
+ },
653
+ {
654
+ "shift": true,
655
+ "ctrl_cmd": false,
656
+ "alt_opt": false,
657
+ "meta_ctrl": false,
658
+ "result": "image-url"
659
+ },
660
+ {
661
+ "shift": true,
662
+ "ctrl_cmd": true,
663
+ "alt_opt": false,
664
+ "meta_ctrl": false,
665
+ "result": "embeddable"
666
+ }
667
+ ]
668
+ },
669
+ "WebBrowserDragAction": {
670
+ "defaultAction": "image-url",
671
+ "rules": [
672
+ {
673
+ "shift": false,
674
+ "ctrl_cmd": false,
675
+ "alt_opt": false,
676
+ "meta_ctrl": false,
677
+ "result": "image-url"
678
+ },
679
+ {
680
+ "shift": false,
681
+ "ctrl_cmd": true,
682
+ "alt_opt": false,
683
+ "meta_ctrl": false,
684
+ "result": "link"
685
+ },
686
+ {
687
+ "shift": true,
688
+ "ctrl_cmd": true,
689
+ "alt_opt": false,
690
+ "meta_ctrl": false,
691
+ "result": "embeddable"
692
+ },
693
+ {
694
+ "shift": true,
695
+ "ctrl_cmd": false,
696
+ "alt_opt": false,
697
+ "meta_ctrl": false,
698
+ "result": "image-import"
699
+ }
700
+ ]
701
+ },
702
+ "InternalDragAction": {
703
+ "defaultAction": "link",
704
+ "rules": [
705
+ {
706
+ "shift": false,
707
+ "ctrl_cmd": false,
708
+ "alt_opt": false,
709
+ "meta_ctrl": false,
710
+ "result": "link"
711
+ },
712
+ {
713
+ "shift": true,
714
+ "ctrl_cmd": true,
715
+ "alt_opt": false,
716
+ "meta_ctrl": false,
717
+ "result": "embeddable"
718
+ },
719
+ {
720
+ "shift": true,
721
+ "ctrl_cmd": false,
722
+ "alt_opt": false,
723
+ "meta_ctrl": false,
724
+ "result": "image"
725
+ },
726
+ {
727
+ "shift": false,
728
+ "ctrl_cmd": true,
729
+ "alt_opt": true,
730
+ "meta_ctrl": false,
731
+ "result": "image-fullsize"
732
+ }
733
+ ]
734
+ },
735
+ "LinkClickAction": {
736
+ "defaultAction": "new-tab",
737
+ "rules": [
738
+ {
739
+ "shift": false,
740
+ "ctrl_cmd": false,
741
+ "alt_opt": false,
742
+ "meta_ctrl": false,
743
+ "result": "active-pane"
744
+ },
745
+ {
746
+ "shift": false,
747
+ "ctrl_cmd": true,
748
+ "alt_opt": false,
749
+ "meta_ctrl": false,
750
+ "result": "new-tab"
751
+ },
752
+ {
753
+ "shift": false,
754
+ "ctrl_cmd": true,
755
+ "alt_opt": true,
756
+ "meta_ctrl": false,
757
+ "result": "new-pane"
758
+ },
759
+ {
760
+ "shift": true,
761
+ "ctrl_cmd": true,
762
+ "alt_opt": true,
763
+ "meta_ctrl": false,
764
+ "result": "popout-window"
765
+ },
766
+ {
767
+ "shift": false,
768
+ "ctrl_cmd": true,
769
+ "alt_opt": false,
770
+ "meta_ctrl": true,
771
+ "result": "md-properties"
772
+ }
773
+ ]
774
+ }
775
+ }
776
+ },
777
+ "slidingPanesSupport": false,
778
+ "areaZoomLimit": 1,
779
+ "longPressDesktop": 500,
780
+ "longPressMobile": 500,
781
+ "doubleClickLinkOpenViewMode": true,
782
+ "isDebugMode": false,
783
+ "rank": "Bronze",
784
+ "modifierKeyOverrides": [
785
+ {
786
+ "modifiers": [
787
+ "Mod"
788
+ ],
789
+ "key": "Enter"
790
+ },
791
+ {
792
+ "modifiers": [
793
+ "Mod"
794
+ ],
795
+ "key": "k"
796
+ },
797
+ {
798
+ "modifiers": [
799
+ "Mod"
800
+ ],
801
+ "key": "G"
802
+ }
803
+ ],
804
+ "showSplashscreen": true,
805
+ "pdfSettings": {
806
+ "pageSize": "A4",
807
+ "pageOrientation": "portrait",
808
+ "fitToPage": 1,
809
+ "paperColor": "white",
810
+ "customPaperColor": "#ffffff",
811
+ "alignment": "center",
812
+ "margin": "normal"
813
+ },
814
+ "disableContextMenu": false
815
+ }