@bonginkan/maria 1.0.2 → 1.0.5

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 CHANGED
@@ -1,23 +1,36 @@
1
- # MARIA CODE - Advanced AGI Development Assistant
1
+ # MARIA CLI - Intelligent Development Assistant
2
2
 
3
- [![npm version](https://img.shields.io/npm/v/@bonginkan/maria.svg)](https://www.npmjs.com/package/@bonginkan/maria)
4
- [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5
- [![TypeScript](https://img.shields.io/badge/TypeScript-5.0%2B-blue)](https://www.typescriptlang.org/)
6
- [![Node.js](https://img.shields.io/badge/Node.js-18%2B-green)](https://nodejs.org/)
3
+ [![npm version](https://img.shields.io/npm/v/@maria/cli)](https://www.npmjs.com/package/@maria/cli)
4
+ [![Downloads](https://img.shields.io/npm/dt/@maria/cli)](https://www.npmjs.com/package/@maria/cli)
5
+ [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
6
+ [![Node.js Version](https://img.shields.io/badge/node-%3E%3D18.0.0%20%3C%3D22.0.0-brightgreen)](https://nodejs.org)
7
7
 
8
- 🤖 **MARIA CODE** is an advanced AGI (Artificial General Intelligence) development assistant that brings senior engineer-level capabilities to your terminal. With support for 14+ AI models, intelligent routing, and comprehensive development tools, MARIA transforms how you write, review, and deploy code.
8
+ 🤖 **MARIA CLI** is an advanced AI development assistant that brings senior engineer-level capabilities to your terminal. With support for 22+ AI models, intelligent routing, and comprehensive development tools.
9
+
10
+ ## ⚠️ Node.js Compatibility Notice
11
+
12
+ **Recommended: Node.js v22 or lower for best experience**
13
+
14
+ ```bash
15
+ # Check your Node.js version
16
+ node --version
17
+
18
+ # If using Node.js v24, switch to v22:
19
+ nvm install 22
20
+ nvm use 22
21
+ ```
9
22
 
10
23
  ## 🚀 Quick Start
11
24
 
12
25
  ```bash
13
- # Install globally
14
- npm install -g @bonginkan/maria@latest
26
+ # Install globally (Node.js 18-22 recommended)
27
+ npm install -g @maria/cli
15
28
 
16
- # Initialize in your project
17
- maria init
29
+ # Update to latest version
30
+ npm update -g @maria/cli
18
31
 
19
32
  # Start interactive mode
20
- maria chat
33
+ maria
21
34
  ```
22
35
 
23
36
  ## ✨ Key Features
@@ -126,17 +139,20 @@ maria review --diff --suggestions --severity warning
126
139
  ## 📦 Installation Options
127
140
 
128
141
  ```bash
129
- # Latest stable
130
- npm install -g @bonginkan/maria@latest
142
+ # Latest stable (Node.js 18-22)
143
+ npm install -g @maria/cli
144
+
145
+ # Update existing installation
146
+ npm update -g @maria/cli
131
147
 
132
148
  # Development version
133
- npm install -g @bonginkan/maria@alpha
149
+ npm install -g @maria/cli@alpha
134
150
 
135
151
  # Beta version
136
- npm install -g @bonginkan/maria@beta
152
+ npm install -g @maria/cli@beta
137
153
 
138
154
  # Run without installing
139
- npx @bonginkan/maria@latest
155
+ npx @maria/cli
140
156
  ```
141
157
 
142
158
  ## 🔌 AI Provider Setup
@@ -179,7 +195,8 @@ export ANTHROPIC_API_KEY=your_key
179
195
 
180
196
  ## 🛠️ System Requirements
181
197
 
182
- - **Node.js**: 18.0.0 or higher
198
+ - **Node.js**: 18.0.0 - 22.x.x (v22 recommended, v24 not yet supported)
199
+ - **npm**: 6.0.0 or higher
183
200
  - **OS**: macOS, Linux, Windows (WSL recommended)
184
201
  - **Memory**: 4GB RAM minimum (8GB+ for local models)
185
202
  - **Storage**: 500MB for CLI, varies for local models
@@ -192,10 +209,32 @@ We welcome contributions! See [Contributing Guide](https://github.com/bonginkan/
192
209
 
193
210
  MIT License - see [LICENSE](https://github.com/bonginkan/maria/blob/main/LICENSE) for details.
194
211
 
212
+ ## 🐛 Troubleshooting
213
+
214
+ ### Node.js v24 Compatibility
215
+ If you encounter warnings with Node.js v24:
216
+
217
+ ```bash
218
+ # Recommended solution: Switch to Node.js v22
219
+ nvm install 22
220
+ nvm use 22
221
+ npm install -g @maria/cli
222
+ ```
223
+
224
+ ### Installation Issues
225
+ ```bash
226
+ # Clear npm cache
227
+ npm cache clean --force
228
+
229
+ # Reinstall
230
+ npm uninstall -g @maria/cli
231
+ npm install -g @maria/cli
232
+ ```
233
+
195
234
  ## 🔗 Links
196
235
 
197
236
  - [GitHub Repository](https://github.com/bonginkan/maria)
198
- - [NPM Package](https://www.npmjs.com/package/@bonginkan/maria)
237
+ - [NPM Package](https://www.npmjs.com/package/@maria/cli)
199
238
  - [Documentation](https://maria-code.vercel.app)
200
239
  - [Report Issues](https://github.com/bonginkan/maria/issues)
201
240
 
package/dist/cli.js CHANGED
@@ -38,9 +38,9 @@ var import_commander = require("commander");
38
38
  var import_chalk = __toESM(require("chalk"));
39
39
  function createCLI() {
40
40
  const program = new import_commander.Command();
41
- program.name("maria").description("MARIA - Intelligent CLI Assistant with Multi-Model AI Support").version("1.0.2");
41
+ program.name("maria").description("MARIA - Intelligent CLI Assistant with Multi-Model AI Support").version("1.0.3");
42
42
  program.command("chat", { isDefault: true }).description("Start interactive chat session").option("--model <name>", "Specify AI model to use").option("--debug", "Enable debug output").action(async (options) => {
43
- console.log(import_chalk.default.blue.bold("\u{1F916} MARIA CLI v1.0.2"));
43
+ console.log(import_chalk.default.blue.bold("\u{1F916} MARIA CLI v1.0.3"));
44
44
  console.log(import_chalk.default.gray("Intelligent CLI Assistant with Multi-Model AI Support"));
45
45
  console.log("");
46
46
  if (options.debug) {
@@ -52,7 +52,7 @@ function createCLI() {
52
52
  await startInteractiveSession(options);
53
53
  });
54
54
  program.command("help").description("Show help information").action(() => {
55
- console.log(import_chalk.default.blue.bold("\u{1F916} MARIA CLI v1.0.2"));
55
+ console.log(import_chalk.default.blue.bold("\u{1F916} MARIA CLI v1.0.3"));
56
56
  console.log(import_chalk.default.gray("Intelligent CLI Assistant with Multi-Model AI Support"));
57
57
  console.log("");
58
58
  console.log(import_chalk.default.green("Available Commands:"));
package/dist/index.d.ts CHANGED
@@ -6,6 +6,6 @@ import 'commander';
6
6
  * Entry point for the OSS package
7
7
  */
8
8
 
9
- declare const VERSION = "1.0.2";
9
+ declare const VERSION = "1.0.3";
10
10
 
11
11
  export { VERSION };
package/dist/index.js CHANGED
@@ -40,9 +40,9 @@ var import_commander = require("commander");
40
40
  var import_chalk = __toESM(require("chalk"));
41
41
  function createCLI() {
42
42
  const program = new import_commander.Command();
43
- program.name("maria").description("MARIA - Intelligent CLI Assistant with Multi-Model AI Support").version("1.0.2");
43
+ program.name("maria").description("MARIA - Intelligent CLI Assistant with Multi-Model AI Support").version("1.0.3");
44
44
  program.command("chat", { isDefault: true }).description("Start interactive chat session").option("--model <name>", "Specify AI model to use").option("--debug", "Enable debug output").action(async (options) => {
45
- console.log(import_chalk.default.blue.bold("\u{1F916} MARIA CLI v1.0.2"));
45
+ console.log(import_chalk.default.blue.bold("\u{1F916} MARIA CLI v1.0.3"));
46
46
  console.log(import_chalk.default.gray("Intelligent CLI Assistant with Multi-Model AI Support"));
47
47
  console.log("");
48
48
  if (options.debug) {
@@ -54,7 +54,7 @@ function createCLI() {
54
54
  await startInteractiveSession(options);
55
55
  });
56
56
  program.command("help").description("Show help information").action(() => {
57
- console.log(import_chalk.default.blue.bold("\u{1F916} MARIA CLI v1.0.2"));
57
+ console.log(import_chalk.default.blue.bold("\u{1F916} MARIA CLI v1.0.3"));
58
58
  console.log(import_chalk.default.gray("Intelligent CLI Assistant with Multi-Model AI Support"));
59
59
  console.log("");
60
60
  console.log(import_chalk.default.green("Available Commands:"));
@@ -96,7 +96,7 @@ if (require.main === module) {
96
96
  }
97
97
 
98
98
  // src/index.ts
99
- var VERSION = "1.0.2";
99
+ var VERSION = "1.0.3";
100
100
  // Annotate the CommonJS export names for ESM import in node:
101
101
  0 && (module.exports = {
102
102
  VERSION,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bonginkan/maria",
3
- "version": "1.0.2",
3
+ "version": "1.0.5",
4
4
  "description": "Intelligent CLI Assistant with Multi-Model AI Support - Zero Configuration, Privacy First",
5
5
  "keywords": [
6
6
  "ai",
@@ -42,7 +42,7 @@
42
42
  ],
43
43
  "type": "commonjs",
44
44
  "engines": {
45
- "node": ">=18.0.0"
45
+ "node": ">=18.0.0 <=22.0.0"
46
46
  },
47
47
  "scripts": {
48
48
  "build": "tsup",
@@ -119,4 +119,4 @@
119
119
  "registry": "https://registry.npmjs.org/"
120
120
  },
121
121
  "packageManager": "pnpm@10.10.0+sha512.d615db246fe70f25dcfea6d8d73dee782ce23e2245e3c4f6f888249fb568149318637dca73c2c5c8ef2a4ca0d5657fb9567188bfab47f566d1ee6ce987815c39"
122
- }
122
+ }