mdan-method 2.6.3 → 2.6.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/INSTALL.md +10 -10
- package/README.md +2 -1
- package/SECURITY.md +2 -2
- package/docs/explanation/established-projects-faq.md +1 -1
- package/docs/how-to/customize-mdan.md +3 -3
- package/docs/how-to/established-projects.md +1 -1
- package/docs/how-to/get-answers-about-mdan.md +4 -4
- package/docs/how-to/install-mdan.md +3 -3
- package/docs/how-to/non-interactive-installation.md +11 -11
- package/docs/how-to/quick-fixes.md +1 -1
- package/docs/reference/commands.md +2 -2
- package/docs/reference/modules.md +6 -6
- package/docs/reference/testing.md +3 -3
- package/docs/roadmap.mdx +2 -2
- package/docs/tutorials/getting-started.md +3 -3
- package/package.json +5 -4
- package/src/agents/team/qa.agent.yaml +1 -1
- package/tools/build-docs.mjs +1 -1
- package/tools/cli/README.md +1 -1
- package/tools/cli/external-official-modules.yaml +4 -51
- package/tools/cli/installers/install-messages.yaml +7 -18
- package/tools/cli/installers/lib/core/installer.js +1 -4
- package/tools/cli/lib/cli-utils.js +7 -7
- package/tools/cli/mdan-cli.js +1 -1
- package/website/astro.config.mjs +1 -3
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-
|
|
39
|
+
npm install -g mdan-method
|
|
40
40
|
|
|
41
41
|
# Verify installation
|
|
42
|
-
mdan-
|
|
42
|
+
mdan-method --version
|
|
43
43
|
```
|
|
44
44
|
|
|
45
|
-
**Package URL:** https://www.npmjs.com/package/mdan-
|
|
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-
|
|
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/
|
|
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/
|
|
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-
|
|
179
|
+
npx mdan-method install --modules fintech
|
|
180
180
|
|
|
181
181
|
# Install multiple modules
|
|
182
|
-
npx mdan-
|
|
182
|
+
npx mdan-method install --modules fintech devops-azure db-optimization
|
|
183
183
|
|
|
184
184
|
# Install all modules
|
|
185
|
-
npx mdan-
|
|
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/
|
|
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
|

|
|
4
4
|
|
|
5
|
+
[](https://www.npmjs.com/package/mdan-method)
|
|
5
6
|
[](LICENSE)
|
|
6
7
|
[]()
|
|
7
8
|
[]()
|
|
@@ -37,7 +38,7 @@
|
|
|
37
38
|
|
|
38
39
|
```bash
|
|
39
40
|
# Installation
|
|
40
|
-
npx mdan-
|
|
41
|
+
npx mdan-method install
|
|
41
42
|
|
|
42
43
|
# Ou manuellement
|
|
43
44
|
git clone https://github.com/khalilbenaz/MDAN.git
|
package/SECURITY.md
CHANGED
|
@@ -21,9 +21,9 @@ We take security vulnerabilities seriously. If you discover a security issue, pl
|
|
|
21
21
|
|
|
22
22
|
Instead, please report them via one of these methods:
|
|
23
23
|
|
|
24
|
-
1. **GitHub Security Advisories** (Preferred): Use [GitHub's private vulnerability reporting](https://github.com/
|
|
24
|
+
1. **GitHub Security Advisories** (Preferred): Use [GitHub's private vulnerability reporting](https://github.com/khalilbenaz/MDAN/security/advisories/new) to submit a confidential report.
|
|
25
25
|
|
|
26
|
-
2. **Discord**: Contact a maintainer directly via DM on our [Discord server](https://
|
|
26
|
+
2. **Discord**: Contact a maintainer directly via DM on our [Discord server](https://github.com/khalilbenaz/MDAN/issues).
|
|
27
27
|
|
|
28
28
|
### What to Include
|
|
29
29
|
|
|
@@ -47,4 +47,4 @@ Quick Flow detects your conventions and asks: "Should I follow these existing co
|
|
|
47
47
|
|
|
48
48
|
BMM respects your choice — it won't force modernization, but it will offer it.
|
|
49
49
|
|
|
50
|
-
**Have a question not answered here?** Please [open an issue](https://github.com/
|
|
50
|
+
**Have a question not answered here?** Please [open an issue](https://github.com/khalilbenaz/MDAN/issues) or ask in [Discord](https://github.com/khalilbenaz/MDAN/issues) so we can add it!
|
|
@@ -131,7 +131,7 @@ prompts:
|
|
|
131
131
|
After editing, recompile the agent to apply changes:
|
|
132
132
|
|
|
133
133
|
```bash
|
|
134
|
-
npx mdan install
|
|
134
|
+
npx mdan-method install
|
|
135
135
|
```
|
|
136
136
|
|
|
137
137
|
The installer detects the existing installation and offers these options:
|
|
@@ -148,7 +148,7 @@ For customization-only changes, **Recompile Agents** is the fastest option.
|
|
|
148
148
|
|
|
149
149
|
**Changes not appearing?**
|
|
150
150
|
|
|
151
|
-
- Run `npx mdan install` and select **Recompile Agents** to apply changes
|
|
151
|
+
- Run `npx mdan-method install` and select **Recompile Agents** to apply changes
|
|
152
152
|
- Check that your YAML syntax is valid (indentation matters)
|
|
153
153
|
- Verify you edited the correct `.customize.yaml` file for the agent
|
|
154
154
|
|
|
@@ -161,7 +161,7 @@ For customization-only changes, **Recompile Agents** is the fastest option.
|
|
|
161
161
|
**Need to reset an agent?**
|
|
162
162
|
|
|
163
163
|
- Clear or delete the agent's `.customize.yaml` file
|
|
164
|
-
- Run `npx mdan install` and select **Recompile Agents** to restore defaults
|
|
164
|
+
- Run `npx mdan-method install` and select **Recompile Agents** to restore defaults
|
|
165
165
|
|
|
166
166
|
## Workflow Customization
|
|
167
167
|
|
|
@@ -10,7 +10,7 @@ Use MDAN Method effectively when working on existing projects and legacy codebas
|
|
|
10
10
|
This guide covers the essential workflow for onboarding to existing projects with MDAN Method.
|
|
11
11
|
|
|
12
12
|
:::note[Prerequisites]
|
|
13
|
-
- MDAN Method installed (`npx mdan install`)
|
|
13
|
+
- MDAN Method installed (`npx mdan-method install`)
|
|
14
14
|
- An existing codebase you want to work on
|
|
15
15
|
- Access to an AI-powered IDE (Claude Code or Cursor)
|
|
16
16
|
:::
|
|
@@ -65,14 +65,14 @@ The `_mdan` folder is created when you install MDAN. If you don't have it yet, c
|
|
|
65
65
|
**If your AI can read files (Claude Code, Cursor, etc.):**
|
|
66
66
|
|
|
67
67
|
- **MDAN installed:** Point at the `_mdan` folder and ask directly
|
|
68
|
-
- **Want deeper context:** Clone the [full repo](https://github.com/
|
|
68
|
+
- **Want deeper context:** Clone the [full repo](https://github.com/khalilbenaz/MDAN)
|
|
69
69
|
|
|
70
70
|
**If you use ChatGPT or Claude.ai:**
|
|
71
71
|
|
|
72
72
|
Fetch `llms-full.txt` into your session:
|
|
73
73
|
|
|
74
74
|
```text
|
|
75
|
-
https://
|
|
75
|
+
https://github.com/khalilbenaz/MDAN
|
|
76
76
|
```
|
|
77
77
|
|
|
78
78
|
|
|
@@ -104,9 +104,9 @@ Tried the LLM approach and still need help? You now have a much better question
|
|
|
104
104
|
| `#suggestions-feedback` | Ideas and feature requests |
|
|
105
105
|
| `#report-bugs-and-issues` | Bug reports |
|
|
106
106
|
|
|
107
|
-
**Discord:** [
|
|
107
|
+
**Discord:** [github.com/khalilbenaz/MDAN/issues](https://github.com/khalilbenaz/MDAN/issues)
|
|
108
108
|
|
|
109
|
-
**GitHub Issues:** [github.com/
|
|
109
|
+
**GitHub Issues:** [github.com/khalilbenaz/MDAN/issues](https://github.com/khalilbenaz/MDAN/issues) (for clear bugs)
|
|
110
110
|
|
|
111
111
|
*You!*
|
|
112
112
|
*Stuck*
|
|
@@ -5,7 +5,7 @@ sidebar:
|
|
|
5
5
|
order: 1
|
|
6
6
|
---
|
|
7
7
|
|
|
8
|
-
Use the `npx mdan install` command to set up MDAN in your project with your choice of modules and AI tools.
|
|
8
|
+
Use the `npx mdan-method install` command to set up MDAN in your project with your choice of modules and AI tools.
|
|
9
9
|
|
|
10
10
|
If you want to use a non interactive installer and provide all install options on the command line, see [this guide](./non-interactive-installation.md).
|
|
11
11
|
|
|
@@ -26,13 +26,13 @@ If you want to use a non interactive installer and provide all install options o
|
|
|
26
26
|
### 1. Run the Installer
|
|
27
27
|
|
|
28
28
|
```bash
|
|
29
|
-
npx mdan install
|
|
29
|
+
npx mdan-method install
|
|
30
30
|
```
|
|
31
31
|
|
|
32
32
|
:::tip[Bleeding edge]
|
|
33
33
|
To install the latest from the main branch (may be unstable):
|
|
34
34
|
```bash
|
|
35
|
-
npx github:
|
|
35
|
+
npx github:khalilbenaz/MDAN install
|
|
36
36
|
```
|
|
37
37
|
:::
|
|
38
38
|
|
|
@@ -53,7 +53,7 @@ Available module IDs for the `--modules` flag:
|
|
|
53
53
|
- `bmm` — MDAN Method Master
|
|
54
54
|
- `bmb` — MDAN Builder
|
|
55
55
|
|
|
56
|
-
Check the [MDAN registry](https://github.com/
|
|
56
|
+
Check the [MDAN registry](https://github.com/khalilbenaz) for available external modules.
|
|
57
57
|
|
|
58
58
|
## Tool/IDE IDs
|
|
59
59
|
|
|
@@ -61,16 +61,16 @@ Available tool IDs for the `--tools` flag:
|
|
|
61
61
|
|
|
62
62
|
**Preferred:** `claude-code`, `cursor`
|
|
63
63
|
|
|
64
|
-
Run `npx mdan install` interactively once to see the full current list of supported tools, or check the [platform codes configuration](https://github.com/
|
|
64
|
+
Run `npx mdan-method install` interactively once to see the full current list of supported tools, or check the [platform codes configuration](https://github.com/khalilbenaz/MDAN/blob/main/tools/cli/installers/lib/ide/platform-codes.yaml).
|
|
65
65
|
|
|
66
66
|
## Installation Modes
|
|
67
67
|
|
|
68
68
|
| Mode | Description | Example |
|
|
69
69
|
|------|-------------|---------|
|
|
70
|
-
| Fully non-interactive | Provide all flags to skip all prompts | `npx mdan install --directory . --modules bmm --tools claude-code --yes` |
|
|
71
|
-
| Semi-interactive | Provide some flags; MDAN prompts for the rest | `npx mdan install --directory . --modules bmm` |
|
|
72
|
-
| Defaults only | Accept all defaults with `-y` | `npx mdan install --yes` |
|
|
73
|
-
| Without tools | Skip tool/IDE configuration | `npx mdan install --modules bmm --tools none` |
|
|
70
|
+
| Fully non-interactive | Provide all flags to skip all prompts | `npx mdan-method install --directory . --modules bmm --tools claude-code --yes` |
|
|
71
|
+
| Semi-interactive | Provide some flags; MDAN prompts for the rest | `npx mdan-method install --directory . --modules bmm` |
|
|
72
|
+
| Defaults only | Accept all defaults with `-y` | `npx mdan-method install --yes` |
|
|
73
|
+
| Without tools | Skip tool/IDE configuration | `npx mdan-method install --modules bmm --tools none` |
|
|
74
74
|
|
|
75
75
|
## Examples
|
|
76
76
|
|
|
@@ -80,7 +80,7 @@ Run `npx mdan install` interactively once to see the full current list of suppor
|
|
|
80
80
|
#!/bin/bash
|
|
81
81
|
# install-mdan.sh
|
|
82
82
|
|
|
83
|
-
npx mdan install \
|
|
83
|
+
npx mdan-method install \
|
|
84
84
|
--directory "${GITHUB_WORKSPACE}" \
|
|
85
85
|
--modules bmm \
|
|
86
86
|
--tools claude-code \
|
|
@@ -94,7 +94,7 @@ npx mdan install \
|
|
|
94
94
|
### Update Existing Installation
|
|
95
95
|
|
|
96
96
|
```bash
|
|
97
|
-
npx mdan install \
|
|
97
|
+
npx mdan-method install \
|
|
98
98
|
--directory ~/projects/myapp \
|
|
99
99
|
--action update \
|
|
100
100
|
--modules bmm,bmb,custom-module
|
|
@@ -103,7 +103,7 @@ npx mdan install \
|
|
|
103
103
|
### Quick Update (Preserve Settings)
|
|
104
104
|
|
|
105
105
|
```bash
|
|
106
|
-
npx mdan install \
|
|
106
|
+
npx mdan-method install \
|
|
107
107
|
--directory ~/projects/myapp \
|
|
108
108
|
--action quick-update
|
|
109
109
|
```
|
|
@@ -111,7 +111,7 @@ npx mdan install \
|
|
|
111
111
|
### Installation with Custom Content
|
|
112
112
|
|
|
113
113
|
```bash
|
|
114
|
-
npx mdan install \
|
|
114
|
+
npx mdan-method install \
|
|
115
115
|
--directory ~/projects/myapp \
|
|
116
116
|
--modules bmm \
|
|
117
117
|
--custom-content ~/my-custom-module,~/another-module \
|
|
@@ -167,5 +167,5 @@ Ensure each custom content path:
|
|
|
167
167
|
- Has a `code` field in the `module.yaml`
|
|
168
168
|
|
|
169
169
|
:::note[Still stuck?]
|
|
170
|
-
Run with `--debug` for detailed output, try interactive mode to isolate the issue, or report at <https://github.com/
|
|
170
|
+
Run with `--debug` for detailed output, try interactive mode to isolate the issue, or report at <https://github.com/khalilbenaz/MDAN/issues>.
|
|
171
171
|
:::
|
|
@@ -15,7 +15,7 @@ Use the **DEV agent** directly for bug fixes, refactorings, or small targeted ch
|
|
|
15
15
|
- Exploratory work to understand an unfamiliar codebase
|
|
16
16
|
|
|
17
17
|
:::note[Prerequisites]
|
|
18
|
-
- MDAN Method installed (`npx mdan install`)
|
|
18
|
+
- MDAN Method installed (`npx mdan-method install`)
|
|
19
19
|
- An AI-powered IDE (Claude Code, Cursor, or similar)
|
|
20
20
|
:::
|
|
21
21
|
|
|
@@ -20,7 +20,7 @@ Agent menu triggers require an active agent session. Use slash commands when you
|
|
|
20
20
|
|
|
21
21
|
## How Commands Are Generated
|
|
22
22
|
|
|
23
|
-
When you run `npx mdan install`, the installer reads the manifests for every selected module and writes one command file per agent, workflow, task, and tool. Each file is a short markdown prompt that instructs the AI to load the corresponding source file and follow its instructions.
|
|
23
|
+
When you run `npx mdan-method install`, the installer reads the manifests for every selected module and writes one command file per agent, workflow, task, and tool. Each file is a short markdown prompt that instructs the AI to load the corresponding source file and follow its instructions.
|
|
24
24
|
|
|
25
25
|
The installer uses templates for each command type:
|
|
26
26
|
|
|
@@ -146,6 +146,6 @@ Module codes: `bmm` (Agile suite), `bmb` (Builder), `tea` (Test Architect), `cis
|
|
|
146
146
|
|
|
147
147
|
**Commands not appearing after install.** Restart your IDE or reload the window. Some IDEs cache the command list and require a refresh to pick up new files.
|
|
148
148
|
|
|
149
|
-
**Expected commands are missing.** The installer only generates commands for modules you selected. Run `npx mdan install` again and verify your module selection. Check that the command files exist in the expected directory.
|
|
149
|
+
**Expected commands are missing.** The installer only generates commands for modules you selected. Run `npx mdan-method install` again and verify your module selection. Check that the command files exist in the expected directory.
|
|
150
150
|
|
|
151
151
|
**Commands from a removed module still appear.** The installer does not delete old command files automatically. Remove the stale files from your IDE's command directory, or delete the entire command directory and re-run the installer for a clean set.
|
|
@@ -8,7 +8,7 @@ sidebar:
|
|
|
8
8
|
MDAN extends through official modules that you select during installation. These add-on modules provide specialized agents, workflows, and tasks for specific domains beyond the built-in core and BMM (Agile suite).
|
|
9
9
|
|
|
10
10
|
:::tip[Installing Modules]
|
|
11
|
-
Run `npx mdan install` and select the modules you want. The installer handles downloading, configuration, and IDE integration automatically.
|
|
11
|
+
Run `npx mdan-method install` and select the modules you want. The installer handles downloading, configuration, and IDE integration automatically.
|
|
12
12
|
:::
|
|
13
13
|
|
|
14
14
|
## MDAN Builder
|
|
@@ -17,7 +17,7 @@ Create custom agents, workflows, and domain-specific modules with guided assista
|
|
|
17
17
|
|
|
18
18
|
- **Code:** `bmb`
|
|
19
19
|
- **npm:** [`mdan-builder`](https://www.npmjs.com/package/mdan-builder)
|
|
20
|
-
- **GitHub:** [
|
|
20
|
+
- **GitHub:** [khalilbenaz/MDAN](https://github.com/khalilbenaz/mdan-builder)
|
|
21
21
|
|
|
22
22
|
**Provides:**
|
|
23
23
|
|
|
@@ -32,7 +32,7 @@ AI-powered tools for structured creativity, ideation, and innovation during earl
|
|
|
32
32
|
|
|
33
33
|
- **Code:** `cis`
|
|
34
34
|
- **npm:** [`mdan-creative-intelligence-suite`](https://www.npmjs.com/package/mdan-creative-intelligence-suite)
|
|
35
|
-
- **GitHub:** [
|
|
35
|
+
- **GitHub:** [khalilbenaz/MDAN](https://github.com/khalilbenaz/mdan-module-creative-intelligence-suite)
|
|
36
36
|
|
|
37
37
|
**Provides:**
|
|
38
38
|
|
|
@@ -47,7 +47,7 @@ Structured game development workflows adapted for Unity, Unreal, Godot, and cust
|
|
|
47
47
|
|
|
48
48
|
- **Code:** `gds`
|
|
49
49
|
- **npm:** [`mdan-game-dev-studio`](https://www.npmjs.com/package/mdan-game-dev-studio)
|
|
50
|
-
- **GitHub:** [
|
|
50
|
+
- **GitHub:** [khalilbenaz/MDAN](https://github.com/khalilbenaz/mdan-module-game-dev-studio)
|
|
51
51
|
|
|
52
52
|
**Provides:**
|
|
53
53
|
|
|
@@ -62,7 +62,7 @@ Enterprise-grade test strategy, automation guidance, and release gate decisions
|
|
|
62
62
|
|
|
63
63
|
- **Code:** `tea`
|
|
64
64
|
- **npm:** [`mdan-test-architecture-enterprise`](https://www.npmjs.com/package/mdan-test-architecture-enterprise)
|
|
65
|
-
- **GitHub:** [
|
|
65
|
+
- **GitHub:** [khalilbenaz/MDAN](https://github.com/khalilbenaz/mdan-test-architecture-enterprise)
|
|
66
66
|
|
|
67
67
|
**Provides:**
|
|
68
68
|
|
|
@@ -73,4 +73,4 @@ Enterprise-grade test strategy, automation guidance, and release gate decisions
|
|
|
73
73
|
|
|
74
74
|
## Community Modules
|
|
75
75
|
|
|
76
|
-
Community modules and a module marketplace are coming. Check the [MDAN GitHub organization](https://github.com/
|
|
76
|
+
Community modules and a module marketplace are coming. Check the [MDAN GitHub organization](https://github.com/khalilbenaz) for updates.
|
|
@@ -12,7 +12,7 @@ MDAN provides two testing paths: a built-in QA agent for fast test generation an
|
|
|
12
12
|
| Factor | Quinn (Built-in QA) | TEA Module |
|
|
13
13
|
| --- | --- | --- |
|
|
14
14
|
| **Best for** | Small-medium projects, quick coverage | Large projects, regulated or complex domains |
|
|
15
|
-
| **Setup** | Nothing to install -- included in BMM | Install separately via `npx mdan install` |
|
|
15
|
+
| **Setup** | Nothing to install -- included in BMM | Install separately via `npx mdan-method install` |
|
|
16
16
|
| **Approach** | Generate tests fast, iterate later | Plan first, then generate with traceability |
|
|
17
17
|
| **Test types** | API and E2E tests | API, E2E, ATDD, NFR, and more |
|
|
18
18
|
| **Strategy** | Happy path + critical edge cases | Risk-based prioritization (P0-P3) |
|
|
@@ -65,8 +65,8 @@ Quinn generates tests only. For code review and story validation, use the Code R
|
|
|
65
65
|
|
|
66
66
|
TEA is a standalone module that provides an expert agent (Murat) and nine structured workflows for enterprise-grade testing. It goes beyond test generation into test strategy, risk-based planning, quality gates, and requirements traceability.
|
|
67
67
|
|
|
68
|
-
- **Documentation:** [TEA Module Docs](https://
|
|
69
|
-
- **Install:** `npx mdan install` and select the TEA module
|
|
68
|
+
- **Documentation:** [TEA Module Docs](https://github.com/khalilbenaz/MDAN)
|
|
69
|
+
- **Install:** `npx mdan-method install` and select the TEA module
|
|
70
70
|
- **npm:** [`mdan-test-architecture-enterprise`](https://www.npmjs.com/package/mdan-test-architecture-enterprise)
|
|
71
71
|
|
|
72
72
|
### What TEA Provides
|
package/docs/roadmap.mdx
CHANGED
|
@@ -123,10 +123,10 @@ The MDAN Method, MDAN Method Module (BMM), and MDAN Builder (BMB) are evolving.
|
|
|
123
123
|
<h3 style="margin: 0 0 1rem;">Want to Contribute?</h3>
|
|
124
124
|
<p style="color: var(--slate-color-400); margin: 0;">
|
|
125
125
|
This is only a partial list of what's planned. The MDAN Open Source team welcomes contributors!{" "}<br />
|
|
126
|
-
<a href="https://github.com/
|
|
126
|
+
<a href="https://github.com/khalilbenaz/MDAN" style="color: var(--color-in-progress);">Join us on GitHub</a> to help shape the future of AI-driven development.
|
|
127
127
|
</p>
|
|
128
128
|
<p style="color: var(--slate-color-400); margin: 1.5rem 0 0;">
|
|
129
|
-
Love what we're building? We appreciate both one-time and monthly{" "}<a href="https://
|
|
129
|
+
Love what we're building? We appreciate both one-time and monthly{" "}<a href="https://github.com/khalilbenaz/MDAN" style="color: var(--color-in-progress);">support</a>.
|
|
130
130
|
</p>
|
|
131
131
|
<p style="color: var(--slate-color-400); margin: 1rem 0 0;">
|
|
132
132
|
For corporate sponsorship, partnership inquiries, speaking engagements, training, or media enquiries:{" "}
|
|
@@ -21,7 +21,7 @@ Build software faster using AI-powered workflows with specialized agents that gu
|
|
|
21
21
|
:::
|
|
22
22
|
|
|
23
23
|
:::tip[The Easiest Path]
|
|
24
|
-
**Install** → `npx mdan install`
|
|
24
|
+
**Install** → `npx mdan-method install`
|
|
25
25
|
**Ask** → `/mdan-help what should I do first?`
|
|
26
26
|
**Build** → Let MDAN-Help guide you workflow by workflow
|
|
27
27
|
:::
|
|
@@ -94,7 +94,7 @@ Story counts are guidance, not definitions. Choose your track based on planning
|
|
|
94
94
|
Open a terminal in your project directory and run:
|
|
95
95
|
|
|
96
96
|
```bash
|
|
97
|
-
npx mdan install
|
|
97
|
+
npx mdan-method install
|
|
98
98
|
```
|
|
99
99
|
|
|
100
100
|
### Install from GitHub
|
|
@@ -272,7 +272,7 @@ MDAN-Help inspects your project, detects what you've completed, and tells you ex
|
|
|
272
272
|
:::
|
|
273
273
|
|
|
274
274
|
- **During workflows** — Agents guide you with questions and explanations
|
|
275
|
-
- **Community** — [Discord](https://
|
|
275
|
+
- **Community** — [Discord](https://github.com/khalilbenaz/MDAN/issues) (#mdan-help, #report-bugs-and-issues)
|
|
276
276
|
|
|
277
277
|
## Key Takeaways
|
|
278
278
|
|
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.
|
|
4
|
+
"version": "2.6.5",
|
|
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/
|
|
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/
|
|
27
|
+
"homepage": "https://github.com/khalilbenaz/MDAN#readme",
|
|
28
28
|
"bugs": {
|
|
29
|
-
"url": "https://github.com/khalilbenaz/
|
|
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": {
|
|
@@ -53,6 +53,6 @@ agent:
|
|
|
53
53
|
|
|
54
54
|
**Need more advanced testing?**
|
|
55
55
|
For comprehensive test strategy, risk-based planning, quality gates, and enterprise features,
|
|
56
|
-
install the Test Architect (TEA) module: https://
|
|
56
|
+
install the Test Architect (TEA) module: https://github.com/khalilbenaz/MDAN
|
|
57
57
|
|
|
58
58
|
Ready to generate some tests? Just say `QA` or `mdan-bmm-qa-automate`!
|
package/tools/build-docs.mjs
CHANGED
|
@@ -22,7 +22,7 @@ import { getSiteUrl } from '../website/src/lib/site-url.mjs';
|
|
|
22
22
|
const PROJECT_ROOT = path.dirname(path.dirname(fileURLToPath(import.meta.url)));
|
|
23
23
|
const BUILD_DIR = path.join(PROJECT_ROOT, 'build');
|
|
24
24
|
|
|
25
|
-
const REPO_URL = 'https://github.com/
|
|
25
|
+
const REPO_URL = 'https://github.com/khalilbenaz/MDAN';
|
|
26
26
|
|
|
27
27
|
// DO NOT CHANGE THESE VALUES!
|
|
28
28
|
// llms-full.txt is consumed by AI agents as context. Most LLMs have ~200k token limits.
|
package/tools/cli/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
For external official modules to be discoverable during install, ensure an entry for the external repo is added to external-official-modules.yaml.
|
|
6
6
|
|
|
7
|
-
For community modules - this will be handled in a different way. This file is only for registration of
|
|
7
|
+
For community modules - this will be handled in a different way. This file is only for registration of official external modules.
|
|
8
8
|
|
|
9
9
|
## Post-Install Notes
|
|
10
10
|
|
|
@@ -1,53 +1,6 @@
|
|
|
1
|
-
# This file allows
|
|
1
|
+
# This file allows external modules to also be installed with the MDAN installer, while
|
|
2
2
|
# allowing us to keep the source of these projects in separate repos.
|
|
3
|
+
# Note: These modules are currently bundled in the main MDAN repo under src/packs/
|
|
4
|
+
# External repos will be set up in the future.
|
|
3
5
|
|
|
4
|
-
modules:
|
|
5
|
-
mdan-builder:
|
|
6
|
-
url: https://github.com/mdan-code-org/mdan-builder
|
|
7
|
-
module-definition: src/module.yaml
|
|
8
|
-
code: bmb
|
|
9
|
-
name: "MDAN Builder"
|
|
10
|
-
description: "Agent, Workflow and Module Builder"
|
|
11
|
-
defaultSelected: false
|
|
12
|
-
type: mdan-org
|
|
13
|
-
npmPackage: mdan-builder
|
|
14
|
-
|
|
15
|
-
mdan-creative-intelligence-suite:
|
|
16
|
-
url: https://github.com/mdan-code-org/mdan-module-creative-intelligence-suite
|
|
17
|
-
module-definition: src/module.yaml
|
|
18
|
-
code: cis
|
|
19
|
-
name: "MDAN Creative Intelligence Suite"
|
|
20
|
-
description: "Creative tools for writing, brainstorming, and more"
|
|
21
|
-
defaultSelected: false
|
|
22
|
-
type: mdan-org
|
|
23
|
-
npmPackage: mdan-creative-intelligence-suite
|
|
24
|
-
|
|
25
|
-
mdan-game-dev-studio:
|
|
26
|
-
url: https://github.com/mdan-code-org/mdan-module-game-dev-studio.git
|
|
27
|
-
module-definition: src/module.yaml
|
|
28
|
-
code: gds
|
|
29
|
-
name: "MDAN Game Dev Studio"
|
|
30
|
-
description: "Game development agents and workflows"
|
|
31
|
-
defaultSelected: false
|
|
32
|
-
type: mdan-org
|
|
33
|
-
npmPackage: mdan-game-dev-studio
|
|
34
|
-
|
|
35
|
-
mdan-test-architecture-enterprise:
|
|
36
|
-
url: https://github.com/mdan-code-org/mdan-test-architecture-enterprise
|
|
37
|
-
module-definition: src/module.yaml
|
|
38
|
-
code: tea
|
|
39
|
-
name: "Test Architect"
|
|
40
|
-
description: "Master Test Architect for quality strategy, test automation, and release gates"
|
|
41
|
-
defaultSelected: false
|
|
42
|
-
type: mdan-org
|
|
43
|
-
npmPackage: mdan-test-architecture-enterprise
|
|
44
|
-
|
|
45
|
-
# whiteport-design-system:
|
|
46
|
-
# url: https://github.com/mdan-code-org/mdan-wds-expansion
|
|
47
|
-
# module-definition: src/module.yaml
|
|
48
|
-
# code: wds
|
|
49
|
-
# name: "Whiteport UX Design System"
|
|
50
|
-
# description: "UX design framework with Figma integration"
|
|
51
|
-
# defaultSelected: false
|
|
52
|
-
# type: community
|
|
53
|
-
# npmPackage: mdan-wds-expansion
|
|
6
|
+
modules: {}
|
|
@@ -6,32 +6,21 @@
|
|
|
6
6
|
startMessage: |
|
|
7
7
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
8
8
|
|
|
9
|
-
🎉
|
|
9
|
+
🎉 Welcome to MDAN — Multi-Agent Development Agentic Network!
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
MDAN is a platform powered by the MDAN Core and Module Ecosystem.
|
|
12
12
|
- Select and install modules during setup - customize your experience
|
|
13
|
-
-
|
|
14
|
-
-
|
|
15
|
-
- Documentation: https://docs.mdan.org
|
|
13
|
+
- AI-driven development with specialized agents and wizards
|
|
14
|
+
- Documentation: https://github.com/khalilbenaz/MDAN
|
|
16
15
|
|
|
17
|
-
🌟 MDAN is 100% free and open source.
|
|
16
|
+
🌟 MDAN is 100% free and open source. 🇲🇦
|
|
18
17
|
- No gated Discord. No paywalls. No gated content.
|
|
19
18
|
- We believe in empowering everyone, not just those who can pay.
|
|
20
|
-
- Knowledge should be shared, not sold.
|
|
21
|
-
|
|
22
|
-
🎤 SPEAKING & MEDIA:
|
|
23
|
-
- Available for conferences, podcasts, and media appearances
|
|
24
|
-
- Topics: AI-Native Transformation, Spec and Context Engineering, MDAN Method
|
|
25
|
-
- For speaking inquiries or interviews, reach out to MDAN on Discord!
|
|
26
19
|
|
|
27
20
|
⭐ HELP US GROW:
|
|
28
|
-
- Star us on GitHub: https://github.com/
|
|
29
|
-
- Subscribe on YouTube: https://www.youtube.com/@MDANCode
|
|
30
|
-
- Free Community and Support: https://discord.gg/gk8jAdXWmj
|
|
31
|
-
- Donate: https://buymeacoffee.com/mdan
|
|
32
|
-
- Corporate Sponsorship available
|
|
21
|
+
- Star us on GitHub: https://github.com/khalilbenaz/MDAN
|
|
33
22
|
|
|
34
|
-
Latest updates: https://github.com/
|
|
23
|
+
Latest updates: https://github.com/khalilbenaz/MDAN/blob/main/CHANGELOG.md
|
|
35
24
|
|
|
36
25
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
37
26
|
|
|
@@ -1378,10 +1378,7 @@ class Installer {
|
|
|
1378
1378
|
lines.push(
|
|
1379
1379
|
'',
|
|
1380
1380
|
' Next steps:',
|
|
1381
|
-
`
|
|
1382
|
-
` Join our Discord: ${color.dim('https://discord.gg/gk8jAdXWmj')}`,
|
|
1383
|
-
` Star us on GitHub: ${color.dim('https://github.com/mdan-code-org/MDAN/')}`,
|
|
1384
|
-
` Subscribe on YouTube: ${color.dim('https://www.youtube.com/@MDANCode')}`,
|
|
1381
|
+
` Star us on GitHub: ${color.dim('https://github.com/khalilbenaz/MDAN')}`,
|
|
1385
1382
|
` Run ${color.cyan('/mdan-help')} with your IDE Agent and ask it how to get started`,
|
|
1386
1383
|
);
|
|
1387
1384
|
|
|
@@ -25,17 +25,17 @@ const CLIUtils = {
|
|
|
25
25
|
|
|
26
26
|
// ASCII art logo
|
|
27
27
|
const logo = [
|
|
28
|
-
'
|
|
29
|
-
'
|
|
30
|
-
'
|
|
31
|
-
'
|
|
32
|
-
'
|
|
33
|
-
'
|
|
28
|
+
' ███╗ ███╗██████╗ █████╗ ███╗ ██╗',
|
|
29
|
+
' ████╗ ████║██╔══██╗██╔══██╗████╗ ██║',
|
|
30
|
+
' ██╔████╔██║██║ ██║███████║██╔██╗ ██║',
|
|
31
|
+
' ██║╚██╔╝██║██║ ██║██╔══██║██║╚██╗██║',
|
|
32
|
+
' ██║ ╚═╝ ██║██████╔╝██║ ██║██║ ╚████║',
|
|
33
|
+
' ╚═╝ ╚═╝╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═══╝',
|
|
34
34
|
]
|
|
35
35
|
.map((line) => color.yellow(line))
|
|
36
36
|
.join('\n');
|
|
37
37
|
|
|
38
|
-
const tagline = '
|
|
38
|
+
const tagline = ' Multi-Agent Development Agentic Network';
|
|
39
39
|
|
|
40
40
|
await prompts.box(`${logo}\n${tagline}`, `v${version}`, {
|
|
41
41
|
contentAlign: 'center',
|
package/tools/cli/mdan-cli.js
CHANGED
|
@@ -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
|
});
|
package/website/astro.config.mjs
CHANGED
|
@@ -51,9 +51,7 @@ export default defineConfig({
|
|
|
51
51
|
|
|
52
52
|
// Social links
|
|
53
53
|
social: [
|
|
54
|
-
{ icon: '
|
|
55
|
-
{ icon: 'github', label: 'GitHub', href: 'https://github.com/mdan-code-org/MDAN' },
|
|
56
|
-
{ icon: 'youtube', label: 'YouTube', href: 'https://www.youtube.com/@MDANCode' },
|
|
54
|
+
{ icon: 'github', label: 'GitHub', href: 'https://github.com/khalilbenaz/MDAN' },
|
|
57
55
|
],
|
|
58
56
|
|
|
59
57
|
// Show last updated timestamps
|