@bonginkan/maria-lite 6.2.3 → 6.2.4
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/README.md +19 -2
- package/dist/cli.cjs +24820 -1676
- package/dist/desktop-client.js +33 -2
- package/dist/ext.cjs +1 -1
- package/dist/ext.d.cts +1 -1
- package/dist/gui-client.js +15 -0
- package/origin/index.meta.json +1 -1
- package/package.json +1 -1
package/dist/desktop-client.js
CHANGED
|
@@ -331,6 +331,7 @@ var init_helpers = __esm({
|
|
|
331
331
|
phone: "linear-gradient(135deg, #0891b2, #06b6d4)",
|
|
332
332
|
google: "linear-gradient(135deg, #4285f4, #34a853)",
|
|
333
333
|
multiverse: "linear-gradient(135deg, #7c3aed, #c084fc)",
|
|
334
|
+
daily: "linear-gradient(135deg, #0d9488, #06b6d4)",
|
|
334
335
|
system: "linear-gradient(135deg, #64748b, #94a3b8)"
|
|
335
336
|
};
|
|
336
337
|
LUCIDE_FOLDER_ICONS = {
|
|
@@ -346,6 +347,7 @@ var init_helpers = __esm({
|
|
|
346
347
|
academic: "graduation-cap",
|
|
347
348
|
phone: "phone",
|
|
348
349
|
google: "globe",
|
|
350
|
+
daily: "calendar-clock",
|
|
349
351
|
multiverse: "orbit",
|
|
350
352
|
system: "settings"
|
|
351
353
|
};
|
|
@@ -367,10 +369,17 @@ var init_helpers = __esm({
|
|
|
367
369
|
research: "search",
|
|
368
370
|
music: "music",
|
|
369
371
|
calculator: "calculator",
|
|
370
|
-
"weekly-report": "clipboard-list",
|
|
371
372
|
competitors: "trophy",
|
|
372
373
|
"task-distribution": "kanban",
|
|
373
374
|
__terminal: "terminal",
|
|
375
|
+
// Daily Intelligence
|
|
376
|
+
"weekly-report": "clipboard-list",
|
|
377
|
+
"daily-report": "clipboard-check",
|
|
378
|
+
"daily-news": "newspaper",
|
|
379
|
+
"daily-papers": "graduation-cap",
|
|
380
|
+
"daily-insights": "lightbulb",
|
|
381
|
+
"discord-setup": "bell",
|
|
382
|
+
"billing-pl": "wallet",
|
|
374
383
|
// CXO Agents
|
|
375
384
|
ceo: "crown",
|
|
376
385
|
coo: "target",
|
|
@@ -607,7 +616,14 @@ var init_state = __esm({
|
|
|
607
616
|
label: "Basic Tools",
|
|
608
617
|
emoji: "\u{1F4AC}",
|
|
609
618
|
serverCategories: [],
|
|
610
|
-
commandIds: ["chat", "image", "video", "research", "music", "calculator", "
|
|
619
|
+
commandIds: ["chat", "image", "video", "research", "music", "calculator", "competitors", "task-distribution", "__terminal"]
|
|
620
|
+
},
|
|
621
|
+
{
|
|
622
|
+
id: "daily",
|
|
623
|
+
label: "Daily Intelligence",
|
|
624
|
+
emoji: "\u{1F4CA}",
|
|
625
|
+
serverCategories: ["daily"],
|
|
626
|
+
commandIds: ["daily-report", "daily-news", "daily-papers", "daily-insights", "weekly-report", "discord-setup", "billing-pl"]
|
|
611
627
|
},
|
|
612
628
|
{
|
|
613
629
|
id: "cxo",
|
|
@@ -13005,6 +13021,21 @@ function attachGlobalFolderDnD() {
|
|
|
13005
13021
|
}, true);
|
|
13006
13022
|
}
|
|
13007
13023
|
function attachGlobalListeners() {
|
|
13024
|
+
const disableAutoCorrect = (el) => {
|
|
13025
|
+
el.setAttribute("autocapitalize", "off");
|
|
13026
|
+
el.setAttribute("autocorrect", "off");
|
|
13027
|
+
if (!el.getAttribute("spellcheck")) el.setAttribute("spellcheck", "false");
|
|
13028
|
+
};
|
|
13029
|
+
document.querySelectorAll("input, textarea").forEach(disableAutoCorrect);
|
|
13030
|
+
new MutationObserver((mutations) => {
|
|
13031
|
+
for (const m of mutations) {
|
|
13032
|
+
for (const node of m.addedNodes) {
|
|
13033
|
+
if (!(node instanceof HTMLElement)) continue;
|
|
13034
|
+
if (node.tagName === "INPUT" || node.tagName === "TEXTAREA") disableAutoCorrect(node);
|
|
13035
|
+
node.querySelectorAll?.("input, textarea").forEach(disableAutoCorrect);
|
|
13036
|
+
}
|
|
13037
|
+
}
|
|
13038
|
+
}).observe(document.body, { childList: true, subtree: true });
|
|
13008
13039
|
const startBtn = document.getElementById("startBtn");
|
|
13009
13040
|
if (startBtn) {
|
|
13010
13041
|
startBtn.addEventListener("click", (e) => {
|
package/dist/ext.cjs
CHANGED
|
@@ -98004,7 +98004,7 @@ function resolvePackageJsonNearEntrypoint() {
|
|
|
98004
98004
|
}
|
|
98005
98005
|
function resolveMariaLiteVersionInfo() {
|
|
98006
98006
|
const fallbackName = EXPECTED_PKG_NAME;
|
|
98007
|
-
const fallbackVersion = String(process.env.MARIA_LITE_VERSION || "").trim() || "6.2.
|
|
98007
|
+
const fallbackVersion = String(process.env.MARIA_LITE_VERSION || "").trim() || "6.2.4";
|
|
98008
98008
|
const near = resolvePackageJsonNearEntrypoint();
|
|
98009
98009
|
if (near) {
|
|
98010
98010
|
const name = fallbackName;
|
package/dist/ext.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
type LiteBuiltInCommandId = "login" | "logout" | "account" | "help" | "version" | "vup" | "connect" | "api-secret" | "bulk-register" | "recompile-api" | "skills" | "plugins" | "gen-skills" | "git" | "gh" | "research" | "kp-sync" | "kp-generate" | "kp-update" | "kp-synthesis" | "origin-fetch" | "deps" | "pdf" | "docs" | "stop" | "restart" | "chat" | "code" | "develop" | "auto-dev" | "doctor" | "evolve" | "universe" | "blog" | "image" | "video" | "music" | "manga" | "slides" | "proposal" | "novel" | "ceo" | "coo" | "cpo" | "cto" | "caio" | "cxo" | "ceo-clone" | "cto-clone" | "caio-clone" | "coo-clone" | "cpo-clone" | "desktop" | "spreadsheet" | "task-manager" | "calculator" | "twin" | "phone-tenant" | "phone-dept" | "phone-prompt" | "phone-dict" | "phone-hp-import" | "phone-deploy" | "phone-init";
|
|
1
|
+
type LiteBuiltInCommandId = "login" | "logout" | "account" | "help" | "version" | "vup" | "connect" | "api-secret" | "bulk-register" | "recompile-api" | "skills" | "plugins" | "gen-skills" | "git" | "gh" | "research" | "kp-sync" | "kp-generate" | "kp-update" | "kp-synthesis" | "origin-fetch" | "deps" | "pdf" | "docs" | "stop" | "restart" | "chat" | "code" | "develop" | "auto-dev" | "doctor" | "evolve" | "universe" | "blog" | "image" | "video" | "music" | "manga" | "slides" | "proposal" | "novel" | "ceo" | "coo" | "cpo" | "cto" | "caio" | "cxo" | "ceo-clone" | "cto-clone" | "caio-clone" | "coo-clone" | "cpo-clone" | "desktop" | "spreadsheet" | "task-manager" | "calculator" | "twin" | "phone-tenant" | "phone-dept" | "phone-prompt" | "phone-dict" | "phone-hp-import" | "phone-deploy" | "phone-init" | "daily-report" | "daily-news" | "daily-papers" | "daily-insights" | "discord-setup" | "billing-pl";
|
|
2
2
|
type LiteCommandId = LiteBuiltInCommandId | (string & {});
|
|
3
3
|
type LiteStepOutcome = "PASS" | "WARN" | "STOP";
|
|
4
4
|
type LiteStepResult = {
|
package/dist/gui-client.js
CHANGED
|
@@ -2071,6 +2071,21 @@ async function loadUniverse() {
|
|
|
2071
2071
|
renderNodeDetail(state.uni.selectedNodeId || "");
|
|
2072
2072
|
}
|
|
2073
2073
|
function attach() {
|
|
2074
|
+
const disableAutoCorrect = (el) => {
|
|
2075
|
+
el.setAttribute("autocapitalize", "off");
|
|
2076
|
+
el.setAttribute("autocorrect", "off");
|
|
2077
|
+
if (!el.getAttribute("spellcheck")) el.setAttribute("spellcheck", "false");
|
|
2078
|
+
};
|
|
2079
|
+
document.querySelectorAll("input, textarea").forEach(disableAutoCorrect);
|
|
2080
|
+
new MutationObserver((mutations) => {
|
|
2081
|
+
for (const m of mutations) {
|
|
2082
|
+
for (const node of m.addedNodes) {
|
|
2083
|
+
if (!(node instanceof HTMLElement)) continue;
|
|
2084
|
+
if (node.tagName === "INPUT" || node.tagName === "TEXTAREA") disableAutoCorrect(node);
|
|
2085
|
+
node.querySelectorAll?.("input, textarea").forEach(disableAutoCorrect);
|
|
2086
|
+
}
|
|
2087
|
+
}
|
|
2088
|
+
}).observe(document.body, { childList: true, subtree: true });
|
|
2074
2089
|
$("tabs").addEventListener("click", (e) => {
|
|
2075
2090
|
const t = e.target?.closest ? e.target.closest(".tab") : null;
|
|
2076
2091
|
if (!t) return;
|
package/origin/index.meta.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"buildTimestamp":"2026-03-
|
|
1
|
+
{"buildTimestamp":"2026-03-02T07:56:20.617Z","fileCount":952,"indexJsonlRelPath":"src-lite/origin/index.jsonl","schemaVersion":"maria_lite_origin_index_meta_v1","sourceDir":"src-lite/origin","textExtractedCount":952}
|