@bonginkan/maria 4.3.35 → 4.3.36
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 -10
- package/dist/bin/maria.cjs +909 -233
- package/dist/bin/maria.cjs.map +1 -1
- package/dist/cli.cjs +911 -235
- 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 +49 -9
- package/dist/server/express-server.js +49 -9
- package/dist/server-express.cjs +49 -9
- package/dist/server-express.cjs.map +1 -1
- package/package.json +2 -2
- package/src/slash-commands/READY.manifest.json +26 -10
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.36",
|
|
4
|
+
"description": "🚀 MARIA v4.3.36 - 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-03T06:19:05.074Z",
|
|
4
|
+
"totalCommands": 18,
|
|
5
|
+
"readyCount": 18,
|
|
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,7 +116,7 @@
|
|
|
100
116
|
"hasMetadata": true,
|
|
101
117
|
"depsAvailable": true,
|
|
102
118
|
"description": "Retrieve stored memories",
|
|
103
|
-
"usage": "/recall [
|
|
119
|
+
"usage": "/recall \"query\" [--tags t1,t2] [--limit N]"
|
|
104
120
|
},
|
|
105
121
|
"memory/memory-status": {
|
|
106
122
|
"status": "READY",
|
|
@@ -116,7 +132,7 @@
|
|
|
116
132
|
"hasMetadata": true,
|
|
117
133
|
"depsAvailable": true,
|
|
118
134
|
"description": "Generate images with AI",
|
|
119
|
-
"usage": "/image \"prompt\" [--size 1024x1024] [--format webp|
|
|
135
|
+
"usage": "/image \"prompt\" [--size 1024x1024] [--format png|webp|jpg] [--count N]"
|
|
120
136
|
},
|
|
121
137
|
"multimodal/video": {
|
|
122
138
|
"status": "READY",
|
|
@@ -124,7 +140,7 @@
|
|
|
124
140
|
"hasMetadata": true,
|
|
125
141
|
"depsAvailable": true,
|
|
126
142
|
"description": "Generate videos with AI",
|
|
127
|
-
"usage": "/video \"prompt\"
|
|
143
|
+
"usage": "/video \"prompt\""
|
|
128
144
|
},
|
|
129
145
|
"workflow/resume": {
|
|
130
146
|
"status": "READY",
|
|
@@ -132,7 +148,7 @@
|
|
|
132
148
|
"hasMetadata": true,
|
|
133
149
|
"depsAvailable": true,
|
|
134
150
|
"description": "Resume previous task context and propose next /code step",
|
|
135
|
-
"usage": "/workflow/resume [
|
|
151
|
+
"usage": "/workflow/resume [<taskId>] [--latest] [--date YYYY-MM-DD] [--limit N] [--rehydrate summary|full] [--open] [--tests] [--fix] [--apply] [--dry-run]"
|
|
136
152
|
}
|
|
137
153
|
}
|
|
138
154
|
}
|