@bonginkan/maria 1.6.2 → 1.6.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/COMMANDS.md +177 -0
- package/GETTING_STARTED.md +183 -0
- package/README.md +159 -319
- package/SETUP.md +236 -0
- package/dist/cli.d.ts +1 -1
- package/dist/cli.js +16 -39
- package/dist/index.js +16 -39
- package/package.json +70 -33
- package/bin/maria.d.ts +0 -1
- package/bin/maria.js +0 -18247
- package/bin/maria.js.map +0 -1
package/SETUP.md
ADDED
|
@@ -0,0 +1,236 @@
|
|
|
1
|
+
# 🚀 MARIA Platform Setup Guide
|
|
2
|
+
|
|
3
|
+
Complete setup instructions for MARIA Platform v1.6.4 "Algorithm Education Revolution"
|
|
4
|
+
|
|
5
|
+
## 📋 System Requirements
|
|
6
|
+
|
|
7
|
+
### Minimum Requirements
|
|
8
|
+
- **Node.js**: 18.0.0 or higher (up to 22.x)
|
|
9
|
+
- **npm**: 8.0.0 or higher
|
|
10
|
+
- **Operating System**: macOS, Linux, Windows
|
|
11
|
+
- **Terminal**: Any modern terminal application
|
|
12
|
+
- **Memory**: 512MB available RAM
|
|
13
|
+
- **Storage**: 100MB disk space
|
|
14
|
+
|
|
15
|
+
### Recommended Setup
|
|
16
|
+
- **Node.js**: 20.x LTS
|
|
17
|
+
- **Terminal**: iTerm2 (macOS), Windows Terminal, or VS Code integrated terminal
|
|
18
|
+
- **Shell**: bash, zsh, fish, or PowerShell
|
|
19
|
+
- **Memory**: 1GB+ available RAM for optimal performance
|
|
20
|
+
|
|
21
|
+
## 🛠️ Installation Methods
|
|
22
|
+
|
|
23
|
+
### Method 1: NPM Global Installation (Recommended)
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
# Install globally via npm
|
|
27
|
+
npm install -g @bonginkan/maria
|
|
28
|
+
|
|
29
|
+
# Verify installation
|
|
30
|
+
maria --version
|
|
31
|
+
# Expected output: MARIA Platform v1.6.4 "Algorithm Education Revolution"
|
|
32
|
+
|
|
33
|
+
# Test interactive mode
|
|
34
|
+
maria
|
|
35
|
+
# Should start interactive CLI with welcome message
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
### Method 2: Alternative Package Managers
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
# Using Yarn
|
|
42
|
+
yarn global add @bonginkan/maria
|
|
43
|
+
|
|
44
|
+
# Using pnpm
|
|
45
|
+
pnpm add -g @bonginkan/maria
|
|
46
|
+
|
|
47
|
+
# Using npx (temporary usage)
|
|
48
|
+
npx @bonginkan/maria
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
### Method 3: Local Project Installation
|
|
52
|
+
|
|
53
|
+
```bash
|
|
54
|
+
# Install in project
|
|
55
|
+
npm install @bonginkan/maria
|
|
56
|
+
|
|
57
|
+
# Run locally
|
|
58
|
+
npx maria
|
|
59
|
+
|
|
60
|
+
# Or add to package.json scripts
|
|
61
|
+
{
|
|
62
|
+
"scripts": {
|
|
63
|
+
"ai": "maria"
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
## ⚡ Quick Start Guide
|
|
69
|
+
|
|
70
|
+
### 1. First Launch
|
|
71
|
+
```bash
|
|
72
|
+
# Start MARIA interactive mode
|
|
73
|
+
maria
|
|
74
|
+
|
|
75
|
+
# You should see:
|
|
76
|
+
# 🤖 MARIA Platform v1.6.4 "Algorithm Education Revolution"
|
|
77
|
+
# Interactive AI Development CLI with Complete CS Curriculum
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
### 2. Basic Commands
|
|
81
|
+
```bash
|
|
82
|
+
# Within interactive mode, try these commands:
|
|
83
|
+
> /help # Show all 36+ commands
|
|
84
|
+
> /status # Check system status
|
|
85
|
+
> /model # Configure AI providers
|
|
86
|
+
> /sort quicksort --visualize # Try algorithm education
|
|
87
|
+
> /code "hello world function" # AI code generation
|
|
88
|
+
> /exit # Exit MARIA
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
### 3. Algorithm Education
|
|
92
|
+
```bash
|
|
93
|
+
# Start learning algorithms
|
|
94
|
+
> /sort quicksort # Interactive quicksort tutorial
|
|
95
|
+
> /learn algorithms # Complete CS curriculum
|
|
96
|
+
> /benchmark sorting # Performance analysis
|
|
97
|
+
> /algorithm complexity # Big O notation guide
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
## 🔧 Configuration
|
|
101
|
+
|
|
102
|
+
### AI Model Setup (Optional)
|
|
103
|
+
|
|
104
|
+
MARIA works out of the box with default models, but you can configure additional AI providers:
|
|
105
|
+
|
|
106
|
+
```bash
|
|
107
|
+
# Start MARIA and configure models
|
|
108
|
+
maria
|
|
109
|
+
> /model
|
|
110
|
+
|
|
111
|
+
# Available options:
|
|
112
|
+
# - OpenAI GPT models (API key required)
|
|
113
|
+
# - Anthropic Claude (API key required)
|
|
114
|
+
# - Google Gemini (API key required)
|
|
115
|
+
# - Local LLMs (LM Studio, Ollama)
|
|
116
|
+
# - Groq models (API key required)
|
|
117
|
+
```
|
|
118
|
+
|
|
119
|
+
### Environment Variables (Optional)
|
|
120
|
+
|
|
121
|
+
Create a `.env` file in your project or set system environment variables:
|
|
122
|
+
|
|
123
|
+
```bash
|
|
124
|
+
# AI Provider API Keys (optional)
|
|
125
|
+
OPENAI_API_KEY=sk-your-key-here
|
|
126
|
+
ANTHROPIC_API_KEY=sk-ant-your-key-here
|
|
127
|
+
GOOGLE_AI_API_KEY=your-google-key-here
|
|
128
|
+
GROQ_API_KEY=gsk-your-groq-key-here
|
|
129
|
+
|
|
130
|
+
# Local AI Models (optional)
|
|
131
|
+
LMSTUDIO_API_URL=http://localhost:1234
|
|
132
|
+
OLLAMA_API_URL=http://localhost:11434
|
|
133
|
+
```
|
|
134
|
+
|
|
135
|
+
## 🎓 Learning Path
|
|
136
|
+
|
|
137
|
+
### For Students & Beginners
|
|
138
|
+
1. Start with basic installation: `npm install -g @bonginkan/maria`
|
|
139
|
+
2. Launch interactive mode: `maria`
|
|
140
|
+
3. Try algorithm education: `/sort quicksort --visualize`
|
|
141
|
+
4. Explore help system: `/help`
|
|
142
|
+
5. Learn coding basics: `/code "simple function"`
|
|
143
|
+
|
|
144
|
+
### For Developers
|
|
145
|
+
1. Install MARIA: `npm install -g @bonginkan/maria`
|
|
146
|
+
2. Configure preferred AI model: `/model`
|
|
147
|
+
3. Try development commands: `/code`, `/bug`, `/lint`
|
|
148
|
+
4. Explore advanced features: `/status`, `/mode internal`
|
|
149
|
+
5. Integrate with workflow: Use MARIA for coding assistance
|
|
150
|
+
|
|
151
|
+
### For Educators
|
|
152
|
+
1. Install for classroom use: `npm install -g @bonginkan/maria`
|
|
153
|
+
2. Explore algorithm curriculum: `/learn algorithms`
|
|
154
|
+
3. Use visualization tools: `/sort --visualize`
|
|
155
|
+
4. Create lesson plans with `/help` command reference
|
|
156
|
+
5. Demonstrate CS concepts with interactive examples
|
|
157
|
+
|
|
158
|
+
## 🐛 Troubleshooting
|
|
159
|
+
|
|
160
|
+
### Common Issues
|
|
161
|
+
|
|
162
|
+
#### Permission Errors
|
|
163
|
+
```bash
|
|
164
|
+
# If you get permission errors on macOS/Linux:
|
|
165
|
+
sudo npm install -g @bonginkan/maria
|
|
166
|
+
|
|
167
|
+
# Or use npm prefix:
|
|
168
|
+
npm config set prefix ~/.npm-global
|
|
169
|
+
export PATH=~/.npm-global/bin:$PATH
|
|
170
|
+
npm install -g @bonginkan/maria
|
|
171
|
+
```
|
|
172
|
+
|
|
173
|
+
#### Node.js Version Issues
|
|
174
|
+
```bash
|
|
175
|
+
# Check Node.js version
|
|
176
|
+
node --version
|
|
177
|
+
|
|
178
|
+
# If version is too old, update Node.js:
|
|
179
|
+
# Visit https://nodejs.org/ for latest LTS version
|
|
180
|
+
```
|
|
181
|
+
|
|
182
|
+
#### Command Not Found
|
|
183
|
+
```bash
|
|
184
|
+
# Check if MARIA is in PATH
|
|
185
|
+
which maria
|
|
186
|
+
|
|
187
|
+
# If not found, try:
|
|
188
|
+
npm list -g @bonginkan/maria
|
|
189
|
+
|
|
190
|
+
# Reinstall if necessary:
|
|
191
|
+
npm uninstall -g @bonginkan/maria
|
|
192
|
+
npm install -g @bonginkan/maria
|
|
193
|
+
```
|
|
194
|
+
|
|
195
|
+
#### Interactive Mode Issues
|
|
196
|
+
```bash
|
|
197
|
+
# If interactive mode doesn't start:
|
|
198
|
+
maria --help
|
|
199
|
+
|
|
200
|
+
# Check for terminal compatibility:
|
|
201
|
+
echo $TERM
|
|
202
|
+
|
|
203
|
+
# Try different terminal or shell
|
|
204
|
+
```
|
|
205
|
+
|
|
206
|
+
### Getting Help
|
|
207
|
+
|
|
208
|
+
1. **Built-in Help**: Use `/help` within MARIA
|
|
209
|
+
2. **Version Check**: Run `maria --version`
|
|
210
|
+
3. **System Status**: Use `/status` command
|
|
211
|
+
4. **GitHub Issues**: [Report issues](https://github.com/bonginkan/maria/issues)
|
|
212
|
+
5. **NPM Package**: [View on npmjs.com](https://www.npmjs.com/package/@bonginkan/maria)
|
|
213
|
+
|
|
214
|
+
## 📚 Next Steps
|
|
215
|
+
|
|
216
|
+
After successful setup:
|
|
217
|
+
|
|
218
|
+
1. **Explore Commands**: Try all 36+ slash commands with `/help`
|
|
219
|
+
2. **Algorithm Learning**: Deep dive into CS curriculum with `/learn`
|
|
220
|
+
3. **AI Development**: Use AI assistance for coding projects
|
|
221
|
+
4. **Performance Analysis**: Benchmark algorithms with built-in tools
|
|
222
|
+
5. **Advanced Features**: Explore 50 cognitive AI modes with `/mode internal`
|
|
223
|
+
|
|
224
|
+
## 🌟 Pro Tips
|
|
225
|
+
|
|
226
|
+
- **Quick Access**: Create shell alias: `alias ai="maria"`
|
|
227
|
+
- **Project Integration**: Add MARIA to project's package.json
|
|
228
|
+
- **Learning Schedule**: Dedicate 15 minutes daily to algorithm education
|
|
229
|
+
- **Experiment**: Try different AI models to find your preference
|
|
230
|
+
- **Share**: Introduce MARIA to your team for collaborative development
|
|
231
|
+
|
|
232
|
+
---
|
|
233
|
+
|
|
234
|
+
**Welcome to the Algorithm Education Revolution! 🎓✨**
|
|
235
|
+
|
|
236
|
+
Start your journey: `maria` and type `/help` to explore all possibilities.
|
package/dist/cli.d.ts
CHANGED
package/dist/cli.js
CHANGED
|
@@ -38,55 +38,32 @@ 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 - AI-Powered Development Platform
|
|
42
|
-
program.action(() => {
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
41
|
+
program.name("maria").description("MARIA - AI-Powered Development Platform").version("1.0.7");
|
|
42
|
+
program.command("chat").description("Start interactive chat mode").action(() => {
|
|
43
|
+
console.log(import_chalk.default.blue("\u{1F916} MARIA AI-Powered Development Platform v1.0.7"));
|
|
44
|
+
console.log(import_chalk.default.gray("Enterprise-Grade CLI with Advanced Intelligence"));
|
|
45
|
+
console.log(import_chalk.default.yellow("\n\u{1F4A1} This is the OSS distribution of MARIA."));
|
|
46
|
+
console.log(import_chalk.default.yellow(" Full features available at: https://maria-code.vercel.app"));
|
|
47
|
+
console.log(import_chalk.default.cyan("\n\u2728 Key Features:"));
|
|
48
|
+
console.log(import_chalk.default.cyan(" \u2022 22+ AI Models (GPT, Claude, Gemini, Local LLMs)"));
|
|
49
|
+
console.log(import_chalk.default.cyan(" \u2022 Advanced Code Quality Systems"));
|
|
50
|
+
console.log(import_chalk.default.cyan(" \u2022 Intelligent Dependency Management"));
|
|
51
|
+
console.log(import_chalk.default.cyan(" \u2022 AI-Driven Project Analysis"));
|
|
52
|
+
console.log(import_chalk.default.cyan(" \u2022 Automated Refactoring Engine"));
|
|
53
|
+
console.log(import_chalk.default.cyan(" \u2022 Phase 5: Enterprise-Grade Infrastructure"));
|
|
47
54
|
});
|
|
48
55
|
program.command("version").description("Show version information").action(() => {
|
|
49
|
-
console.log(import_chalk.default.bold("MARIA CLI v1.
|
|
56
|
+
console.log(import_chalk.default.bold("MARIA CLI v1.0.7"));
|
|
50
57
|
console.log(import_chalk.default.gray("AI-Powered Development Platform"));
|
|
51
58
|
console.log(import_chalk.default.gray("\xA9 2025 Bonginkan Inc."));
|
|
52
59
|
});
|
|
53
60
|
program.command("status").description("Show system status").action(() => {
|
|
54
|
-
console.log(import_chalk.default.green("\u2705 MARIA OSS Distribution
|
|
55
|
-
console.log(import_chalk.default.blue("\u{1F4E6}
|
|
61
|
+
console.log(import_chalk.default.green("\u2705 MARIA OSS Distribution"));
|
|
62
|
+
console.log(import_chalk.default.blue("\u{1F4E6} Version: 1.0.7"));
|
|
56
63
|
console.log(import_chalk.default.yellow("\u{1F517} Full Platform: https://maria-code.vercel.app"));
|
|
57
|
-
console.log(import_chalk.default.cyan("\n\u{1F3AF} NPM Package: https://www.npmjs.com/package/@bonginkan/maria"));
|
|
58
64
|
});
|
|
59
65
|
return program;
|
|
60
66
|
}
|
|
61
|
-
function startInteractiveMode() {
|
|
62
|
-
console.log(import_chalk.default.blue("\u{1F916} MARIA AI-Powered Development Platform v1.6.2"));
|
|
63
|
-
console.log(import_chalk.default.gray("Revolutionary Algorithm Education & Autonomous Coding Platform"));
|
|
64
|
-
console.log(import_chalk.default.yellow("\n\u{1F4A1} This is the OSS distribution of MARIA."));
|
|
65
|
-
console.log(import_chalk.default.yellow(" Full features available in the complete platform."));
|
|
66
|
-
console.log(import_chalk.default.cyan("\n\u2728 v1.6.2 Key Features:"));
|
|
67
|
-
console.log(import_chalk.default.cyan(" \u2022 Algorithm Education Platform (Quicksort, Merge Sort, Heap Sort)"));
|
|
68
|
-
console.log(import_chalk.default.cyan(" \u2022 Interactive Visualizations & Performance Analysis"));
|
|
69
|
-
console.log(import_chalk.default.cyan(" \u2022 36+ Slash Commands (/help, /sort, /learn, /benchmark)"));
|
|
70
|
-
console.log(import_chalk.default.cyan(" \u2022 22+ AI Models (GPT, Claude, Gemini, Local LLMs)"));
|
|
71
|
-
console.log(import_chalk.default.cyan(" \u2022 Enterprise Code Quality Analysis"));
|
|
72
|
-
console.log(import_chalk.default.cyan(" \u2022 50 Cognitive Modes with Real-time Adaptation"));
|
|
73
|
-
console.log(import_chalk.default.cyan(" \u2022 Vector Search & Document Processing"));
|
|
74
|
-
console.log(import_chalk.default.cyan(" \u2022 Multi-Agent Orchestration System"));
|
|
75
|
-
console.log(import_chalk.default.magenta("\n\u{1F393} New Algorithm Education Commands:"));
|
|
76
|
-
console.log(import_chalk.default.magenta(" /sort quicksort --visualize # Interactive sorting demonstrations"));
|
|
77
|
-
console.log(import_chalk.default.magenta(" /learn algorithms # Complete CS curriculum"));
|
|
78
|
-
console.log(import_chalk.default.magenta(" /benchmark --all # Performance analysis"));
|
|
79
|
-
console.log(import_chalk.default.magenta(" /visualize merge --step # Step-by-step learning"));
|
|
80
|
-
console.log(import_chalk.default.green("\n\u{1F4DA} Interactive Slash Commands:"));
|
|
81
|
-
console.log(import_chalk.default.green(" /help # See all 36+ commands"));
|
|
82
|
-
console.log(import_chalk.default.green(" /model # AI model selection"));
|
|
83
|
-
console.log(import_chalk.default.green(" /mode internal list # 50 cognitive modes"));
|
|
84
|
-
console.log(import_chalk.default.green(" /bug, /lint, /typecheck # Code quality analysis"));
|
|
85
|
-
console.log(import_chalk.default.green(" /coderag, /document # Advanced AI features"));
|
|
86
|
-
console.log(import_chalk.default.green(" /exit # Exit interactive mode"));
|
|
87
|
-
console.log(import_chalk.default.blue('\n\u{1F680} To start: Simply run "maria" and use slash commands!'));
|
|
88
|
-
console.log(import_chalk.default.gray("\u{1F4A1} Example: maria \u2192 /help \u2192 /sort quicksort --visualize"));
|
|
89
|
-
}
|
|
90
67
|
if (require.main === module) {
|
|
91
68
|
const cli = createCLI();
|
|
92
69
|
cli.parse();
|
package/dist/index.js
CHANGED
|
@@ -40,55 +40,32 @@ 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 - AI-Powered Development Platform
|
|
44
|
-
program.action(() => {
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
43
|
+
program.name("maria").description("MARIA - AI-Powered Development Platform").version("1.0.7");
|
|
44
|
+
program.command("chat").description("Start interactive chat mode").action(() => {
|
|
45
|
+
console.log(import_chalk.default.blue("\u{1F916} MARIA AI-Powered Development Platform v1.0.7"));
|
|
46
|
+
console.log(import_chalk.default.gray("Enterprise-Grade CLI with Advanced Intelligence"));
|
|
47
|
+
console.log(import_chalk.default.yellow("\n\u{1F4A1} This is the OSS distribution of MARIA."));
|
|
48
|
+
console.log(import_chalk.default.yellow(" Full features available at: https://maria-code.vercel.app"));
|
|
49
|
+
console.log(import_chalk.default.cyan("\n\u2728 Key Features:"));
|
|
50
|
+
console.log(import_chalk.default.cyan(" \u2022 22+ AI Models (GPT, Claude, Gemini, Local LLMs)"));
|
|
51
|
+
console.log(import_chalk.default.cyan(" \u2022 Advanced Code Quality Systems"));
|
|
52
|
+
console.log(import_chalk.default.cyan(" \u2022 Intelligent Dependency Management"));
|
|
53
|
+
console.log(import_chalk.default.cyan(" \u2022 AI-Driven Project Analysis"));
|
|
54
|
+
console.log(import_chalk.default.cyan(" \u2022 Automated Refactoring Engine"));
|
|
55
|
+
console.log(import_chalk.default.cyan(" \u2022 Phase 5: Enterprise-Grade Infrastructure"));
|
|
49
56
|
});
|
|
50
57
|
program.command("version").description("Show version information").action(() => {
|
|
51
|
-
console.log(import_chalk.default.bold("MARIA CLI v1.
|
|
58
|
+
console.log(import_chalk.default.bold("MARIA CLI v1.0.7"));
|
|
52
59
|
console.log(import_chalk.default.gray("AI-Powered Development Platform"));
|
|
53
60
|
console.log(import_chalk.default.gray("\xA9 2025 Bonginkan Inc."));
|
|
54
61
|
});
|
|
55
62
|
program.command("status").description("Show system status").action(() => {
|
|
56
|
-
console.log(import_chalk.default.green("\u2705 MARIA OSS Distribution
|
|
57
|
-
console.log(import_chalk.default.blue("\u{1F4E6}
|
|
63
|
+
console.log(import_chalk.default.green("\u2705 MARIA OSS Distribution"));
|
|
64
|
+
console.log(import_chalk.default.blue("\u{1F4E6} Version: 1.0.7"));
|
|
58
65
|
console.log(import_chalk.default.yellow("\u{1F517} Full Platform: https://maria-code.vercel.app"));
|
|
59
|
-
console.log(import_chalk.default.cyan("\n\u{1F3AF} NPM Package: https://www.npmjs.com/package/@bonginkan/maria"));
|
|
60
66
|
});
|
|
61
67
|
return program;
|
|
62
68
|
}
|
|
63
|
-
function startInteractiveMode() {
|
|
64
|
-
console.log(import_chalk.default.blue("\u{1F916} MARIA AI-Powered Development Platform v1.6.2"));
|
|
65
|
-
console.log(import_chalk.default.gray("Revolutionary Algorithm Education & Autonomous Coding Platform"));
|
|
66
|
-
console.log(import_chalk.default.yellow("\n\u{1F4A1} This is the OSS distribution of MARIA."));
|
|
67
|
-
console.log(import_chalk.default.yellow(" Full features available in the complete platform."));
|
|
68
|
-
console.log(import_chalk.default.cyan("\n\u2728 v1.6.2 Key Features:"));
|
|
69
|
-
console.log(import_chalk.default.cyan(" \u2022 Algorithm Education Platform (Quicksort, Merge Sort, Heap Sort)"));
|
|
70
|
-
console.log(import_chalk.default.cyan(" \u2022 Interactive Visualizations & Performance Analysis"));
|
|
71
|
-
console.log(import_chalk.default.cyan(" \u2022 36+ Slash Commands (/help, /sort, /learn, /benchmark)"));
|
|
72
|
-
console.log(import_chalk.default.cyan(" \u2022 22+ AI Models (GPT, Claude, Gemini, Local LLMs)"));
|
|
73
|
-
console.log(import_chalk.default.cyan(" \u2022 Enterprise Code Quality Analysis"));
|
|
74
|
-
console.log(import_chalk.default.cyan(" \u2022 50 Cognitive Modes with Real-time Adaptation"));
|
|
75
|
-
console.log(import_chalk.default.cyan(" \u2022 Vector Search & Document Processing"));
|
|
76
|
-
console.log(import_chalk.default.cyan(" \u2022 Multi-Agent Orchestration System"));
|
|
77
|
-
console.log(import_chalk.default.magenta("\n\u{1F393} New Algorithm Education Commands:"));
|
|
78
|
-
console.log(import_chalk.default.magenta(" /sort quicksort --visualize # Interactive sorting demonstrations"));
|
|
79
|
-
console.log(import_chalk.default.magenta(" /learn algorithms # Complete CS curriculum"));
|
|
80
|
-
console.log(import_chalk.default.magenta(" /benchmark --all # Performance analysis"));
|
|
81
|
-
console.log(import_chalk.default.magenta(" /visualize merge --step # Step-by-step learning"));
|
|
82
|
-
console.log(import_chalk.default.green("\n\u{1F4DA} Interactive Slash Commands:"));
|
|
83
|
-
console.log(import_chalk.default.green(" /help # See all 36+ commands"));
|
|
84
|
-
console.log(import_chalk.default.green(" /model # AI model selection"));
|
|
85
|
-
console.log(import_chalk.default.green(" /mode internal list # 50 cognitive modes"));
|
|
86
|
-
console.log(import_chalk.default.green(" /bug, /lint, /typecheck # Code quality analysis"));
|
|
87
|
-
console.log(import_chalk.default.green(" /coderag, /document # Advanced AI features"));
|
|
88
|
-
console.log(import_chalk.default.green(" /exit # Exit interactive mode"));
|
|
89
|
-
console.log(import_chalk.default.blue('\n\u{1F680} To start: Simply run "maria" and use slash commands!'));
|
|
90
|
-
console.log(import_chalk.default.gray("\u{1F4A1} Example: maria \u2192 /help \u2192 /sort quicksort --visualize"));
|
|
91
|
-
}
|
|
92
69
|
if (require.main === module) {
|
|
93
70
|
const cli = createCLI();
|
|
94
71
|
cli.parse();
|
package/package.json
CHANGED
|
@@ -1,46 +1,37 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bonginkan/maria",
|
|
3
|
-
"version": "1.6.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.6.4",
|
|
4
|
+
"description": "MARIA Platform v1.6.4 \"Algorithm Education Revolution\" - Interactive AI Development CLI with Complete CS Curriculum, 36+ Slash Commands, 50 Cognitive AI Modes, and Educational Development Platform",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
7
7
|
"cli",
|
|
8
8
|
"assistant",
|
|
9
|
-
"interactive-commands",
|
|
10
|
-
"slash-commands",
|
|
11
|
-
"algorithm-education",
|
|
12
|
-
"sorting-algorithms",
|
|
13
|
-
"quicksort",
|
|
14
|
-
"computer-science",
|
|
15
|
-
"educational-platform",
|
|
16
|
-
"cognitive-modes",
|
|
17
|
-
"ai-development",
|
|
18
|
-
"code-quality",
|
|
19
|
-
"typescript",
|
|
20
|
-
"vector-search",
|
|
21
|
-
"document-processing",
|
|
22
|
-
"performance-analysis",
|
|
23
|
-
"visualization",
|
|
24
|
-
"interactive-learning",
|
|
25
|
-
"benchmarking",
|
|
26
|
-
"developer-tools",
|
|
27
|
-
"ai-cli",
|
|
28
|
-
"command-line",
|
|
29
9
|
"gpt",
|
|
30
10
|
"claude",
|
|
31
11
|
"gemini",
|
|
32
12
|
"local-llm",
|
|
33
13
|
"lm-studio",
|
|
34
14
|
"ollama",
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
15
|
+
"developer-tools",
|
|
16
|
+
"code-assistant",
|
|
17
|
+
"ai-cli",
|
|
18
|
+
"command-line",
|
|
19
|
+
"typescript",
|
|
38
20
|
"autonomous-agent",
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
21
|
+
"algorithm-education",
|
|
22
|
+
"sorting-algorithms",
|
|
23
|
+
"quicksort",
|
|
24
|
+
"visualization",
|
|
25
|
+
"performance-analysis",
|
|
26
|
+
"educational-platform",
|
|
27
|
+
"computer-science",
|
|
28
|
+
"benchmarking",
|
|
29
|
+
"memory-profiling",
|
|
30
|
+
"interactive-learning",
|
|
31
|
+
"professional-engineering",
|
|
32
|
+
"autonomous-coding",
|
|
33
|
+
"visual-progress",
|
|
34
|
+
"real-time-feedback"
|
|
44
35
|
],
|
|
45
36
|
"author": "Bonginkan Inc.",
|
|
46
37
|
"license": "MIT",
|
|
@@ -62,6 +53,9 @@
|
|
|
62
53
|
"dist",
|
|
63
54
|
"bin",
|
|
64
55
|
"README.md",
|
|
56
|
+
"SETUP.md",
|
|
57
|
+
"GETTING_STARTED.md",
|
|
58
|
+
"COMMANDS.md",
|
|
65
59
|
"LICENSE"
|
|
66
60
|
],
|
|
67
61
|
"type": "commonjs",
|
|
@@ -86,14 +80,57 @@
|
|
|
86
80
|
"release:beta": "pnpm publish --tag beta"
|
|
87
81
|
},
|
|
88
82
|
"dependencies": {
|
|
83
|
+
"@anthropic-ai/sdk": "^0.20.0",
|
|
84
|
+
"@google/generative-ai": "^0.1.0",
|
|
85
|
+
"@langchain/core": "^0.1.0",
|
|
86
|
+
"@sindresorhus/slugify": "^2.2.1",
|
|
89
87
|
"chalk": "^5.3.0",
|
|
90
|
-
"
|
|
88
|
+
"cli-progress": "^3.12.0",
|
|
89
|
+
"commander": "^12.0.0",
|
|
90
|
+
"console-table-printer": "^2.14.6",
|
|
91
|
+
"dotenv": "^16.4.1",
|
|
92
|
+
"figlet": "^1.7.0",
|
|
93
|
+
"fs-extra": "^11.2.0",
|
|
94
|
+
"gpt-3-encoder": "^1.1.4",
|
|
95
|
+
"groq-sdk": "^0.3.0",
|
|
96
|
+
"ink": "^4.4.1",
|
|
97
|
+
"ink-select-input": "^5.0.0",
|
|
98
|
+
"ink-spinner": "^4.0.3",
|
|
99
|
+
"ink-text-input": "^5.0.1",
|
|
100
|
+
"inquirer": "^12.0.0",
|
|
101
|
+
"jsonwebtoken": "^9.0.2",
|
|
102
|
+
"node-fetch": "^3.3.2",
|
|
103
|
+
"openai": "^4.28.0",
|
|
104
|
+
"ora": "^8.0.1",
|
|
105
|
+
"p-limit": "^5.0.0",
|
|
106
|
+
"prompts": "^2.4.2",
|
|
107
|
+
"react": "^18.2.0",
|
|
108
|
+
"strip-ansi": "^7.1.0",
|
|
109
|
+
"uuid": "^9.0.1",
|
|
110
|
+
"winston": "^3.11.0",
|
|
111
|
+
"ws": "^8.16.0",
|
|
112
|
+
"zod": "^3.22.4"
|
|
91
113
|
},
|
|
92
114
|
"devDependencies": {
|
|
115
|
+
"@types/cli-progress": "^3.11.5",
|
|
116
|
+
"@types/figlet": "^1.5.8",
|
|
117
|
+
"@types/fs-extra": "^11.0.4",
|
|
118
|
+
"@types/inquirer": "^9.0.7",
|
|
119
|
+
"@types/jsonwebtoken": "^9.0.5",
|
|
93
120
|
"@types/node": "^20.11.0",
|
|
94
|
-
"
|
|
121
|
+
"@types/react": "^18.2.48",
|
|
122
|
+
"@types/uuid": "^9.0.8",
|
|
123
|
+
"@types/ws": "^8.5.10",
|
|
124
|
+
"@typescript-eslint/eslint-plugin": "^6.19.0",
|
|
125
|
+
"@typescript-eslint/parser": "^6.19.0",
|
|
126
|
+
"@vitest/coverage-v8": "^1.2.0",
|
|
127
|
+
"eslint": "^8.56.0",
|
|
128
|
+
"eslint-config-prettier": "^9.1.0",
|
|
129
|
+
"eslint-plugin-prettier": "^5.1.3",
|
|
130
|
+
"prettier": "^3.2.4",
|
|
95
131
|
"tsup": "^8.0.1",
|
|
96
|
-
"typescript": "^5.3.3"
|
|
132
|
+
"typescript": "^5.3.3",
|
|
133
|
+
"vitest": "^1.2.0"
|
|
97
134
|
},
|
|
98
135
|
"publishConfig": {
|
|
99
136
|
"access": "public",
|
package/bin/maria.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|