@bonginkan/maria 4.1.8 → 4.1.9
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/dist/bin/maria.cjs +9 -4
- package/dist/bin/maria.cjs.map +1 -1
- package/dist/cli.cjs +83 -78
- package/dist/cli.cjs.map +1 -1
- package/package.json +1 -1
package/dist/bin/maria.cjs
CHANGED
|
@@ -21245,7 +21245,7 @@ var init_package = __esm({
|
|
|
21245
21245
|
"package.json"() {
|
|
21246
21246
|
package_default = {
|
|
21247
21247
|
name: "@bonginkan/maria",
|
|
21248
|
-
version: "4.1.
|
|
21248
|
+
version: "4.1.9",
|
|
21249
21249
|
description: "\u{1F680} MARIA v4.1.4 - Complete Multimodal AI Integration & Enterprise Platform. Revolutionary voice-to-code, image-to-code, and 73 production-ready commands with advanced memory systems. World's first TypeScript AST-powered code generation with GraphRAG intelligence, multilingual support, and dual-architecture cognitive memory. Features zero-error development, OAuth2.0 + PKCE authentication, and military-grade security. Delivers next-generation multimodal development experience with enterprise-grade performance.",
|
|
21250
21250
|
keywords: [
|
|
21251
21251
|
"ai",
|
|
@@ -33023,9 +33023,13 @@ async function startInteractiveSession() {
|
|
|
33023
33023
|
const rl = readline5.createInterface({ input: import_node_process3.stdin, output: import_node_process3.stdout });
|
|
33024
33024
|
while (true) {
|
|
33025
33025
|
try {
|
|
33026
|
-
|
|
33027
|
-
|
|
33028
|
-
|
|
33026
|
+
const boxWidth = getResponsiveWidth({ minWidth: 40, maxWidth: 120, marginLeft: 2, marginRight: 2 });
|
|
33027
|
+
const topBorder = "\u256D" + "\u2500".repeat(boxWidth - 2) + "\u256E";
|
|
33028
|
+
const middleLine = "\u2502" + " ".repeat(boxWidth - 2) + "\u2502";
|
|
33029
|
+
const bottomBorder = "\u2570" + "\u2500".repeat(boxWidth - 2) + "\u256F";
|
|
33030
|
+
console.log(import_chalk18.default.white(topBorder));
|
|
33031
|
+
console.log(import_chalk18.default.white(middleLine));
|
|
33032
|
+
console.log(import_chalk18.default.white(bottomBorder));
|
|
33029
33033
|
const line = await rl.question(import_chalk18.default.cyan("> "));
|
|
33030
33034
|
if (line.toLowerCase() === "exit" || line.toLowerCase() === "quit") {
|
|
33031
33035
|
await stop();
|
|
@@ -33107,6 +33111,7 @@ var init_cli = __esm({
|
|
|
33107
33111
|
init_version();
|
|
33108
33112
|
init_animations();
|
|
33109
33113
|
init_cli_auth();
|
|
33114
|
+
init_responsive_width();
|
|
33110
33115
|
session = [];
|
|
33111
33116
|
commandManager = null;
|
|
33112
33117
|
startupDisplayed = false;
|