@bonginkan/maria 4.1.2 → 4.1.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.
@@ -12826,7 +12826,7 @@ var init_system1_memory = __esm({
12826
12826
  return this.patternLibrary;
12827
12827
  }
12828
12828
  // Knowledge Node Management
12829
- async addKnowledgeNode(type, name2, content, embedding, metadata = {}) {
12829
+ async addKnowledgeNode(type, name2, content, embedding, metadata2 = {}) {
12830
12830
  const _node = {
12831
12831
  id: this.generateNodeId(type, name2),
12832
12832
  type,
@@ -12840,7 +12840,7 @@ var init_system1_memory = __esm({
12840
12840
  complexity: "medium",
12841
12841
  _quality: 0.8,
12842
12842
  relevance: 0.8,
12843
- ...metadata
12843
+ ...metadata2
12844
12844
  }
12845
12845
  };
12846
12846
  this.knowledgeNodes.set(_node.id, _node);
@@ -15070,11 +15070,11 @@ var init_MemoryService = __esm({
15070
15070
  /**
15071
15071
  * 知識ノードの追加
15072
15072
  */
15073
- async addKnowledge(key2, value, metadata) {
15073
+ async addKnowledge(key2, value, metadata2) {
15074
15074
  if (!this._engine) {
15075
15075
  throw new Error("Memory system not initialized");
15076
15076
  }
15077
- await this._engine.addKnowledge(key2, value, metadata);
15077
+ await this._engine.addKnowledge(key2, value, metadata2);
15078
15078
  }
15079
15079
  /**
15080
15080
  * コンテキストの更新
@@ -21245,8 +21245,8 @@ var init_package = __esm({
21245
21245
  "package.json"() {
21246
21246
  package_default = {
21247
21247
  name: "@bonginkan/maria",
21248
- version: "4.1.2",
21249
- description: "\u{1F680} MARIA v4.1.0 - Complete Multimodal AI Integration & Enterprise Platform. Revolutionary voice-to-code, image-to-code, and real-time collaboration features. World's first TypeScript AST-powered code generation with Git safety systems, 5-stage validation pipeline, and enterprise quality gates. Features Phase 1-4 complete implementation with zero errors, advanced operational transform, and production-ready streaming. Delivers next-generation development experience with multimodal AI capabilities.",
21248
+ version: "4.1.4",
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",
21252
21252
  "cli",
@@ -25280,27 +25280,27 @@ var init_command_groups = __esm({
25280
25280
  usage: "/paper [content] [--source type] [--language lang]",
25281
25281
  examples: ['/paper "Implement QuickSort algorithm"', "/paper --source pdf paper.pdf"]
25282
25282
  },
25283
- // Media Generation
25283
+ // Multimodal Generation (Cloud-Ready)
25284
25284
  "/image": {
25285
25285
  name: "/image",
25286
- description: "Generate images using Gemini 2.5 Flash Image Preview",
25286
+ description: "Generate images using AI (cloud-only, FREE tier)",
25287
25287
  category: "multimodal",
25288
- usage: "/image [prompt] [--save] [--output=filename]",
25289
- examples: ["/image A sunset over mountains", "/image Logo design for tech company --save", "/image Abstract art --output=art.png"]
25288
+ usage: "/image <prompt> [--style=realistic|artistic|cartoon] [--size=1024x1024]",
25289
+ examples: ["/image sunset over mountains --style=realistic", "/image Logo design for tech company --style=artistic", "/image Abstract art --size=512x512"]
25290
25290
  },
25291
25291
  "/video": {
25292
25292
  name: "/video",
25293
- description: "Generate videos using Google Veo 2.0 model",
25293
+ description: "Generate videos using AI (cloud-only, PRO+ required)",
25294
25294
  category: "multimodal",
25295
- usage: "/video [prompt] [--duration=seconds] [--aspect=ratio]",
25296
- examples: ['/video "A sunset over mountains"', '/video "Cat playing" --duration=10 --save']
25295
+ usage: "/video <prompt> [--duration=5|10|15] [--style=cinematic|documentary|cartoon]",
25296
+ examples: ['/video "A cat playing piano" --duration=10', '/video "Sunset timelapse" --style=cinematic']
25297
25297
  },
25298
25298
  "/voice": {
25299
25299
  name: "/voice",
25300
- description: "Generate voice/audio using Gemini 2.5 Flash Native Audio Dialog",
25300
+ description: "Generate speech from text (cloud-only, STARTER+ required)",
25301
25301
  category: "multimodal",
25302
- usage: "/voice [text] [--voice=name] [--output=filename]",
25303
- examples: ['/voice "Tell me a story"', '/voice "Hello world" --voice=Zephyr --output=greeting.wav']
25302
+ usage: "/voice <text> [--voice=alloy|echo|fable|nova] [--speed=0.5-2.0]",
25303
+ examples: ['/voice "Hello world" --voice=nova', '/voice "Welcome to MARIA" --speed=1.2']
25304
25304
  },
25305
25305
  "/avatar": {
25306
25306
  name: "/avatar",
@@ -25665,20 +25665,20 @@ var init_command_groups = __esm({
25665
25665
  usage: "/migrate-installer",
25666
25666
  examples: ["/migrate-installer"]
25667
25667
  },
25668
- // System & Diagnostics
25668
+ // System & Diagnostics (Enhanced)
25669
25669
  "/status": {
25670
25670
  name: "/status",
25671
- description: "Show system status",
25671
+ description: "System health monitoring with API connectivity checks",
25672
25672
  category: "system",
25673
- usage: "/status",
25674
- examples: ["/status"]
25673
+ usage: "/status [--json] [--exit-code]",
25674
+ examples: ["/status", "/status --json", "/status --exit-code"]
25675
25675
  },
25676
25676
  "/doctor": {
25677
25677
  name: "/doctor",
25678
- description: "Run system diagnostics",
25678
+ description: "Comprehensive system diagnostics with actionable fixes",
25679
25679
  category: "system",
25680
- usage: "/doctor",
25681
- examples: ["/doctor"]
25680
+ usage: "/doctor [--verbose] [--fix]",
25681
+ examples: ["/doctor", "/doctor --verbose", "/doctor --fix"]
25682
25682
  },
25683
25683
  "/cost": {
25684
25684
  name: "/cost",
@@ -25954,16 +25954,16 @@ var init_command_groups = __esm({
25954
25954
  "/optimize-structure --apply"
25955
25955
  ]
25956
25956
  },
25957
- // Business Operations
25957
+ // Business Operations (Enhanced)
25958
25958
  "/battlecard": {
25959
25959
  name: "/battlecard",
25960
- description: "Generate competitive battlecards with talk scripts and PDF creation",
25960
+ description: "Generate competitive battlecards with talk scripts (PRO+ required)",
25961
25961
  category: "business",
25962
- usage: "/battlecard --competitor <company_name> [options]",
25962
+ usage: "/battlecard --competitor <name> [--customer <company>] [--industry <type>] [--size <enterprise|mid-market|smb>]",
25963
25963
  examples: [
25964
25964
  '/battlecard --competitor "CompetitorX"',
25965
25965
  '/battlecard -c "CompetitorY" --customer "ABC Manufacturing" --industry manufacturing',
25966
- '/battlecard -c "CompetitorZ" --size enterprise --pain "cost_reduction,efficiency"'
25966
+ '/battlecard -c "CompetitorZ" --size enterprise'
25967
25967
  ]
25968
25968
  },
25969
25969
  "/tune": {
@@ -25979,13 +25979,13 @@ var init_command_groups = __esm({
25979
25979
  },
25980
25980
  "/sales-dashboard": {
25981
25981
  name: "/sales-dashboard",
25982
- description: "Interactive TUI sales dashboard with real-time updates",
25982
+ description: "Interactive TUI sales dashboard with real-time updates (STARTER+ required)",
25983
25983
  category: "business",
25984
- usage: "/sales-dashboard [options]",
25984
+ usage: "/sales-dashboard [--profile=executive|manager|rep] [--theme=light|dark] [--format=tui|json|slack]",
25985
25985
  examples: [
25986
25986
  "/sales-dashboard",
25987
25987
  "/sales-dashboard --profile executive --theme light",
25988
- "/sales-dashboard --format json --export csv",
25988
+ "/sales-dashboard --format json",
25989
25989
  "/sales-dashboard --format slack"
25990
25990
  ]
25991
25991
  },
@@ -26959,7 +26959,7 @@ var init_base_command = __esm({
26959
26959
  /**
26960
26960
  * Create a success response
26961
26961
  */
26962
- success(message, data2, metadata) {
26962
+ success(message, data2, metadata2) {
26963
26963
  return {
26964
26964
  success: true,
26965
26965
  message,
@@ -26967,7 +26967,7 @@ var init_base_command = __esm({
26967
26967
  metadata: {
26968
26968
  executionTime: Date.now(),
26969
26969
  commandVersion: this.metadata.version,
26970
- ...metadata
26970
+ ...metadata2
26971
26971
  }
26972
26972
  };
26973
26973
  }
@@ -27988,9 +27988,21 @@ var init_memory_status_command = __esm({
27988
27988
  // src/slash-commands/categories/memory/MemoryCommandService.ts
27989
27989
  var MemoryCommandService_exports = {};
27990
27990
  __export(MemoryCommandService_exports, {
27991
- MemoryCommandService: () => MemoryCommandService
27991
+ MemoryCommandService: () => MemoryCommandService,
27992
+ execute: () => execute,
27993
+ metadata: () => metadata
27992
27994
  });
27993
- var MemoryCommandService;
27995
+ async function execute(context2) {
27996
+ const service = new MemoryCommandService();
27997
+ service.registerHandlers();
27998
+ return {
27999
+ success: true,
28000
+ output: "Memory command service initialized",
28001
+ requiresInput: false,
28002
+ endReason: "success"
28003
+ };
28004
+ }
28005
+ var MemoryCommandService, metadata;
27994
28006
  var init_MemoryCommandService = __esm({
27995
28007
  "src/slash-commands/categories/memory/MemoryCommandService.ts"() {
27996
28008
  init_BaseCommandService();
@@ -27999,7 +28011,7 @@ var init_MemoryCommandService = __esm({
27999
28011
  init_forget_command();
28000
28012
  init_memory_status_command();
28001
28013
  MemoryCommandService = class extends BaseCommandService {
28002
- category = "development";
28014
+ category = "memory";
28003
28015
  registerHandlers() {
28004
28016
  this.handlers.set("/remember", new RememberCommand());
28005
28017
  this.handlers.set("/recall", new RecallCommand());
@@ -28008,6 +28020,15 @@ var init_MemoryCommandService = __esm({
28008
28020
  this.handlers.set("/memory", new MemoryStatusCommand());
28009
28021
  }
28010
28022
  };
28023
+ metadata = {
28024
+ name: "memory-service",
28025
+ description: "Memory command service handler",
28026
+ category: "memory",
28027
+ version: "1.0.0",
28028
+ type: "functional",
28029
+ planRequired: "free",
28030
+ isPreview: false
28031
+ };
28011
28032
  }
28012
28033
  });
28013
28034