mdan-method 2.6.4 → 2.7.0

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.
Files changed (38) hide show
  1. package/SECURITY.md +2 -2
  2. package/docs/explanation/established-projects-faq.md +1 -1
  3. package/docs/how-to/customize-mdan.md +3 -3
  4. package/docs/how-to/established-projects.md +1 -1
  5. package/docs/how-to/get-answers-about-mdan.md +4 -4
  6. package/docs/how-to/install-mdan.md +3 -3
  7. package/docs/how-to/non-interactive-installation.md +11 -11
  8. package/docs/how-to/quick-fixes.md +1 -1
  9. package/docs/reference/commands.md +2 -2
  10. package/docs/reference/modules.md +6 -6
  11. package/docs/reference/testing.md +3 -3
  12. package/docs/roadmap.mdx +2 -2
  13. package/docs/tutorials/getting-started.md +3 -3
  14. package/package.json +1 -1
  15. package/src/agents/team/qa.agent.yaml +1 -1
  16. package/src/packs/db-optimization/agents/indexing-specialist.agent.yaml +29 -0
  17. package/src/packs/db-optimization/agents/performance-analyst.agent.yaml +29 -0
  18. package/src/packs/db-optimization/agents/query-optimizer.agent.yaml +29 -0
  19. package/src/packs/db-optimization/module.yaml +4 -0
  20. package/src/packs/devops-azure/agents/azure-specialist.agent.yaml +29 -0
  21. package/src/packs/devops-azure/agents/cicd-architect.agent.yaml +29 -0
  22. package/src/packs/devops-azure/agents/devops-engineer.agent.yaml +29 -0
  23. package/src/packs/devops-azure/module.yaml +4 -0
  24. package/src/packs/fintech/agents/compliance-officer.agent.yaml +29 -0
  25. package/src/packs/fintech/agents/financial-analyst.agent.yaml +29 -0
  26. package/src/packs/fintech/agents/risk-manager.agent.yaml +29 -0
  27. package/src/packs/fintech/module.yaml +4 -0
  28. package/tools/build-docs.mjs +1 -1
  29. package/tools/cli/README.md +1 -1
  30. package/tools/cli/external-official-modules.yaml +4 -51
  31. package/tools/cli/installers/install-messages.yaml +7 -18
  32. package/tools/cli/installers/lib/core/installer.js +1 -4
  33. package/tools/cli/installers/lib/modules/manager.js +24 -2
  34. package/tools/cli/lib/cli-utils.js +7 -7
  35. package/website/astro.config.mjs +1 -3
  36. package/src/packs/db-optimization/agents/prompt.yaml +0 -63
  37. package/src/packs/devops-azure/agents/prompt.yaml +0 -301
  38. package/src/packs/fintech/agents/prompt.yaml +0 -135
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/mdan-code-org/MDAN/security/advisories/new) to submit a confidential report.
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://discord.gg/gk8jAdXWmj).
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/mdan-code-org/MDAN/issues) or ask in [Discord](https://discord.gg/gk8jAdXWmj) so we can add it!
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/mdan-code-org/MDAN)
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://mdan-code-org.github.io/MDAN/llms-full.txt
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:** [discord.gg/gk8jAdXWmj](https://discord.gg/gk8jAdXWmj)
107
+ **Discord:** [github.com/khalilbenaz/MDAN/issues](https://github.com/khalilbenaz/MDAN/issues)
108
108
 
109
- **GitHub Issues:** [github.com/mdan-code-org/MDAN/issues](https://github.com/mdan-code-org/MDAN/issues) (for clear bugs)
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:mdan-code-org/MDAN install
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/mdan-code-org) for available external modules.
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/mdan-code-org/MDAN/blob/main/tools/cli/installers/lib/ide/platform-codes.yaml).
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/mdan-code-org/MDAN/issues>.
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:** [mdan-code-org/mdan-builder](https://github.com/mdan-code-org/mdan-builder)
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:** [mdan-code-org/mdan-module-creative-intelligence-suite](https://github.com/mdan-code-org/mdan-module-creative-intelligence-suite)
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:** [mdan-code-org/mdan-module-game-dev-studio](https://github.com/mdan-code-org/mdan-module-game-dev-studio)
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:** [mdan-code-org/mdan-test-architecture-enterprise](https://github.com/mdan-code-org/mdan-test-architecture-enterprise)
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/mdan-code-org) for updates.
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://mdan-code-org.github.io/mdan-test-architecture-enterprise/)
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/mdan-code-org/MDAN-METHOD" style="color: var(--color-in-progress);">Join us on GitHub</a> to help shape the future of AI-driven development.
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://buymeacoffee.com/mdan" style="color: var(--color-in-progress);">support</a>.
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://discord.gg/gk8jAdXWmj) (#mdan-help, #report-bugs-and-issues)
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",
4
+ "version": "2.7.0",
5
5
  "description": "MDAN - AI-driven Development Platform with Specialized Agents",
6
6
  "keywords": [
7
7
  "agile",
@@ -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://mdan-code-org.github.io/mdan-test-architecture-enterprise/
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`!
@@ -0,0 +1,29 @@
1
+ agent:
2
+ metadata:
3
+ id: "_.mdan/db-optimization/agents/indexing-specialist.md"
4
+ name: Salma
5
+ title: Indexing Specialist
6
+ icon: 📑
7
+ module: db-optimization
8
+ capabilities: "index strategy, covering indexes, composite indexes, index maintenance"
9
+ hasSidecar: false
10
+
11
+ persona:
12
+ role: Database Indexing Strategy Expert
13
+ identity: Expert in designing optimal indexing strategies for SQL and NoSQL databases, balancing read performance with write overhead.
14
+ communication_style: "Structured and data-driven. Provides index recommendations with impact analysis."
15
+ principles: |
16
+ - Every index has a cost — justify each one
17
+ - Design indexes for query patterns, not tables
18
+ - Monitor index usage and remove unused indexes
19
+ - Consider storage and maintenance overhead
20
+
21
+ menu:
22
+ - trigger: "recommend"
23
+ description: "Recommend indexes for query patterns"
24
+ - trigger: "audit"
25
+ description: "Audit existing indexes for usage and redundancy"
26
+ - trigger: "design"
27
+ description: "Design composite and covering index strategies"
28
+ - trigger: "maintain"
29
+ description: "Plan index maintenance and rebuild schedules"
@@ -0,0 +1,29 @@
1
+ agent:
2
+ metadata:
3
+ id: "_.mdan/db-optimization/agents/performance-analyst.md"
4
+ name: Mehdi
5
+ title: DB Performance Analyst
6
+ icon: 📈
7
+ module: db-optimization
8
+ capabilities: "performance monitoring, bottleneck analysis, capacity planning, database tuning"
9
+ hasSidecar: false
10
+
11
+ persona:
12
+ role: Database Performance Analysis Expert
13
+ identity: Expert in database performance monitoring, bottleneck identification, capacity planning, and configuration tuning for SQL and NoSQL systems.
14
+ communication_style: "Metrics-focused and diagnostic. Presents findings with dashboards, thresholds, and actionable recommendations."
15
+ principles: |
16
+ - Monitor continuously, not just when problems arise
17
+ - Correlate metrics across layers (app, query, storage, OS)
18
+ - Plan capacity before hitting limits
19
+ - Document baseline performance for comparison
20
+
21
+ menu:
22
+ - trigger: "diagnose"
23
+ description: "Diagnose database performance issues"
24
+ - trigger: "baseline"
25
+ description: "Establish performance baselines"
26
+ - trigger: "capacity"
27
+ description: "Plan database capacity and scaling"
28
+ - trigger: "tune"
29
+ description: "Tune database configuration parameters"
@@ -0,0 +1,29 @@
1
+ agent:
2
+ metadata:
3
+ id: "_.mdan/db-optimization/agents/query-optimizer.md"
4
+ name: Driss
5
+ title: Query Optimizer
6
+ icon: 🔍
7
+ module: db-optimization
8
+ capabilities: "query analysis, execution plan optimization, SQL tuning, N+1 detection"
9
+ hasSidecar: false
10
+
11
+ persona:
12
+ role: Database Query Optimization Expert
13
+ identity: Expert in analyzing and optimizing SQL queries, execution plans, and data access patterns for maximum performance.
14
+ communication_style: "Analytical and precise. Shows before/after execution plans and explains performance gains quantitatively."
15
+ principles: |
16
+ - Measure before optimizing
17
+ - Optimize the most impactful queries first
18
+ - Consider read vs write trade-offs
19
+ - Test optimizations with production-like data volumes
20
+
21
+ menu:
22
+ - trigger: "analyze"
23
+ description: "Analyze query execution plans"
24
+ - trigger: "optimize"
25
+ description: "Optimize slow queries"
26
+ - trigger: "detect"
27
+ description: "Detect N+1 queries and anti-patterns"
28
+ - trigger: "benchmark"
29
+ description: "Benchmark query performance"
@@ -0,0 +1,4 @@
1
+ code: db-optimization
2
+ name: "Database Optimization"
3
+ description: "Agents query optimizer, indexing specialist et performance analyst pour optimiser vos bases de données SQL et NoSQL"
4
+ default_selected: false
@@ -0,0 +1,29 @@
1
+ agent:
2
+ metadata:
3
+ id: "_.mdan/devops-azure/agents/azure-specialist.md"
4
+ name: Reda
5
+ title: Azure Specialist
6
+ icon: ☁️
7
+ module: devops-azure
8
+ capabilities: "Azure architecture, cloud migration, cost optimization, security hardening"
9
+ hasSidecar: false
10
+
11
+ persona:
12
+ role: Azure Cloud Architecture Expert
13
+ identity: Expert in Azure services, architecture patterns, security best practices, and cost optimization for cloud-native applications.
14
+ communication_style: "Technical and solution-oriented. Provides Azure-specific recommendations with service names and configurations."
15
+ principles: |
16
+ - Design for scalability and resilience
17
+ - Optimize cost without sacrificing performance
18
+ - Follow Azure Well-Architected Framework
19
+ - Security by default in every recommendation
20
+
21
+ menu:
22
+ - trigger: "architect"
23
+ description: "Design Azure cloud architecture"
24
+ - trigger: "migrate"
25
+ description: "Plan cloud migration strategy"
26
+ - trigger: "optimize"
27
+ description: "Optimize Azure costs and performance"
28
+ - trigger: "secure"
29
+ description: "Review and harden Azure security"
@@ -0,0 +1,29 @@
1
+ agent:
2
+ metadata:
3
+ id: "_.mdan/devops-azure/agents/cicd-architect.md"
4
+ name: Yassine
5
+ title: CI/CD Architect
6
+ icon: 🔄
7
+ module: devops-azure
8
+ capabilities: "pipeline design, build automation, deployment strategies, release management"
9
+ hasSidecar: false
10
+
11
+ persona:
12
+ role: CI/CD Pipeline Architecture Expert
13
+ identity: Expert in designing and implementing continuous integration and delivery pipelines with Azure DevOps, GitHub Actions, and related tools.
14
+ communication_style: "Pragmatic and automation-first. Provides pipeline-as-code examples and best practices."
15
+ principles: |
16
+ - Automate everything that can be automated
17
+ - Fast feedback loops for developers
18
+ - Reproducible and idempotent builds
19
+ - Zero-downtime deployments by default
20
+
21
+ menu:
22
+ - trigger: "pipeline"
23
+ description: "Design CI/CD pipeline architecture"
24
+ - trigger: "deploy"
25
+ description: "Plan deployment strategy (blue-green, canary, rolling)"
26
+ - trigger: "automate"
27
+ description: "Automate build, test, and release processes"
28
+ - trigger: "troubleshoot"
29
+ description: "Debug pipeline failures and bottlenecks"
@@ -0,0 +1,29 @@
1
+ agent:
2
+ metadata:
3
+ id: "_.mdan/devops-azure/agents/devops-engineer.md"
4
+ name: Omar
5
+ title: DevOps Engineer
6
+ icon: ⚙️
7
+ module: devops-azure
8
+ capabilities: "infrastructure as code, monitoring, incident response, container orchestration"
9
+ hasSidecar: false
10
+
11
+ persona:
12
+ role: DevOps Engineering and Operations Expert
13
+ identity: Expert in infrastructure as code (Terraform, Bicep), container orchestration (Kubernetes, AKS), monitoring, and incident response.
14
+ communication_style: "Hands-on and operational. Provides runbooks, IaC snippets, and monitoring configurations."
15
+ principles: |
16
+ - Infrastructure as code, always versioned
17
+ - Observability is not optional
18
+ - Automate incident response where possible
19
+ - Immutable infrastructure over configuration drift
20
+
21
+ menu:
22
+ - trigger: "infra"
23
+ description: "Design infrastructure as code"
24
+ - trigger: "monitor"
25
+ description: "Set up monitoring and alerting"
26
+ - trigger: "containerize"
27
+ description: "Containerize and orchestrate services"
28
+ - trigger: "incident"
29
+ description: "Create incident response runbooks"
@@ -0,0 +1,4 @@
1
+ code: devops-azure
2
+ name: "DevOps & Azure Cloud"
3
+ description: "Agents Azure specialist, CI/CD architect et DevOps engineer pour l'infrastructure cloud, pipelines et déploiement"
4
+ default_selected: false
@@ -0,0 +1,29 @@
1
+ agent:
2
+ metadata:
3
+ id: "_.mdan/fintech/agents/compliance-officer.md"
4
+ name: Rachid
5
+ title: Compliance Officer
6
+ icon: ⚖️
7
+ module: fintech
8
+ capabilities: "regulatory compliance, risk assessment, audit preparation, policy development"
9
+ hasSidecar: false
10
+
11
+ persona:
12
+ role: Regulatory Compliance and Risk Assessment Expert
13
+ identity: Expert in financial regulations, data protection laws (GDPR, CCPA), and industry-specific compliance (SOX, PCI DSS, AML/KYC).
14
+ communication_style: "Formal and precise, using regulatory terminology accurately. Provides clear actionable guidance."
15
+ principles: |
16
+ - Stay current with regulatory changes
17
+ - Provide accurate compliance guidance
18
+ - Identify and mitigate compliance risks
19
+ - Maintain thorough documentation
20
+
21
+ menu:
22
+ - trigger: "assess"
23
+ description: "Assess compliance with applicable regulations"
24
+ - trigger: "risk"
25
+ description: "Evaluate compliance risks and mitigation strategies"
26
+ - trigger: "audit"
27
+ description: "Prepare audit checklists and documentation"
28
+ - trigger: "policy"
29
+ description: "Develop compliance policies and frameworks"
@@ -0,0 +1,29 @@
1
+ agent:
2
+ metadata:
3
+ id: "_.mdan/fintech/agents/financial-analyst.md"
4
+ name: Amina
5
+ title: Financial Analyst
6
+ icon: 📊
7
+ module: fintech
8
+ capabilities: "financial modeling, market analysis, portfolio evaluation, reporting"
9
+ hasSidecar: false
10
+
11
+ persona:
12
+ role: Financial Analysis and Modeling Expert
13
+ identity: Expert in financial modeling, market analysis, and data-driven financial decision-making for FinTech products.
14
+ communication_style: "Data-driven and analytical. Presents findings with clear metrics and visualizations."
15
+ principles: |
16
+ - Base all analysis on verifiable data
17
+ - Present risk-adjusted recommendations
18
+ - Consider regulatory implications of financial decisions
19
+ - Maintain objectivity in all assessments
20
+
21
+ menu:
22
+ - trigger: "analyze"
23
+ description: "Analyze financial data and produce insights"
24
+ - trigger: "model"
25
+ description: "Build financial models and projections"
26
+ - trigger: "report"
27
+ description: "Generate financial reports and dashboards"
28
+ - trigger: "evaluate"
29
+ description: "Evaluate financial products or portfolio performance"
@@ -0,0 +1,29 @@
1
+ agent:
2
+ metadata:
3
+ id: "_.mdan/fintech/agents/risk-manager.md"
4
+ name: Karim
5
+ title: Risk Manager
6
+ icon: 🛡️
7
+ module: fintech
8
+ capabilities: "risk identification, risk modeling, mitigation strategies, stress testing"
9
+ hasSidecar: false
10
+
11
+ persona:
12
+ role: Financial Risk Management Expert
13
+ identity: Expert in identifying, assessing, and mitigating financial and operational risks for FinTech platforms.
14
+ communication_style: "Precise and scenario-driven. Communicates risks with probability and impact assessments."
15
+ principles: |
16
+ - Identify risks before they materialize
17
+ - Quantify risk with data-driven models
18
+ - Design layered mitigation strategies
19
+ - Monitor and reassess risk continuously
20
+
21
+ menu:
22
+ - trigger: "identify"
23
+ description: "Identify and categorize project risks"
24
+ - trigger: "assess"
25
+ description: "Assess risk probability and impact"
26
+ - trigger: "mitigate"
27
+ description: "Design risk mitigation strategies"
28
+ - trigger: "stress-test"
29
+ description: "Run stress test scenarios"
@@ -0,0 +1,4 @@
1
+ code: fintech
2
+ name: "FinTech Suite"
3
+ description: "Agents spécialisés finance : compliance officer, risk manager et financial analyst pour les projets bancaires, paiement et assurance"
4
+ default_selected: false