mdan-method 2.6.3 → 2.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/INSTALL.md CHANGED
@@ -36,13 +36,13 @@ This is the easiest way to install MDAN globally on your system.
36
36
 
37
37
  ```bash
38
38
  # Install MDAN globally
39
- npm install -g mdan-ai
39
+ npm install -g mdan-method
40
40
 
41
41
  # Verify installation
42
- mdan-ai --version
42
+ mdan-method --version
43
43
  ```
44
44
 
45
- **Package URL:** https://www.npmjs.com/package/mdan-ai
45
+ **Package URL:** https://www.npmjs.com/package/mdan-method
46
46
 
47
47
  ### Method 2: Local Installation
48
48
 
@@ -54,7 +54,7 @@ mkdir my-mdan-project
54
54
  cd my-mdan-project
55
55
 
56
56
  # Initialize MDAN
57
- npx mdan-ai install
57
+ npx mdan-method install
58
58
  ```
59
59
 
60
60
  ### Method 3: Clone from GitHub
@@ -63,7 +63,7 @@ Clone the repository and install dependencies manually.
63
63
 
64
64
  ```bash
65
65
  # Clone the repository
66
- git clone https://github.com/khalilbenaz/MDANV2.git
66
+ git clone https://github.com/khalilbenaz/MDAN.git
67
67
  cd MDANV2
68
68
 
69
69
  # Install dependencies
@@ -76,7 +76,7 @@ npm link
76
76
  mdan --version
77
77
  ```
78
78
 
79
- **Repository URL:** https://github.com/khalilbenaz/MDANV2
79
+ **Repository URL:** https://github.com/khalilbenaz/MDAN
80
80
 
81
81
  ## ⚙️ Configuration
82
82
 
@@ -176,13 +176,13 @@ MDAN supports modular installation. You can install only the modules you need:
176
176
 
177
177
  ```bash
178
178
  # Install only the FinTech pack
179
- npx mdan-ai install --modules fintech
179
+ npx mdan-method install --modules fintech
180
180
 
181
181
  # Install multiple modules
182
- npx mdan-ai install --modules fintech devops-azure db-optimization
182
+ npx mdan-method install --modules fintech devops-azure db-optimization
183
183
 
184
184
  # Install all modules
185
- npx mdan-ai install --modules all
185
+ npx mdan-method install --modules all
186
186
  ```
187
187
 
188
188
  Available modules:
@@ -228,7 +228,7 @@ pip install -r requirements.txt
228
228
  If you encounter any issues not covered here:
229
229
 
230
230
  1. Check the [Documentation](./README.md)
231
- 2. Search [GitHub Issues](https://github.com/khalilbenaz/MDANV2/issues)
231
+ 2. Search [GitHub Issues](https://github.com/khalilbenaz/MDAN/issues)
232
232
  3. Create a new issue with detailed information about your problem
233
233
 
234
234
  ## 🚀 Next Steps
package/README.md CHANGED
@@ -2,6 +2,7 @@
2
2
 
3
3
  ![MDAN](https://i.imgur.com/YwfB0Gx.jpeg)
4
4
 
5
+ [![npm](https://img.shields.io/npm/v/mdan-method.svg)](https://www.npmjs.com/package/mdan-method)
5
6
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
6
7
  [![Wizards](https://img.shields.io/badge/wizards-25-purple)]()
7
8
  [![Agents](https://img.shields.io/badge/agents-29-blue)]()
@@ -37,7 +38,7 @@
37
38
 
38
39
  ```bash
39
40
  # Installation
40
- npx mdan-ai install
41
+ npx mdan-method install
41
42
 
42
43
  # Ou manuellement
43
44
  git clone https://github.com/khalilbenaz/MDAN.git
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "mdan-method",
4
- "version": "2.6.3",
4
+ "version": "2.6.4",
5
5
  "description": "MDAN - AI-driven Development Platform with Specialized Agents",
6
6
  "keywords": [
7
7
  "agile",
@@ -19,17 +19,18 @@
19
19
  ],
20
20
  "repository": {
21
21
  "type": "git",
22
- "url": "git+https://github.com/khalilbenaz/MDANV2.git"
22
+ "url": "git+https://github.com/khalilbenaz/MDAN.git"
23
23
  },
24
24
  "license": "MIT",
25
25
  "author": "Khalil <khalilbenaz>",
26
26
  "main": "tools/cli/mdan-cli.js",
27
- "homepage": "https://github.com/khalilbenaz/MDANV2#readme",
27
+ "homepage": "https://github.com/khalilbenaz/MDAN#readme",
28
28
  "bugs": {
29
- "url": "https://github.com/khalilbenaz/MDANV2/issues"
29
+ "url": "https://github.com/khalilbenaz/MDAN/issues"
30
30
  },
31
31
  "bin": {
32
32
  "mmm": "tools/mdan-npx-wrapper.js",
33
+ "mdan-method": "tools/mdan-npx-wrapper.js",
33
34
  "mdan-ai": "tools/mdan-npx-wrapper.js"
34
35
  },
35
36
  "scripts": {
@@ -14,7 +14,7 @@ if (process.stdin?.setMaxListeners) {
14
14
 
15
15
  // Check for updates - do this asynchronously so it doesn't block startup
16
16
  const packageJson = require('../../package.json');
17
- const packageName = 'mdan';
17
+ const packageName = 'mdan-method';
18
18
  checkForUpdate().catch(() => {
19
19
  // Silently ignore errors - version check is best-effort
20
20
  });