@bonginkan/maria 4.3.44 → 4.3.45
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 +4 -4
- package/dist/READY.manifest.json +1 -1
- package/dist/bin/maria.cjs +9 -6
- package/dist/bin/maria.cjs.map +1 -1
- package/dist/cli.cjs +9 -6
- package/dist/cli.cjs.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/server/express-server.cjs +1 -1
- package/dist/server/express-server.js +1 -1
- package/dist/server-express.cjs +1 -1
- package/dist/server-express.cjs.map +1 -1
- package/package.json +2 -2
- package/src/slash-commands/READY.manifest.json +1 -1
package/dist/cli.cjs
CHANGED
|
@@ -1709,7 +1709,7 @@ var init_AuthenticationManager = __esm({
|
|
|
1709
1709
|
const response = await fetch(`${this.apiBase}/api/user/profile`, {
|
|
1710
1710
|
headers: {
|
|
1711
1711
|
"Authorization": `Bearer ${tokens2.accessToken}`,
|
|
1712
|
-
"User-Agent": `maria-cli/${process.env.CLI_VERSION || "4.3.
|
|
1712
|
+
"User-Agent": `maria-cli/${process.env.CLI_VERSION || "4.3.45"}`
|
|
1713
1713
|
}
|
|
1714
1714
|
});
|
|
1715
1715
|
if (response.status === 401) {
|
|
@@ -2434,7 +2434,7 @@ async function callApi(path65, init3 = {}) {
|
|
|
2434
2434
|
"Authorization": `Bearer ${token}`,
|
|
2435
2435
|
"X-Device-Id": getDeviceId(),
|
|
2436
2436
|
"X-Session-Id": getSessionId() || "",
|
|
2437
|
-
"User-Agent": `maria-cli/${process.env.CLI_VERSION || "4.3.
|
|
2437
|
+
"User-Agent": `maria-cli/${process.env.CLI_VERSION || "4.3.45"}`,
|
|
2438
2438
|
"Content-Type": init3.headers?.["Content-Type"] || "application/json"
|
|
2439
2439
|
});
|
|
2440
2440
|
const doFetch = async (token) => {
|
|
@@ -16416,8 +16416,8 @@ var require_package = __commonJS({
|
|
|
16416
16416
|
"package.json"(exports, module) {
|
|
16417
16417
|
module.exports = {
|
|
16418
16418
|
name: "@bonginkan/maria",
|
|
16419
|
-
version: "4.3.
|
|
16420
|
-
description: "\u{1F680} MARIA v4.3.
|
|
16419
|
+
version: "4.3.45",
|
|
16420
|
+
description: "\u{1F680} MARIA v4.3.45 - Enterprise AI Development Platform with identity system and character voice implementation. Features 74 production-ready commands with comprehensive fallback implementation, local LLM support, and zero external dependencies. Includes natural language coding, AI safety evaluation, intelligent evolution system, episodic memory with PII masking, and real-time monitoring dashboard. Built with TypeScript AST-powered code generation, OAuth2.0 + PKCE authentication, quantum-resistant cryptography, and enterprise-grade performance.",
|
|
16421
16421
|
keywords: [
|
|
16422
16422
|
"ai",
|
|
16423
16423
|
"cli",
|
|
@@ -24411,7 +24411,10 @@ var init_video_command = __esm({
|
|
|
24411
24411
|
const base = (process.env.MARIA_API_BASE || "https://api.maria-code.ai").replace(/\/$/, "");
|
|
24412
24412
|
const savedPaths = [];
|
|
24413
24413
|
const baseDir = "video";
|
|
24414
|
-
const
|
|
24414
|
+
const rawPrefix = (cli.prompt || "").slice(0, 20).replace(/\s+/g, "_");
|
|
24415
|
+
let promptPrefix = rawPrefix.replace(/[\x00-\x1F<>:"/\\|?*]/g, "_").replace(/[. ]+$/g, "");
|
|
24416
|
+
if (!promptPrefix) promptPrefix = "untitled";
|
|
24417
|
+
if (/^(con|prn|aux|nul|com[1-9]|lpt[1-9])$/i.test(promptPrefix)) promptPrefix = `${promptPrefix}_`;
|
|
24415
24418
|
const utc = (/* @__PURE__ */ new Date()).toISOString().replace(/[:.]/g, "-");
|
|
24416
24419
|
let idx = 0;
|
|
24417
24420
|
for (const relRaw of filesFromApi) {
|
|
@@ -26423,7 +26426,7 @@ var init_about_command = __esm({
|
|
|
26423
26426
|
async execute(args2, context2) {
|
|
26424
26427
|
const output3 = [];
|
|
26425
26428
|
output3.push("");
|
|
26426
|
-
output3.push(chalk40__default.default.cyan.bold("\u{1F916} About MARIA v4.3.
|
|
26429
|
+
output3.push(chalk40__default.default.cyan.bold("\u{1F916} About MARIA v4.3.45"));
|
|
26427
26430
|
output3.push(chalk40__default.default.gray("\u2550".repeat(40)));
|
|
26428
26431
|
output3.push("");
|
|
26429
26432
|
output3.push(chalk40__default.default.white.bold("MARIA - Minimal API, Maximum Power"));
|