-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmobius.json
More file actions
70 lines (70 loc) · 1.85 KB
/
Copy pathmobius.json
File metadata and controls
70 lines (70 loc) · 1.85 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
{
"id": "reflection",
"name": "Reflection",
"version": "2.7.3",
"description": "While you sleep, Möbius reviews the system, proposes improvements, 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",
"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/SettingsTab.jsx"
]
}