@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.
- package/README.md +477 -28
- package/dist/bin/maria.cjs +56 -35
- package/dist/bin/maria.cjs.map +1 -1
- package/dist/cli.cjs +56 -35
- package/dist/cli.cjs.map +1 -1
- package/dist/index.js +6988 -669
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/cli.cjs
CHANGED
|
@@ -10908,27 +10908,27 @@ var init_command_groups = __esm({
|
|
|
10908
10908
|
usage: "/paper [content] [--source type] [--language lang]",
|
|
10909
10909
|
examples: ['/paper "Implement QuickSort algorithm"', "/paper --source pdf paper.pdf"]
|
|
10910
10910
|
},
|
|
10911
|
-
//
|
|
10911
|
+
// Multimodal Generation (Cloud-Ready)
|
|
10912
10912
|
"/image": {
|
|
10913
10913
|
name: "/image",
|
|
10914
|
-
description: "Generate images using
|
|
10914
|
+
description: "Generate images using AI (cloud-only, FREE tier)",
|
|
10915
10915
|
category: "multimodal",
|
|
10916
|
-
usage: "/image
|
|
10917
|
-
examples: ["/image
|
|
10916
|
+
usage: "/image <prompt> [--style=realistic|artistic|cartoon] [--size=1024x1024]",
|
|
10917
|
+
examples: ["/image sunset over mountains --style=realistic", "/image Logo design for tech company --style=artistic", "/image Abstract art --size=512x512"]
|
|
10918
10918
|
},
|
|
10919
10919
|
"/video": {
|
|
10920
10920
|
name: "/video",
|
|
10921
|
-
description: "Generate videos using
|
|
10921
|
+
description: "Generate videos using AI (cloud-only, PRO+ required)",
|
|
10922
10922
|
category: "multimodal",
|
|
10923
|
-
usage: "/video
|
|
10924
|
-
examples: ['/video "A
|
|
10923
|
+
usage: "/video <prompt> [--duration=5|10|15] [--style=cinematic|documentary|cartoon]",
|
|
10924
|
+
examples: ['/video "A cat playing piano" --duration=10', '/video "Sunset timelapse" --style=cinematic']
|
|
10925
10925
|
},
|
|
10926
10926
|
"/voice": {
|
|
10927
10927
|
name: "/voice",
|
|
10928
|
-
description: "Generate
|
|
10928
|
+
description: "Generate speech from text (cloud-only, STARTER+ required)",
|
|
10929
10929
|
category: "multimodal",
|
|
10930
|
-
usage: "/voice
|
|
10931
|
-
examples: ['/voice "
|
|
10930
|
+
usage: "/voice <text> [--voice=alloy|echo|fable|nova] [--speed=0.5-2.0]",
|
|
10931
|
+
examples: ['/voice "Hello world" --voice=nova', '/voice "Welcome to MARIA" --speed=1.2']
|
|
10932
10932
|
},
|
|
10933
10933
|
"/avatar": {
|
|
10934
10934
|
name: "/avatar",
|
|
@@ -11293,20 +11293,20 @@ var init_command_groups = __esm({
|
|
|
11293
11293
|
usage: "/migrate-installer",
|
|
11294
11294
|
examples: ["/migrate-installer"]
|
|
11295
11295
|
},
|
|
11296
|
-
// System & Diagnostics
|
|
11296
|
+
// System & Diagnostics (Enhanced)
|
|
11297
11297
|
"/status": {
|
|
11298
11298
|
name: "/status",
|
|
11299
|
-
description: "
|
|
11299
|
+
description: "System health monitoring with API connectivity checks",
|
|
11300
11300
|
category: "system",
|
|
11301
|
-
usage: "/status",
|
|
11302
|
-
examples: ["/status"]
|
|
11301
|
+
usage: "/status [--json] [--exit-code]",
|
|
11302
|
+
examples: ["/status", "/status --json", "/status --exit-code"]
|
|
11303
11303
|
},
|
|
11304
11304
|
"/doctor": {
|
|
11305
11305
|
name: "/doctor",
|
|
11306
|
-
description: "
|
|
11306
|
+
description: "Comprehensive system diagnostics with actionable fixes",
|
|
11307
11307
|
category: "system",
|
|
11308
|
-
usage: "/doctor",
|
|
11309
|
-
examples: ["/doctor"]
|
|
11308
|
+
usage: "/doctor [--verbose] [--fix]",
|
|
11309
|
+
examples: ["/doctor", "/doctor --verbose", "/doctor --fix"]
|
|
11310
11310
|
},
|
|
11311
11311
|
"/cost": {
|
|
11312
11312
|
name: "/cost",
|
|
@@ -11582,16 +11582,16 @@ var init_command_groups = __esm({
|
|
|
11582
11582
|
"/optimize-structure --apply"
|
|
11583
11583
|
]
|
|
11584
11584
|
},
|
|
11585
|
-
// Business Operations
|
|
11585
|
+
// Business Operations (Enhanced)
|
|
11586
11586
|
"/battlecard": {
|
|
11587
11587
|
name: "/battlecard",
|
|
11588
|
-
description: "Generate competitive battlecards with talk scripts
|
|
11588
|
+
description: "Generate competitive battlecards with talk scripts (PRO+ required)",
|
|
11589
11589
|
category: "business",
|
|
11590
|
-
usage: "/battlecard --competitor <
|
|
11590
|
+
usage: "/battlecard --competitor <name> [--customer <company>] [--industry <type>] [--size <enterprise|mid-market|smb>]",
|
|
11591
11591
|
examples: [
|
|
11592
11592
|
'/battlecard --competitor "CompetitorX"',
|
|
11593
11593
|
'/battlecard -c "CompetitorY" --customer "ABC Manufacturing" --industry manufacturing',
|
|
11594
|
-
'/battlecard -c "CompetitorZ" --size enterprise
|
|
11594
|
+
'/battlecard -c "CompetitorZ" --size enterprise'
|
|
11595
11595
|
]
|
|
11596
11596
|
},
|
|
11597
11597
|
"/tune": {
|
|
@@ -11607,13 +11607,13 @@ var init_command_groups = __esm({
|
|
|
11607
11607
|
},
|
|
11608
11608
|
"/sales-dashboard": {
|
|
11609
11609
|
name: "/sales-dashboard",
|
|
11610
|
-
description: "Interactive TUI sales dashboard with real-time updates",
|
|
11610
|
+
description: "Interactive TUI sales dashboard with real-time updates (STARTER+ required)",
|
|
11611
11611
|
category: "business",
|
|
11612
|
-
usage: "/sales-dashboard [
|
|
11612
|
+
usage: "/sales-dashboard [--profile=executive|manager|rep] [--theme=light|dark] [--format=tui|json|slack]",
|
|
11613
11613
|
examples: [
|
|
11614
11614
|
"/sales-dashboard",
|
|
11615
11615
|
"/sales-dashboard --profile executive --theme light",
|
|
11616
|
-
"/sales-dashboard --format json
|
|
11616
|
+
"/sales-dashboard --format json",
|
|
11617
11617
|
"/sales-dashboard --format slack"
|
|
11618
11618
|
]
|
|
11619
11619
|
},
|
|
@@ -12772,7 +12772,7 @@ var init_base_command = __esm({
|
|
|
12772
12772
|
/**
|
|
12773
12773
|
* Create a success response
|
|
12774
12774
|
*/
|
|
12775
|
-
success(message, data2,
|
|
12775
|
+
success(message, data2, metadata2) {
|
|
12776
12776
|
return {
|
|
12777
12777
|
success: true,
|
|
12778
12778
|
message,
|
|
@@ -12780,7 +12780,7 @@ var init_base_command = __esm({
|
|
|
12780
12780
|
metadata: {
|
|
12781
12781
|
executionTime: Date.now(),
|
|
12782
12782
|
commandVersion: this.metadata.version,
|
|
12783
|
-
...
|
|
12783
|
+
...metadata2
|
|
12784
12784
|
}
|
|
12785
12785
|
};
|
|
12786
12786
|
}
|
|
@@ -13794,9 +13794,21 @@ var init_memory_status_command = __esm({
|
|
|
13794
13794
|
// src/slash-commands/categories/memory/MemoryCommandService.ts
|
|
13795
13795
|
var MemoryCommandService_exports = {};
|
|
13796
13796
|
__export(MemoryCommandService_exports, {
|
|
13797
|
-
MemoryCommandService: () => MemoryCommandService
|
|
13797
|
+
MemoryCommandService: () => MemoryCommandService,
|
|
13798
|
+
execute: () => execute,
|
|
13799
|
+
metadata: () => metadata
|
|
13798
13800
|
});
|
|
13799
|
-
|
|
13801
|
+
async function execute(context2) {
|
|
13802
|
+
const service = new MemoryCommandService();
|
|
13803
|
+
service.registerHandlers();
|
|
13804
|
+
return {
|
|
13805
|
+
success: true,
|
|
13806
|
+
output: "Memory command service initialized",
|
|
13807
|
+
requiresInput: false,
|
|
13808
|
+
endReason: "success"
|
|
13809
|
+
};
|
|
13810
|
+
}
|
|
13811
|
+
var MemoryCommandService, metadata;
|
|
13800
13812
|
var init_MemoryCommandService = __esm({
|
|
13801
13813
|
"src/slash-commands/categories/memory/MemoryCommandService.ts"() {
|
|
13802
13814
|
init_BaseCommandService();
|
|
@@ -13805,7 +13817,7 @@ var init_MemoryCommandService = __esm({
|
|
|
13805
13817
|
init_forget_command();
|
|
13806
13818
|
init_memory_status_command();
|
|
13807
13819
|
MemoryCommandService = class extends BaseCommandService {
|
|
13808
|
-
category = "
|
|
13820
|
+
category = "memory";
|
|
13809
13821
|
registerHandlers() {
|
|
13810
13822
|
this.handlers.set("/remember", new RememberCommand());
|
|
13811
13823
|
this.handlers.set("/recall", new RecallCommand());
|
|
@@ -13814,6 +13826,15 @@ var init_MemoryCommandService = __esm({
|
|
|
13814
13826
|
this.handlers.set("/memory", new MemoryStatusCommand());
|
|
13815
13827
|
}
|
|
13816
13828
|
};
|
|
13829
|
+
metadata = {
|
|
13830
|
+
name: "memory-service",
|
|
13831
|
+
description: "Memory command service handler",
|
|
13832
|
+
category: "memory",
|
|
13833
|
+
version: "1.0.0",
|
|
13834
|
+
type: "functional",
|
|
13835
|
+
planRequired: "free",
|
|
13836
|
+
isPreview: false
|
|
13837
|
+
};
|
|
13817
13838
|
}
|
|
13818
13839
|
});
|
|
13819
13840
|
|
|
@@ -22998,7 +23019,7 @@ var init_system1_memory = __esm({
|
|
|
22998
23019
|
return this.patternLibrary;
|
|
22999
23020
|
}
|
|
23000
23021
|
// Knowledge Node Management
|
|
23001
|
-
async addKnowledgeNode(type, name2, content, embedding,
|
|
23022
|
+
async addKnowledgeNode(type, name2, content, embedding, metadata2 = {}) {
|
|
23002
23023
|
const _node = {
|
|
23003
23024
|
id: this.generateNodeId(type, name2),
|
|
23004
23025
|
type,
|
|
@@ -23012,7 +23033,7 @@ var init_system1_memory = __esm({
|
|
|
23012
23033
|
complexity: "medium",
|
|
23013
23034
|
_quality: 0.8,
|
|
23014
23035
|
relevance: 0.8,
|
|
23015
|
-
...
|
|
23036
|
+
...metadata2
|
|
23016
23037
|
}
|
|
23017
23038
|
};
|
|
23018
23039
|
this.knowledgeNodes.set(_node.id, _node);
|
|
@@ -25122,11 +25143,11 @@ var init_MemoryService = __esm({
|
|
|
25122
25143
|
/**
|
|
25123
25144
|
* 知識ノードの追加
|
|
25124
25145
|
*/
|
|
25125
|
-
async addKnowledge(key2, value,
|
|
25146
|
+
async addKnowledge(key2, value, metadata2) {
|
|
25126
25147
|
if (!this._engine) {
|
|
25127
25148
|
throw new Error("Memory system not initialized");
|
|
25128
25149
|
}
|
|
25129
|
-
await this._engine.addKnowledge(key2, value,
|
|
25150
|
+
await this._engine.addKnowledge(key2, value, metadata2);
|
|
25130
25151
|
}
|
|
25131
25152
|
/**
|
|
25132
25153
|
* コンテキストの更新
|
|
@@ -31180,8 +31201,8 @@ var init_package = __esm({
|
|
|
31180
31201
|
"package.json"() {
|
|
31181
31202
|
package_default = {
|
|
31182
31203
|
name: "@bonginkan/maria",
|
|
31183
|
-
version: "4.1.
|
|
31184
|
-
description: "\u{1F680} MARIA v4.1.
|
|
31204
|
+
version: "4.1.4",
|
|
31205
|
+
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.",
|
|
31185
31206
|
keywords: [
|
|
31186
31207
|
"ai",
|
|
31187
31208
|
"cli",
|