@bonginkan/maria 4.1.13 → 4.1.14

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": "2.0.0",
3
- "generatedAt": "2025-09-01T11:32:37.370Z",
3
+ "generatedAt": "2025-09-01T11:39:38.426Z",
4
4
  "totalCommands": 64,
5
5
  "readyCount": 59,
6
6
  "partialCount": 0,
@@ -153,13 +153,6 @@
153
153
  "depsAvailable": true,
154
154
  "description": "Evaluate and test AI model performance"
155
155
  },
156
- "conversation/clear": {
157
- "status": "READY",
158
- "hasExecute": true,
159
- "hasMetadata": true,
160
- "depsAvailable": true,
161
- "description": "Clear conversation history"
162
- },
163
156
  "core/whoami": {
164
157
  "status": "READY",
165
158
  "hasExecute": true,
@@ -272,12 +265,12 @@
272
265
  "depsAvailable": true,
273
266
  "description": "About MARIA - version, features, and credits"
274
267
  },
275
- "configuration/unknown": {
268
+ "conversation/clear": {
276
269
  "status": "READY",
277
270
  "hasExecute": true,
278
- "hasMetadata": false,
271
+ "hasMetadata": true,
279
272
  "depsAvailable": true,
280
- "description": "Handle unknown command fallback"
273
+ "description": "Clear conversation history"
281
274
  },
282
275
  "configuration/setup": {
283
276
  "status": "READY",
@@ -328,6 +321,14 @@
328
321
  "depsAvailable": true,
329
322
  "description": "GPU management and monitoring"
330
323
  },
324
+ "analysis/research": {
325
+ "status": "BROKEN",
326
+ "error": "Transform failed with 1 error:\n/Users/bongin_max/maria_code/src/shared/handlers/SlashCommandHandlerV2.ts:30:9: ERROR: Multiple exports with the same name \"SlashCommandHandler\"",
327
+ "hasExecute": false,
328
+ "hasMetadata": false,
329
+ "depsAvailable": false,
330
+ "description": "AI-powered research and analysis"
331
+ },
331
332
  "system/terminal-setup": {
332
333
  "status": "READY",
333
334
  "hasExecute": true,
@@ -342,14 +343,6 @@
342
343
  "depsAvailable": true,
343
344
  "description": "First-time environment setup wizard"
344
345
  },
345
- "analysis/research": {
346
- "status": "BROKEN",
347
- "error": "Transform failed with 1 error:\n/Users/bongin_max/maria_code/src/shared/handlers/SlashCommandHandlerV2.ts:30:9: ERROR: Multiple exports with the same name \"SlashCommandHandler\"",
348
- "hasExecute": false,
349
- "hasMetadata": false,
350
- "depsAvailable": false,
351
- "description": "AI-powered research and analysis"
352
- },
353
346
  "core/update": {
354
347
  "status": "READY",
355
348
  "hasExecute": true,
@@ -378,6 +371,13 @@
378
371
  "depsAvailable": true,
379
372
  "description": "Select and configure AI model"
380
373
  },
374
+ "configuration/unknown": {
375
+ "status": "READY",
376
+ "hasExecute": true,
377
+ "hasMetadata": false,
378
+ "depsAvailable": true,
379
+ "description": "Handle unknown command fallback"
380
+ },
381
381
  "configuration/config": {
382
382
  "status": "READY",
383
383
  "hasExecute": true,
@@ -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.13",
21248
+ version: "4.1.14",
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",
@@ -29103,6 +29103,14 @@ var init_HelpCommand = __esm({
29103
29103
  lines.push(" /help --stats - Performance statistics");
29104
29104
  lines.push(" /help --search <term> - Search with fuzzy matching");
29105
29105
  lines.push("");
29106
+ let globalMaxNameLength = 0;
29107
+ for (const category of categories) {
29108
+ const showCommands = category.commands.slice(0, 4);
29109
+ for (const cmd of showCommands) {
29110
+ globalMaxNameLength = Math.max(globalMaxNameLength, cmd.name.length);
29111
+ }
29112
+ }
29113
+ globalMaxNameLength = Math.max(globalMaxNameLength, 18) + 1;
29106
29114
  for (const category of categories) {
29107
29115
  lines.push(`**${category.name.toUpperCase()} (${category.count})**`);
29108
29116
  const showCommands = category.commands.slice(0, 4);
@@ -29114,10 +29122,12 @@ var init_HelpCommand = __esm({
29114
29122
  /\*GPU needed - Local LLM only \(Pro\+ members only\)/g,
29115
29123
  ""
29116
29124
  ).trim();
29117
- lines.push(` /${cmd.name} - ${description}`);
29125
+ const paddedName = `/${cmd.name}`.padEnd(globalMaxNameLength + 5);
29126
+ lines.push(` ${paddedName} - ${description}`);
29118
29127
  lines.push(` *GPU needed - Local LLM (Pro+ only)`);
29119
29128
  } else {
29120
- lines.push(` /${cmd.name} - ${description}`);
29129
+ const paddedName = `/${cmd.name}`.padEnd(globalMaxNameLength + 5);
29130
+ lines.push(` ${paddedName} - ${description}`);
29121
29131
  }
29122
29132
  }
29123
29133
  if (category.count > 4) {
@@ -33065,26 +33075,9 @@ async function startInteractiveSession() {
33065
33075
  if (interactiveCLI) {
33066
33076
  while (true) {
33067
33077
  try {
33068
- const terminalWidth = process.stdout.columns || 80;
33069
- const FIXED_MARGIN = 3;
33070
- const MIN_WIDTH = 40;
33071
- const MAX_WIDTH = 120;
33072
- const availableWidth = terminalWidth - FIXED_MARGIN * 2;
33073
- const boxWidth = Math.min(Math.max(MIN_WIDTH, availableWidth), MAX_WIDTH);
33074
- let leftPadding;
33075
- if (boxWidth === MAX_WIDTH && terminalWidth > MAX_WIDTH + FIXED_MARGIN * 2) {
33076
- const totalPadding = terminalWidth - boxWidth;
33077
- leftPadding = " ".repeat(Math.floor(totalPadding / 2));
33078
- } else {
33079
- leftPadding = " ".repeat(FIXED_MARGIN);
33080
- }
33081
- const promptSymbol = "> ";
33082
- const promptLength = 2;
33083
- process.stdout.write(leftPadding + import_chalk18.default.white("\u2502 ") + import_chalk18.default.cyan(promptSymbol));
33078
+ const prompt = import_chalk18.default.gray("> ");
33079
+ process.stdout.write(prompt);
33084
33080
  const line = await interactiveCLI.question("");
33085
- const inputLength = line.length + promptLength;
33086
- const remainingSpace = Math.max(0, boxWidth - inputLength - 4);
33087
- process.stdout.write(" ".repeat(remainingSpace) + import_chalk18.default.white(" \u2502"));
33088
33081
  console.log();
33089
33082
  if (line.toLowerCase() === "exit" || line.toLowerCase() === "quit") {
33090
33083
  await stop();
@@ -33104,24 +33097,8 @@ async function startInteractiveSession() {
33104
33097
  const rl = readline5.createInterface({ input: import_node_process3.stdin, output: import_node_process3.stdout });
33105
33098
  while (true) {
33106
33099
  try {
33107
- const terminalWidth = process.stdout.columns || 80;
33108
- const FIXED_MARGIN = 3;
33109
- const MIN_WIDTH = 40;
33110
- const MAX_WIDTH = 120;
33111
- const availableWidth = terminalWidth - FIXED_MARGIN * 2;
33112
- const boxWidth = Math.min(Math.max(MIN_WIDTH, availableWidth), MAX_WIDTH);
33113
- let leftPadding;
33114
- if (boxWidth === MAX_WIDTH && terminalWidth > MAX_WIDTH + FIXED_MARGIN * 2) {
33115
- const totalPadding = terminalWidth - boxWidth;
33116
- leftPadding = " ".repeat(Math.floor(totalPadding / 2));
33117
- } else {
33118
- leftPadding = " ".repeat(FIXED_MARGIN);
33119
- }
33120
- const prompt = leftPadding + import_chalk18.default.white("\u2502 ") + import_chalk18.default.cyan("> ");
33100
+ const prompt = import_chalk18.default.gray("> ");
33121
33101
  const line = await rl.question(prompt);
33122
- const inputLength = line.length + 2;
33123
- const remainingSpace = Math.max(0, boxWidth - inputLength - 4);
33124
- process.stdout.write(" ".repeat(remainingSpace) + import_chalk18.default.white(" \u2502"));
33125
33102
  console.log();
33126
33103
  if (line.toLowerCase() === "exit" || line.toLowerCase() === "quit") {
33127
33104
  await stop();