zero-ai 1.0.73 → 1.0.74
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/.r2mo/.obsidian/app.json +1 -0
- package/.r2mo/.obsidian/appearance.json +10 -0
- package/.r2mo/.obsidian/community-plugins.json +7 -0
- package/.r2mo/.obsidian/core-plugins.json +33 -0
- package/.r2mo/.obsidian/plugins/dataview/main.js +20876 -0
- package/.r2mo/.obsidian/plugins/dataview/manifest.json +11 -0
- package/.r2mo/.obsidian/plugins/dataview/styles.css +141 -0
- package/.r2mo/.obsidian/plugins/obsidian-excalidraw-plugin/data.json +815 -0
- package/.r2mo/.obsidian/plugins/obsidian-excalidraw-plugin/main.js +10 -0
- package/.r2mo/.obsidian/plugins/obsidian-excalidraw-plugin/manifest.json +12 -0
- package/.r2mo/.obsidian/plugins/obsidian-excalidraw-plugin/styles.css +1 -0
- package/.r2mo/.obsidian/plugins/obsidian-kanban/main.js +153 -0
- package/.r2mo/.obsidian/plugins/obsidian-kanban/manifest.json +11 -0
- package/.r2mo/.obsidian/plugins/obsidian-kanban/styles.css +1 -0
- package/.r2mo/.obsidian/plugins/obsidian-plantuml/main.js +7732 -0
- package/.r2mo/.obsidian/plugins/obsidian-plantuml/manifest.json +10 -0
- package/.r2mo/.obsidian/plugins/obsidian-plantuml/styles.css +38 -0
- package/.r2mo/.obsidian/plugins/obsidian-tasks-plugin/main.js +504 -0
- package/.r2mo/.obsidian/plugins/obsidian-tasks-plugin/manifest.json +12 -0
- package/.r2mo/.obsidian/plugins/obsidian-tasks-plugin/styles.css +1 -0
- package/.r2mo/.obsidian/snippets/body-font.css +9 -0
- package/.r2mo/.obsidian/themes/Comfort/manifest.json +11 -0
- package/.r2mo/.obsidian/themes/Comfort/theme.css +218 -0
- package/.r2mo/.obsidian/themes/Primary/manifest.json +9 -0
- package/.r2mo/.obsidian/themes/Primary/theme.css +3878 -0
- package/.r2mo/.obsidian/themes/Retro Windows/manifest.json +7 -0
- package/.r2mo/.obsidian/themes/Retro Windows/theme.css +582 -0
- package/.r2mo/.obsidian/themes/RetroOS 98/manifest.json +9 -0
- package/.r2mo/.obsidian/themes/RetroOS 98/theme.css +2566 -0
- package/.r2mo/.obsidian/themes/Serenity/manifest.json +7 -0
- package/.r2mo/.obsidian/themes/Serenity/theme.css +7258 -0
- package/.r2mo/.obsidian/themes/W95/manifest.json +8 -0
- package/.r2mo/.obsidian/themes/W95/theme.css +768 -0
- package/.r2mo/.obsidian/types.json +28 -0
- package/.r2mo/task/task-001.md +12 -0
- package/.r2mo/task/thread +1 -0
- package/package.json +1 -1
- package/src/commander/{perm.json → ex-perm.json} +3 -3
- package/src/commander-ai/{fn.perm.js → fn.ex.perm.js} +7 -3
- package/src/commander-ai/fn.random.md5.js +9 -0
- package/src/commander-ai/fn.source.app.js +9 -0
- package/src/commander-ai/fn.source.front.js +9 -0
- package/src/commander-ai/fn.source.spring.js +9 -0
- package/src/commander-ai/fn.source.zero.js +9 -0
- package/src/commander-ai/index.js +2 -2
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
{
|
|
2
|
+
"file-explorer": true,
|
|
3
|
+
"global-search": true,
|
|
4
|
+
"switcher": true,
|
|
5
|
+
"graph": true,
|
|
6
|
+
"backlink": true,
|
|
7
|
+
"canvas": true,
|
|
8
|
+
"outgoing-link": true,
|
|
9
|
+
"tag-pane": true,
|
|
10
|
+
"footnotes": false,
|
|
11
|
+
"properties": true,
|
|
12
|
+
"page-preview": true,
|
|
13
|
+
"daily-notes": true,
|
|
14
|
+
"templates": true,
|
|
15
|
+
"note-composer": true,
|
|
16
|
+
"command-palette": true,
|
|
17
|
+
"slash-command": false,
|
|
18
|
+
"editor-status": true,
|
|
19
|
+
"bookmarks": true,
|
|
20
|
+
"markdown-importer": true,
|
|
21
|
+
"zk-prefixer": false,
|
|
22
|
+
"random-note": false,
|
|
23
|
+
"outline": true,
|
|
24
|
+
"word-count": true,
|
|
25
|
+
"slides": true,
|
|
26
|
+
"audio-recorder": false,
|
|
27
|
+
"workspaces": true,
|
|
28
|
+
"file-recovery": true,
|
|
29
|
+
"publish": true,
|
|
30
|
+
"sync": true,
|
|
31
|
+
"bases": true,
|
|
32
|
+
"webviewer": true
|
|
33
|
+
}
|