-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcatalog.json
More file actions
1471 lines (1471 loc) · 46.1 KB
/
Copy pathcatalog.json
File metadata and controls
1471 lines (1471 loc) · 46.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"schema": 1,
"updated": "2026-07-19",
"note": "Web registry of Mobius App Store catalog entries. The store fetches this at mount (via the server proxy) so a new app appears in every instance's store the moment this file lands on main — no store-app redeploy. constants.js CATALOG is the baked fallback used only if this fetch fails; keep the two in sync. Each entry: { id, repo, manifest_url, raw_base, categories?, keywords?, capabilities?, setup?, manifest? }. manifest is an optional validated summary/full manifest used for fast first paint; missing or invalid manifests fall back to fetching manifest_url. setup marks apps that need system or in-app configuration before their agent/scheduled features are useful. categories/keywords/capabilities are intentionally machine-readable so agents can search existing apps before building or remixing.",
"apps": [
{
"id": "memory",
"name": "Memory",
"description": "Build and retrieve an optional graph of durable facts without injecting it into every chat.",
"repo": "mobius-os/app-memory",
"manifest_url": "https://raw.githubusercontent.com/mobius-os/app-memory/main/mobius.json",
"raw_base": "https://raw.githubusercontent.com/mobius-os/app-memory/main/",
"categories": [
"system",
"agents"
],
"keywords": [
"memory graph",
"memory maintenance",
"on-demand recall",
"scheduled consolidation",
"notes",
"knowledge base",
"agent context"
],
"capabilities": [
"retrieve memories on demand",
"browse memory graph",
"scheduled memory consolidation"
],
"setup": {
"required": true,
"scope": "system",
"section": "background-agents",
"label": "Background agent",
"description": "Connect at least one AI provider and set a primary/fallback background model in Möbius Settings so Memory can run its scheduled consolidation.",
"fields": [
"provider",
"model",
"fallback"
]
},
"manifest": {
"id": "memory",
"name": "Memory",
"version": "2.1.5",
"description": "Build and retrieve an optional graph of durable facts without injecting it into every chat.",
"author": "mobius-os",
"license": "MIT",
"homepage": "https://github.com/mobius-os/app-memory",
"entry": "index.jsx",
"system_app": true,
"system_prompt": "memory-core.md",
"skills": [
"memory.md"
],
"icon": "icon.png",
"offline_capable": true,
"offline": {
"reads": true,
"writes": "none",
"execution": "partial"
},
"permissions": {
"cross_app_access": "none",
"share_with_apps": "none",
"shared_memory": "write",
"chat_log_access": "summary",
"background_agent": true
},
"storage_seeds": {
"settings.json": {
"primary_agent_mode": "system",
"provider": null,
"model": null,
"secondary_agent_mode": "system",
"fallback_provider": null,
"fallback_model": null
}
},
"schedule": {
"default": "30 5 * * *",
"user_configurable": true,
"job": "fetch.sh",
"initialize_on_install": true
},
"runtime": {
"imports": [
"react",
"react-dom",
"marked",
"dompurify"
],
"esm_deps": [
"d3",
"pixi.js"
]
},
"embeds_agent": false,
"source_files": [
"memory-core.md",
"memory.md",
"memory_search.py",
"memory_runner.py",
"memory_store.py",
"memory_graph.py",
"constants.js",
"theme.js",
"domain.js",
"storage.js",
"graph/render.jsx",
"ui/Th.jsx",
"ui/ImportanceDots.jsx",
"ui/EmptyConstellation.jsx",
"ui/GraphGlyph.jsx",
"ui/ListGlyph.jsx",
"ui/ChatGlyph.jsx",
"ui/TextGlyph.jsx",
"ui/NetworkGlyph.jsx",
"ui/EffortStepper.jsx",
"ui/ModelPicker.jsx",
"seed-memory/index.md",
"seed-memory/mocs/about-the-user.md",
"seed-memory/mocs/building-mobius-apps.md",
"seed-memory/mocs/maintaining-memory.md",
"seed-memory/mocs/mobius-platform.md",
"seed-memory/notes/how-the-memory-graph-works.md",
"seed-memory/notes/memory-is-visible-to-the-partner.md"
]
}
},
{
"id": "reflection",
"name": "Reflection",
"description": "While you sleep, Möbius reviews the system, proposes improvements, and leaves a one-page morning brief.",
"repo": "mobius-os/app-reflection",
"manifest_url": "https://raw.githubusercontent.com/mobius-os/app-reflection/main/mobius.json",
"raw_base": "https://raw.githubusercontent.com/mobius-os/app-reflection/main/",
"categories": [
"system",
"agents"
],
"keywords": [
"reflection",
"morning brief",
"overnight",
"system improvement",
"background agent"
],
"capabilities": [
"scheduled background run",
"writes morning briefs",
"proposes system improvements"
],
"setup": {
"required": true,
"scope": "system",
"section": "background-agents",
"label": "Background agent",
"description": "Connect at least one AI provider and set a primary/fallback background model in Möbius Settings. Reflection can override it inside the app.",
"fields": [
"provider",
"model",
"fallback"
]
},
"manifest": {
"id": "reflection",
"name": "Reflection",
"version": "2.8.2",
"description": "While you sleep, Möbius learns from recent work, improves its own approach, anticipates what may help next, and leaves a one-page morning brief.",
"author": "mobius-os",
"license": "MIT",
"homepage": "https://github.com/mobius-os/app-reflection",
"entry": "index.jsx",
"icon": "icon.png",
"offline_capable": true,
"permissions": {
"cross_app_access": "read",
"share_with_apps": "none",
"chat_log_access": "summary"
},
"storage_seeds": {
"settings.json": {
"hour": 6,
"minute": 0,
"timezone": null,
"cron": "0 6 * * *",
"exclude_apps": [],
"provider": null,
"model": null,
"primary_agent_mode": "system",
"secondary_agent_mode": "system",
"fallback_provider": null,
"fallback_model": null,
"verbosity": "standard",
"focus": null,
"avoid": null
}
},
"offline": {
"reads": true,
"writes": "queued",
"execution": "none",
"reads_detail": "The reports list, each opened brief body, and the streak/state are read through window.mobius.storage (list/getText/get), so they render offline from the runtime read-through cache. A brief opens offline after it has been opened once online (its body is mirrored on that read)."
},
"schedule": {
"default": "0 6 * * *",
"user_configurable": true,
"job": "fetch.sh"
},
"runtime": {
"imports": [
"react",
"react-dom"
],
"esm_deps": []
},
"embeds_agent": true,
"source_files": [
"reflection_runner.py",
"resource_monitor.py",
"constants.js",
"theme.js",
"domain.js",
"providers.js",
"storage.js",
"ui/ChatBubbleIcon.jsx",
"ui/ChatPanel.jsx",
"ui/ReportQuestions.jsx",
"ui/ReportDetail.jsx",
"ui/StreakBar.jsx",
"ui/ReportsList.jsx",
"ui/LastNightStatus.jsx",
"ui/EffortStepper.jsx",
"ui/ModelPicker.jsx",
"ui/SettingsTab.jsx"
]
}
},
{
"id": "skills",
"name": "Skills",
"description": "Browse and search your agent's skills — the SKILL.md guides that shape what it can do. Tap any skill to read it. Create or edit through the agent.",
"repo": "mobius-os/app-skills",
"manifest_url": "https://raw.githubusercontent.com/mobius-os/app-skills/main/mobius.json",
"raw_base": "https://raw.githubusercontent.com/mobius-os/app-skills/main/",
"categories": [
"system",
"agents"
],
"keywords": [
"skills",
"agent instructions",
"docs",
"procedures",
"playbooks"
],
"capabilities": [
"browse skills",
"read agent procedures",
"search instructions"
],
"manifest": {
"id": "skills",
"name": "Skills",
"version": "1.1.2",
"description": "Browse and search your agent's skills — the SKILL.md guides that shape what it can do. Tap any skill to read it. Create or edit through the agent.",
"author": "mobius-os",
"license": "MIT",
"homepage": "https://github.com/mobius-os/app-skills",
"entry": "index.jsx",
"icon": "icon.png",
"source_files": [
"domain.js"
],
"offline_capable": false,
"permissions": {
"cross_app_access": "none",
"share_with_apps": "none"
},
"runtime": {
"imports": [
"react",
"react-dom"
],
"esm_deps": [
"marked",
"dompurify"
]
},
"offline": {
"reads": false,
"writes": "none",
"execution": "none"
}
}
},
{
"id": "artifacts",
"name": "Artifacts",
"description": "Browse, preview, version, and share the interactive HTML artifacts and documents your agent builds in chat — and jump back to the chat that made each one.",
"repo": "mobius-os/app-artifacts",
"manifest_url": "https://raw.githubusercontent.com/mobius-os/app-artifacts/main/mobius.json",
"raw_base": "https://raw.githubusercontent.com/mobius-os/app-artifacts/main/",
"categories": [
"development",
"productivity"
],
"keywords": [
"artifacts",
"interactive",
"html",
"canvas",
"preview",
"share",
"version history",
"documents"
],
"capabilities": [
"build interactive artifacts in chat",
"preview and version artifacts",
"share artifacts publicly"
],
"manifest": {
"id": "artifacts",
"name": "Artifacts",
"version": "0.5.2",
"description": "Browse, preview, version, share, view, copy, and download interactive pages and polished documents created in Möbius chats.",
"author": "mobius-os",
"license": "MIT",
"homepage": "https://github.com/mobius-os/app-artifacts",
"entry": "index.jsx",
"system_app": true,
"system_prompt": "artifacts-core.md",
"icon": "icon.png",
"skills": [
"artifacts.md"
],
"permissions": {
"chat_log_access": "summary"
},
"source_files": [
"artifacts-core.md",
"artifacts.md",
"domain.js",
"storage.js",
"theme.js",
"preview/ArtifactFrame.jsx",
"ui/ArtifactCard.jsx",
"ui/Detail.jsx",
"ui/Empty.jsx",
"ui/Gallery.jsx",
"ui/Icons.jsx",
"ui/ShareSheet.jsx",
"ui/VersionTimeline.jsx"
]
}
},
{
"id": "tasks",
"name": "Tasks",
"description": "See your agent's scheduled check-ins at a glance — status, due times, and what needs attention. Reschedule or cancel through the agent.",
"repo": "mobius-os/app-tasks",
"manifest_url": "https://raw.githubusercontent.com/mobius-os/app-tasks/main/mobius.json",
"raw_base": "https://raw.githubusercontent.com/mobius-os/app-tasks/main/",
"categories": [
"productivity"
],
"keywords": [
"tasks",
"todo",
"projects",
"planning",
"checklist"
],
"capabilities": [
"manage tasks",
"organize projects",
"track status"
],
"manifest": {
"id": "tasks",
"name": "Tasks",
"version": "1.0.9",
"description": "See your agent's scheduled check-ins at a glance — status, due times, and what needs attention. Reschedule or cancel through the agent.",
"author": "mobius-os",
"license": "MIT",
"homepage": "https://github.com/mobius-os/app-tasks",
"entry": "index.jsx",
"source_files": [
"domain.js"
],
"icon": "icon.png",
"offline_capable": false,
"permissions": {
"cross_app_access": "none",
"share_with_apps": "none"
},
"runtime": {
"imports": [
"react",
"react-dom",
"date-fns"
],
"esm_deps": []
},
"offline": {
"reads": false,
"writes": "none",
"execution": "none"
}
}
},
{
"id": "contribute",
"name": "Contribute",
"description": "See what your agent has proposed upstream — pull requests, issues, and comments across the Möbius ecosystem, from prepared to merged.",
"repo": "mobius-os/app-contribute",
"manifest_url": "https://raw.githubusercontent.com/mobius-os/app-contribute/main/mobius.json",
"raw_base": "https://raw.githubusercontent.com/mobius-os/app-contribute/main/",
"categories": [
"development",
"system"
],
"keywords": [
"contribute",
"github",
"pull request",
"submit app",
"publish"
],
"capabilities": [
"prepare contributions",
"connect github",
"submit app changes"
],
"setup": {
"required": true,
"scope": "app",
"label": "GitHub connection",
"description": "Connect GitHub in the app before submitting or publishing contribution work.",
"fields": [
"github"
]
},
"manifest": {
"id": "contribute",
"name": "Contribute",
"version": "0.4.3",
"description": "See what your agent has proposed upstream — pull requests, issues, and comments across the Möbius ecosystem, from prepared to merged.",
"author": "mobius-os",
"license": "MIT",
"homepage": "https://github.com/mobius-os/app-contribute",
"icon": "icon.png",
"entry": "index.jsx",
"offline_capable": true,
"offline": {
"reads": true,
"writes": "none",
"execution": "none"
},
"permissions": {
"cross_app_access": "none",
"share_with_apps": "none",
"github_access": true
},
"runtime": {
"imports": [
"react",
"react-dom",
"marked",
"dompurify"
],
"esm_deps": []
},
"schedule": {
"default": "0 * * * *",
"job": "job.sh"
},
"skills": [
"contributing.md"
],
"source_files": [
"theme.js",
"domain.js",
"review.js",
"refresh.js",
"stack.js",
"source-map.js",
"diff.js",
"parse-unified-diff.js",
"api.js",
"storage.js",
"contributing.md",
"ui/Icons.jsx",
"ui/ConnectionCard.jsx",
"ui/MarkdownView.jsx",
"ui/DiffView.jsx",
"ui/FileDiffList.jsx",
"ui/ContributionCard.jsx",
"ui/ContributionStack.jsx",
"ui/Feed.jsx",
"ui/SourceMap.jsx"
]
}
},
{
"id": "notes",
"name": "Notes",
"description": "Markdown notes that render as you type, with checklists, pins, colors, search, and images.",
"repo": "mobius-os/app-notes",
"manifest_url": "https://raw.githubusercontent.com/mobius-os/app-notes/main/mobius.json",
"raw_base": "https://raw.githubusercontent.com/mobius-os/app-notes/main/",
"categories": [
"writing",
"productivity"
],
"keywords": [
"notes",
"markdown",
"checklists",
"attachments",
"keep",
"pins"
],
"capabilities": [
"write markdown notes",
"preview while editing",
"attach images and files"
],
"manifest": {
"id": "notes",
"name": "Notes",
"version": "1.2.28",
"description": "Markdown notes that render as you type, with checklists, pins, colors, search, and images.",
"author": "mobius-os",
"license": "MIT",
"homepage": "https://github.com/mobius-os/app-notes",
"entry": "index.jsx",
"icon": "icon.png",
"offline_capable": true,
"permissions": {
"cross_app_access": "none",
"share_with_apps": "none"
},
"runtime": {
"imports": [
"react",
"react-dom",
"codemirror",
"@codemirror/state",
"@codemirror/view",
"@codemirror/commands",
"@codemirror/lang-markdown",
"@codemirror/language",
"@lezer/highlight",
"katex",
"marked",
"dompurify"
],
"esm_deps": []
},
"storage_seeds": {
"notes-meta.json": {
"app": "notes",
"data_type": "notes",
"format": "json",
"note_shape": "{ meta: {frontmatter fields}, body: markdown-string }",
"dir": "notes/",
"index": "index.json",
"attachments": "attachments/"
}
},
"offline": {
"reads": true,
"writes": "queued",
"execution": "full"
},
"schedule": {
"job": "job.sh"
}
}
},
{
"id": "news",
"name": "News",
"description": "A daily AI-curated news digest you can tune by topic, schedule, and editorial brief.",
"repo": "mobius-os/app-news",
"manifest_url": "https://raw.githubusercontent.com/mobius-os/app-news/main/mobius.json",
"raw_base": "https://raw.githubusercontent.com/mobius-os/app-news/main/",
"categories": [
"information",
"agents"
],
"keywords": [
"news",
"daily digest",
"research",
"articles",
"curator",
"scheduled"
],
"capabilities": [
"scheduled digest",
"source research",
"custom editorial brief"
],
"setup": {
"required": true,
"scope": "app",
"label": "Digest setup",
"description": "Choose the topics, schedule, and primary/fallback model in the app before relying on scheduled reports.",
"fields": [
"topics",
"schedule",
"provider",
"model",
"fallback"
]
},
"manifest": {
"id": "news",
"name": "News",
"version": "1.14.10",
"description": "A daily AI-curated news digest you can tune by topic, schedule, and editorial brief.",
"offline_capable": true,
"embeds_agent": true,
"author": "mobius-os",
"license": "MIT",
"homepage": "https://github.com/mobius-os/app-news",
"icon": "icon.png",
"entry": "index.jsx",
"source_files": [
"report-schema.mjs",
"constants.js",
"theme.js",
"domain.js",
"storage.js",
"signals.js",
"ui/Icons.jsx",
"ui/ChatPanel.jsx",
"ui/ReportQuestions.jsx",
"ui/ReportReader.jsx",
"ui/ReportsTab.jsx",
"ui/ModelPicker.jsx",
"ui/EffortStepper.jsx",
"ui/SettingsTab.jsx"
],
"theme_color": "#0c0f14",
"background_color": "#0c0f14",
"permissions": {
"cross_app_access": "none",
"share_with_apps": "none"
},
"storage_seeds": {
"system-prompt.md": "system-prompt.md",
"topics.txt": "topics.txt",
"agent.json": {
"primary_agent_mode": "system",
"provider": null,
"model": null,
"effort": null,
"secondary_agent_mode": "system",
"fallback_provider": null,
"fallback_model": null,
"fallback_effort": null
},
"schedule.json": {
"hour": 10,
"minute": 0
}
},
"offline": {
"reads": true,
"writes": "queued",
"execution": "none"
},
"schedule": {
"default": "0 10 * * *",
"user_configurable": true,
"job": "fetch.sh"
},
"runtime": {
"imports": [
"react",
"react-dom"
],
"esm_deps": []
}
}
},
{
"id": "editor",
"name": "Editor",
"description": "Browse and edit any file on your Möbius, with an agent that can edit for you.",
"repo": "mobius-os/app-editor",
"manifest_url": "https://raw.githubusercontent.com/mobius-os/app-editor/main/mobius.json",
"raw_base": "https://raw.githubusercontent.com/mobius-os/app-editor/main/",
"categories": [
"development",
"writing"
],
"keywords": [
"editor",
"code",
"markdown",
"files",
"text"
],
"capabilities": [
"edit files",
"write markdown",
"preview content"
],
"manifest": {
"id": "editor",
"name": "Editor",
"version": "0.6.4",
"description": "Browse, inspect, and edit every file on your Möbius. Follow git status, check file details, and ask the agent to make changes with you.",
"author": "mobius-os",
"license": "MIT",
"homepage": "https://github.com/mobius-os/app-editor",
"entry": "index.jsx",
"source_files": [
"constants.js",
"paths.js",
"theme.js",
"source-syntax.js",
"domain.js",
"storage.js",
"ui/Icons.jsx",
"ui/TabStrip.jsx",
"ui/Breadcrumb.jsx",
"ui/EntryRow.jsx",
"ui/Thumb.jsx",
"ui/StatusBar.jsx",
"ui/OverflowMenu.jsx",
"ui/BookmarksDrawer.jsx",
"ui/PropertiesSheet.jsx",
"ui/FileViewer.jsx",
"ui/Preview.jsx",
"ui/CodeEditor.jsx",
"ui/useModalFocus.js",
"ui/NameModal.jsx",
"ui/ConfirmModal.jsx",
"ui/GitPanel.jsx",
"ui/ChatPanel.jsx",
"ui/ChatBubbleIcon.jsx"
],
"icon": "icon.png",
"offline_capable": false,
"offline": {
"reads": false,
"writes": "none",
"execution": "none"
},
"embeds_agent": true,
"permissions": {
"cross_app_access": "none",
"share_with_apps": "none",
"filesystem_access": true
},
"storage_seeds": {
"chat_id.json": null
},
"runtime": {
"imports": [
"react",
"react-dom",
"@codemirror/state",
"@codemirror/view",
"@codemirror/commands",
"@codemirror/language",
"@codemirror/lang-markdown",
"@lezer/highlight",
"katex",
"pdfjs-dist"
],
"esm_deps": []
}
}
},
{
"id": "webstudio",
"name": "Web Studio",
"description": "Build a website with the agent and preview it live in an in-app browser.",
"repo": "mobius-os/app-webstudio",
"manifest_url": "https://raw.githubusercontent.com/mobius-os/app-webstudio/main/mobius.json",
"raw_base": "https://raw.githubusercontent.com/mobius-os/app-webstudio/main/",
"categories": [
"development",
"creative"
],
"keywords": [
"webstudio",
"website",
"html",
"css",
"preview",
"builder"
],
"capabilities": [
"build web pages",
"preview projects",
"edit site files"
],
"manifest": {
"id": "webstudio",
"name": "Web Studio",
"version": "0.13.3",
"description": "Build a website with the agent and preview it live in an in-app browser.",
"author": "mobius-os",
"license": "MIT",
"homepage": "https://github.com/mobius-os/app-webstudio",
"entry": "index.jsx",
"icon": "icon.png",
"offline_capable": true,
"offline": {
"reads": true,
"writes": "queued",
"execution": "none"
},
"embeds_agent": true,
"permissions": {
"cross_app_access": "none",
"share_with_apps": "none"
},
"storage_seeds": {
"files/index.html": "seeds/files/index.html",
"files/style.css": "seeds/files/style.css",
"files/app.js": "seeds/files/app.js",
"files-index.json": [
"files/app.js",
"files/index.html",
"files/style.css"
],
"main.json": {
"path": "files/index.html"
}
},
"runtime": {
"imports": [
"react",
"react-dom",
"@codemirror/state",
"@codemirror/view",
"@codemirror/commands",
"@codemirror/language"
],
"esm_deps": []
},
"schedule": {
"job": "build.sh"
},
"source_files": [
"constants.js",
"analytics.js",
"theme.js",
"domain.js",
"storage.js",
"source-syntax.js",
"preview/previewDomain.js",
"preview/HtmlPreview.jsx",
"build/useBuild.js",
"ui/CodeEditor.jsx",
"ui/ImagePreview.jsx",
"ui/FileGlyph.jsx",
"ui/ChevronIcon.jsx",
"ui/EyeIcon.jsx",
"ui/CodeIcon.jsx",
"ui/PlayIcon.jsx",
"ui/BuildingIndicator.jsx",
"ui/KebabIcon.jsx",
"ui/ChatBubbleIcon.jsx",
"ui/PublishIcon.jsx",
"ui/UnpublishIcon.jsx",
"ui/CheckIcon.jsx",
"ui/PencilIcon.jsx",
"ui/PlusIcon.jsx",
"ui/NewFileIcon.jsx",
"ui/NewFolderIcon.jsx",
"ui/UploadIcon.jsx",
"ui/TrashIcon.jsx",
"ui/CopyIcon.jsx",
"ui/ContextMenu.jsx",
"ui/useLongPress.js",
"ui/FileNode.jsx",
"ui/ProjectSelector.jsx",
"ui/PublishDrawerAction.jsx",
"ui/FileNavPanel.jsx",
"ui/ChatPanel.jsx",
"ui/useModal.jsx",
"ui/ModalView.jsx",
"ui/SyncPill.jsx"
]
}
},
{
"id": "gym",
"name": "Workout",
"description": "Log workouts by chatting, and it tracks your PRs, trends, and streaks.",
"repo": "mobius-os/app-workout",
"manifest_url": "https://raw.githubusercontent.com/mobius-os/app-workout/main/mobius.json",
"raw_base": "https://raw.githubusercontent.com/mobius-os/app-workout/main/",
"categories": [
"health",
"productivity"
],
"keywords": [
"workout",
"gym",
"sets",
"exercises",
"progress",
"training"
],
"capabilities": [
"log workouts",
"track progress",
"plan routines"
],
"manifest": {
"id": "workout",
"previous_id": "gym",
"name": "Workout",
"version": "2.8.4",
"description": "Log workouts by chatting, and it tracks your PRs, trends, and streaks.",
"author": "mobius-os",
"license": "MIT",
"homepage": "https://github.com/mobius-os/app-workout",
"entry": "index.jsx",
"source_files": [
"logic.js",
"constants.js",
"storage.js",
"agent-prompt.js",
"format.js",
"theme.js",
"ui/SportIcon.jsx",
"ui/Icons.jsx",
"ui/SyncPill.jsx",
"ui/ConfirmModal.jsx",
"ui/ConfirmCard.jsx",
"ui/AgentChatPanel.jsx",
"ui/QuickAddStrip.jsx",
"ui/EntryCard.jsx",
"ui/SessionDraftCard.jsx",
"ui/CurrentSessionPanel.jsx",
"ui/Heatmap.jsx",
"ui/Sparkline.jsx",
"ui/ExerciseDetailSheet.jsx",
"ui/CategoryVolumeBars.jsx",
"ui/CategoryStats.jsx",
"ui/ExerciseLink.jsx",
"ui/InsightsTab.jsx",
"ui/AllTab.jsx"
],
"icon": "icon.png",
"offline_capable": true,
"permissions": {
"cross_app_access": "none",
"share_with_apps": "none"
},
"runtime": {
"imports": [
"react",
"react-dom"
],
"esm_deps": []
},
"offline": {
"reads": true,
"writes": "queued",
"execution": "full"
},
"storage_seeds": {},
"embeds_agent": true
}
},
{
"id": "habits",
"name": "Habits",
"description": "Track daily habits with streaks, a strength score, a calendar heatmap, and per-habit reminders.",
"repo": "mobius-os/app-habits",
"manifest_url": "https://raw.githubusercontent.com/mobius-os/app-habits/main/mobius.json",
"raw_base": "https://raw.githubusercontent.com/mobius-os/app-habits/main/",
"categories": [
"productivity",
"health"
],
"keywords": [
"habits",
"streaks",
"reminders",
"calendar",
"daily routine"
],
"capabilities": [
"track streaks",