momo-ai 1.0.20 → 1.0.21
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/.claude/skills/algorithmic-art/LICENSE.txt +202 -0
- package/.claude/skills/algorithmic-art/SKILL.md +405 -0
- package/.claude/skills/algorithmic-art/templates/generator_template.js +223 -0
- package/.claude/skills/algorithmic-art/templates/viewer.html +599 -0
- package/.claude/skills/r2mo-rad-lain/PROMPT.md +281 -0
- package/.claude/skills/r2mo-rad-lain/README.md +192 -0
- package/.claude/skills/r2mo-rad-lain/SKILL.md +412 -0
- package/.claude/skills/r2mo-rad-lain/examples/argument-parsing.js +154 -0
- package/.claude/skills/r2mo-rad-lain/examples/file-operations.js +182 -0
- package/.claude/skills/r2mo-rad-lain/file-utils-api.md +281 -0
- package/.claude/skills/r2mo-rad-lain/menu-api.md +187 -0
- package/.claude/skills/r2mo-rad-lain/scripts/file-utils.js +223 -0
- package/.claude/skills/r2mo-rad-lain/scripts/menu.js +289 -0
- package/.claude/skills/r2mo-rad-lain/scripts/yaml-parser.js +209 -0
- package/.claude/skills/r2mo-rad-lain/templates/command.json.template +13 -0
- package/.claude/skills/r2mo-rad-lain/templates/executor.js.template +32 -0
- package/.claude/skills/r2mo-rad-lain/templates/interactive-menu.js.template +221 -0
- package/.cursor/mcp.json +17 -0
- package/.obsidian/app.json +1 -0
- package/.obsidian/appearance.json +4 -0
- package/.obsidian/community-plugins.json +4 -0
- package/.obsidian/core-plugins.json +33 -0
- package/.obsidian/plugins/ai-agent/main.js +98495 -0
- package/.obsidian/plugins/ai-agent/manifest.json +11 -0
- package/.obsidian/plugins/ai-agent/styles.css +806 -0
- package/.obsidian/plugins/dataview/main.js +20876 -0
- package/.obsidian/plugins/dataview/manifest.json +11 -0
- package/.obsidian/plugins/dataview/styles.css +141 -0
- package/.obsidian/plugins/obsidian-excalidraw-plugin/main.js +10 -0
- package/.obsidian/plugins/obsidian-excalidraw-plugin/manifest.json +12 -0
- package/.obsidian/plugins/obsidian-excalidraw-plugin/styles.css +1 -0
- package/.obsidian/plugins/templater-obsidian/main.js +45 -0
- package/.obsidian/plugins/templater-obsidian/manifest.json +11 -0
- package/.obsidian/plugins/templater-obsidian/styles.css +226 -0
- package/.obsidian/plugins/terminal/main.js +200 -0
- package/.obsidian/plugins/terminal/manifest.json +14 -0
- package/.obsidian/plugins/terminal/styles.css +32 -0
- package/.obsidian/themes/AnuPpuccin/manifest.json +7 -0
- package/.obsidian/themes/AnuPpuccin/theme.css +9080 -0
- package/.obsidian/themes/Things/manifest.json +7 -0
- package/.obsidian/themes/Things/theme.css +1628 -0
- package/.obsidian/workspace.json +196 -0
- package/README.md +10 -123
- package/docs/images/logo.jpeg +0 -0
- package/install.sh +1 -0
- package/package.json +6 -2
- package/skills/r2mo-rad-lain/SKILL.md +101 -0
- package/src/_mcp/skills-server.mjs +70 -0
- package/src/_skill/repositories.json +16 -0
- package/src/commander/help.json +5 -0
- package/src/commander/mcp.json +13 -0
- package/src/commander/open.json +8 -2
- package/src/commander/skills.json +20 -0
- package/src/executor/executeEnv.js +48 -38
- package/src/executor/executeHelp.js +77 -16
- package/src/executor/executeInit.js +203 -149
- package/src/executor/executeMcp.js +290 -0
- package/src/executor/executeOpen.js +144 -125
- package/src/executor/executeSkills.js +747 -0
- package/src/executor/index.js +5 -39
- package/src/momo.js +2 -1
- package/src/utils/momo-args.js +39 -0
- package/src/utils/momo-file-utils.js +75 -0
- package/src/utils/momo-menu.js +54 -0
- package/src/commander/actor.json +0 -12
- package/src/commander/actors.json +0 -6
- package/src/commander/add.json +0 -12
- package/src/commander/agent.json +0 -12
- package/src/commander/agentcfg.json +0 -5
- package/src/commander/archive.json +0 -12
- package/src/commander/commit.json +0 -12
- package/src/commander/console.json +0 -7
- package/src/commander/lain.json +0 -7
- package/src/commander/list.json +0 -7
- package/src/commander/plan.json +0 -12
- package/src/commander/project.json +0 -12
- package/src/commander/pull.json +0 -6
- package/src/commander/push.json +0 -6
- package/src/commander/repo.json +0 -18
- package/src/commander/run.json +0 -18
- package/src/commander/show.json +0 -12
- package/src/commander/tasks.json +0 -18
- package/src/commander/unlock.json +0 -6
- package/src/commander/validate.json +0 -12
- package/src/executor/executeActor.js +0 -133
- package/src/executor/executeActors.js +0 -58
- package/src/executor/executeAdd.js +0 -307
- package/src/executor/executeAgent.js +0 -299
- package/src/executor/executeAgentCfg.js +0 -210
- package/src/executor/executeArchive.js +0 -124
- package/src/executor/executeCommit.js +0 -202
- package/src/executor/executeConsole.js +0 -142
- package/src/executor/executeList.js +0 -133
- package/src/executor/executePlan.js +0 -164
- package/src/executor/executeProject.js +0 -313
- package/src/executor/executePull.js +0 -127
- package/src/executor/executePush.js +0 -243
- package/src/executor/executeRepo.js +0 -238
- package/src/executor/executeRun.js +0 -644
- package/src/executor/executeShow.js +0 -164
- package/src/executor/executeTasks.js +0 -384
- package/src/executor/executeUnlock.js +0 -110
- package/src/executor/executeValidate.js +0 -210
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "dataview",
|
|
3
|
+
"name": "Dataview",
|
|
4
|
+
"version": "0.5.68",
|
|
5
|
+
"minAppVersion": "0.13.11",
|
|
6
|
+
"description": "Complex data views for the data-obsessed.",
|
|
7
|
+
"author": "Michael Brenan <blacksmithgu@gmail.com>",
|
|
8
|
+
"authorUrl": "https://github.com/blacksmithgu",
|
|
9
|
+
"helpUrl": "https://blacksmithgu.github.io/obsidian-dataview/",
|
|
10
|
+
"isDesktopOnly": false
|
|
11
|
+
}
|
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
.block-language-dataview {
|
|
2
|
+
overflow-y: auto;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
/*****************/
|
|
6
|
+
/** Table Views **/
|
|
7
|
+
/*****************/
|
|
8
|
+
|
|
9
|
+
/* List View Default Styling; rendered internally as a table. */
|
|
10
|
+
.table-view-table {
|
|
11
|
+
width: 100%;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.table-view-table > thead > tr, .table-view-table > tbody > tr {
|
|
15
|
+
margin-top: 1em;
|
|
16
|
+
margin-bottom: 1em;
|
|
17
|
+
text-align: left;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.table-view-table > tbody > tr:hover {
|
|
21
|
+
background-color: var(--table-row-background-hover);
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.table-view-table > thead > tr > th {
|
|
25
|
+
font-weight: 700;
|
|
26
|
+
font-size: larger;
|
|
27
|
+
border-top: none;
|
|
28
|
+
border-left: none;
|
|
29
|
+
border-right: none;
|
|
30
|
+
border-bottom: solid;
|
|
31
|
+
|
|
32
|
+
max-width: 100%;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.table-view-table > tbody > tr > td {
|
|
36
|
+
text-align: left;
|
|
37
|
+
border: none;
|
|
38
|
+
font-weight: 400;
|
|
39
|
+
max-width: 100%;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.table-view-table ul, .table-view-table ol {
|
|
43
|
+
margin-block-start: 0.2em !important;
|
|
44
|
+
margin-block-end: 0.2em !important;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
/** Rendered value styling for any view. */
|
|
48
|
+
.dataview-result-list-root-ul {
|
|
49
|
+
padding: 0em !important;
|
|
50
|
+
margin: 0em !important;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.dataview-result-list-ul {
|
|
54
|
+
margin-block-start: 0.2em !important;
|
|
55
|
+
margin-block-end: 0.2em !important;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
/** Generic grouping styling. */
|
|
59
|
+
.dataview.result-group {
|
|
60
|
+
padding-left: 8px;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
/*******************/
|
|
64
|
+
/** Inline Fields **/
|
|
65
|
+
/*******************/
|
|
66
|
+
|
|
67
|
+
.dataview.inline-field-key {
|
|
68
|
+
padding-left: 8px;
|
|
69
|
+
padding-right: 8px;
|
|
70
|
+
font-family: var(--font-monospace);
|
|
71
|
+
background-color: var(--background-primary-alt);
|
|
72
|
+
color: var(--nav-item-color-selected);
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.dataview.inline-field-value {
|
|
76
|
+
padding-left: 8px;
|
|
77
|
+
padding-right: 8px;
|
|
78
|
+
font-family: var(--font-monospace);
|
|
79
|
+
background-color: var(--background-secondary-alt);
|
|
80
|
+
color: var(--nav-item-color-selected);
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.dataview.inline-field-standalone-value {
|
|
84
|
+
padding-left: 8px;
|
|
85
|
+
padding-right: 8px;
|
|
86
|
+
font-family: var(--font-monospace);
|
|
87
|
+
background-color: var(--background-secondary-alt);
|
|
88
|
+
color: var(--nav-item-color-selected);
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
/***************/
|
|
92
|
+
/** Task View **/
|
|
93
|
+
/***************/
|
|
94
|
+
|
|
95
|
+
.dataview.task-list-item, .dataview.task-list-basic-item {
|
|
96
|
+
margin-top: 3px;
|
|
97
|
+
margin-bottom: 3px;
|
|
98
|
+
transition: 0.4s;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.dataview.task-list-item:hover, .dataview.task-list-basic-item:hover {
|
|
102
|
+
background-color: var(--text-selection);
|
|
103
|
+
box-shadow: -40px 0 0 var(--text-selection);
|
|
104
|
+
cursor: pointer;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
/*****************/
|
|
108
|
+
/** Error Views **/
|
|
109
|
+
/*****************/
|
|
110
|
+
|
|
111
|
+
div.dataview-error-box {
|
|
112
|
+
width: 100%;
|
|
113
|
+
min-height: 150px;
|
|
114
|
+
display: flex;
|
|
115
|
+
align-items: center;
|
|
116
|
+
justify-content: center;
|
|
117
|
+
border: 4px dashed var(--background-secondary);
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.dataview-error-message {
|
|
121
|
+
color: var(--text-muted);
|
|
122
|
+
text-align: center;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
/*************************/
|
|
126
|
+
/** Additional Metadata **/
|
|
127
|
+
/*************************/
|
|
128
|
+
|
|
129
|
+
.dataview.small-text {
|
|
130
|
+
font-size: smaller;
|
|
131
|
+
color: var(--text-muted);
|
|
132
|
+
margin-left: 3px;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.dataview.small-text::before {
|
|
136
|
+
content: "(";
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.dataview.small-text::after {
|
|
140
|
+
content: ")";
|
|
141
|
+
}
|