@bonginkan/maria 4.3.35 → 4.3.37
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 +26 -18
- package/dist/bin/maria.cjs +1154 -441
- package/dist/bin/maria.cjs.map +1 -1
- package/dist/cli.cjs +1156 -443
- 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 +52 -12
- package/dist/server/express-server.js +52 -12
- package/dist/server-express.cjs +52 -12
- package/dist/server-express.cjs.map +1 -1
- package/package.json +2 -2
- package/src/slash-commands/READY.manifest.json +26 -18
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bonginkan/maria",
|
|
3
|
-
"version": "4.3.
|
|
4
|
-
"description": "🚀 MARIA v4.3.
|
|
3
|
+
"version": "4.3.37",
|
|
4
|
+
"description": "🚀 MARIA v4.3.37 - 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.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
7
7
|
"cli",
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": "lite-1.0.0",
|
|
3
|
-
"generatedAt": "2025-10-
|
|
4
|
-
"totalCommands":
|
|
5
|
-
"readyCount":
|
|
3
|
+
"generatedAt": "2025-10-05T04:35:10.910Z",
|
|
4
|
+
"totalCommands": 17,
|
|
5
|
+
"readyCount": 17,
|
|
6
6
|
"partialCount": 0,
|
|
7
7
|
"brokenCount": 0,
|
|
8
8
|
"commands": {
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"hasMetadata": true,
|
|
13
13
|
"depsAvailable": true,
|
|
14
14
|
"description": "Show command help and documentation",
|
|
15
|
-
"usage": "/help [command]
|
|
15
|
+
"usage": "/help [command]"
|
|
16
16
|
},
|
|
17
17
|
"core/version": {
|
|
18
18
|
"status": "READY",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"hasMetadata": true,
|
|
45
45
|
"depsAvailable": true,
|
|
46
46
|
"description": "Clear conversation history",
|
|
47
|
-
"usage": "/clear"
|
|
47
|
+
"usage": "/clear [--mode display|session|all]"
|
|
48
48
|
},
|
|
49
49
|
"system/status": {
|
|
50
50
|
"status": "READY",
|
|
@@ -70,6 +70,22 @@
|
|
|
70
70
|
"description": "Show current authenticated user information",
|
|
71
71
|
"usage": "/whoami"
|
|
72
72
|
},
|
|
73
|
+
"auth/login": {
|
|
74
|
+
"status": "READY",
|
|
75
|
+
"hasExecute": true,
|
|
76
|
+
"hasMetadata": true,
|
|
77
|
+
"depsAvailable": true,
|
|
78
|
+
"description": "Login to MARIA CLI",
|
|
79
|
+
"usage": "/login"
|
|
80
|
+
},
|
|
81
|
+
"auth/logout": {
|
|
82
|
+
"status": "READY",
|
|
83
|
+
"hasExecute": true,
|
|
84
|
+
"hasMetadata": true,
|
|
85
|
+
"depsAvailable": true,
|
|
86
|
+
"description": "Logout from MARIA CLI",
|
|
87
|
+
"usage": "/logout"
|
|
88
|
+
},
|
|
73
89
|
"configuration/setup": {
|
|
74
90
|
"status": "READY",
|
|
75
91
|
"hasExecute": true,
|
|
@@ -92,7 +108,7 @@
|
|
|
92
108
|
"hasMetadata": true,
|
|
93
109
|
"depsAvailable": true,
|
|
94
110
|
"description": "Generate code with AI assistance",
|
|
95
|
-
"usage": "/code [
|
|
111
|
+
"usage": "/code \"prompt\" [--plan-only|--sow] [--apply] [--dry-run] [--interactive] [--yes] [--max-files N] [--root DIR] [--rollback on|off] [--output names|summary|detail|diff] [--no-code] [--preview-lines N] [--verbose] [--only-attached] [--attach-mode strict|assist] [--max-attachments N] [--diff-lines N] [--diff-bytes N] [--diff-hunks N] [--confirm-overwrites <globs>] [--git-guard on|off] [--git-commit on|off] [--git-branch <name>] [--git-tag <name>] [--git-tag-prefix <pfx>] [--git-push on|off] [--git-push-remote <name>] [--allow-dotfiles]"
|
|
96
112
|
},
|
|
97
113
|
"memory/recall": {
|
|
98
114
|
"status": "READY",
|
|
@@ -100,15 +116,7 @@
|
|
|
100
116
|
"hasMetadata": true,
|
|
101
117
|
"depsAvailable": true,
|
|
102
118
|
"description": "Retrieve stored memories",
|
|
103
|
-
"usage": "/recall [
|
|
104
|
-
},
|
|
105
|
-
"memory/memory-status": {
|
|
106
|
-
"status": "READY",
|
|
107
|
-
"hasExecute": true,
|
|
108
|
-
"hasMetadata": true,
|
|
109
|
-
"depsAvailable": true,
|
|
110
|
-
"description": "Show memory usage statistics and health",
|
|
111
|
-
"usage": "/memory-status"
|
|
119
|
+
"usage": "/recall \"query\" [--tags t1,t2] [--limit N]"
|
|
112
120
|
},
|
|
113
121
|
"multimodal/image": {
|
|
114
122
|
"status": "READY",
|
|
@@ -116,7 +124,7 @@
|
|
|
116
124
|
"hasMetadata": true,
|
|
117
125
|
"depsAvailable": true,
|
|
118
126
|
"description": "Generate images with AI",
|
|
119
|
-
"usage": "/image \"prompt\" [--size 1024x1024] [--format webp|
|
|
127
|
+
"usage": "/image \"prompt\" [--size 1024x1024] [--format png|webp|jpg] [--count N]"
|
|
120
128
|
},
|
|
121
129
|
"multimodal/video": {
|
|
122
130
|
"status": "READY",
|
|
@@ -124,7 +132,7 @@
|
|
|
124
132
|
"hasMetadata": true,
|
|
125
133
|
"depsAvailable": true,
|
|
126
134
|
"description": "Generate videos with AI",
|
|
127
|
-
"usage": "/video \"prompt\"
|
|
135
|
+
"usage": "/video \"prompt\""
|
|
128
136
|
},
|
|
129
137
|
"workflow/resume": {
|
|
130
138
|
"status": "READY",
|
|
@@ -132,7 +140,7 @@
|
|
|
132
140
|
"hasMetadata": true,
|
|
133
141
|
"depsAvailable": true,
|
|
134
142
|
"description": "Resume previous task context and propose next /code step",
|
|
135
|
-
"usage": "/workflow/resume [
|
|
143
|
+
"usage": "/workflow/resume [<taskId>] [--latest] [--date YYYY-MM-DD] [--limit N] [--rehydrate summary|full] [--open] [--tests] [--fix] [--apply] [--dry-run]"
|
|
136
144
|
}
|
|
137
145
|
}
|
|
138
146
|
}
|