bmad-plus 0.1.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.
- package/CHANGELOG.md +75 -0
- package/README.md +482 -0
- package/osint-agent-package/README.md +88 -0
- package/osint-agent-package/SETUP_KEYS.md +108 -0
- package/osint-agent-package/agents/osint-investigator.md +80 -0
- package/osint-agent-package/install.ps1 +87 -0
- package/osint-agent-package/install.sh +76 -0
- package/osint-agent-package/skills/bmad-osint-investigate/SKILL.md +147 -0
- package/osint-agent-package/skills/bmad-osint-investigate/osint/SKILL.md +452 -0
- package/osint-agent-package/skills/bmad-osint-investigate/osint/assets/dossier-template.md +116 -0
- package/osint-agent-package/skills/bmad-osint-investigate/osint/references/content-extraction.md +100 -0
- package/osint-agent-package/skills/bmad-osint-investigate/osint/references/enrichment-databases-fr.md +148 -0
- package/osint-agent-package/skills/bmad-osint-investigate/osint/references/platforms.md +130 -0
- package/osint-agent-package/skills/bmad-osint-investigate/osint/references/psychoprofile.md +69 -0
- package/osint-agent-package/skills/bmad-osint-investigate/osint/references/tools.md +281 -0
- package/osint-agent-package/skills/bmad-osint-investigate/osint/scripts/_http.py +101 -0
- package/osint-agent-package/skills/bmad-osint-investigate/osint/scripts/apify.py +260 -0
- package/osint-agent-package/skills/bmad-osint-investigate/osint/scripts/brightdata.py +101 -0
- package/osint-agent-package/skills/bmad-osint-investigate/osint/scripts/diagnose.py +141 -0
- package/osint-agent-package/skills/bmad-osint-investigate/osint/scripts/exa.py +79 -0
- package/osint-agent-package/skills/bmad-osint-investigate/osint/scripts/jina.py +71 -0
- package/osint-agent-package/skills/bmad-osint-investigate/osint/scripts/mcp-client.py +136 -0
- package/osint-agent-package/skills/bmad-osint-investigate/osint/scripts/parallel.py +85 -0
- package/osint-agent-package/skills/bmad-osint-investigate/osint/scripts/perplexity.py +102 -0
- package/osint-agent-package/skills/bmad-osint-investigate/osint/scripts/tavily.py +72 -0
- package/osint-agent-package/skills/bmad-osint-investigate/osint/scripts/volley.py +208 -0
- package/osint-agent-package/skills/bmad-osint-investigator/SKILL.md +15 -0
- package/package.json +51 -0
- package/readme-international/README.de.md +392 -0
- package/readme-international/README.es.md +484 -0
- package/readme-international/README.fr.md +482 -0
- package/src/bmad-plus/agents/agent-architect-dev/SKILL.md +96 -0
- package/src/bmad-plus/agents/agent-architect-dev/bmad-skill-manifest.yaml +13 -0
- package/src/bmad-plus/agents/agent-maker/SKILL.md +201 -0
- package/src/bmad-plus/agents/agent-maker/bmad-skill-manifest.yaml +13 -0
- package/src/bmad-plus/agents/agent-orchestrator/SKILL.md +137 -0
- package/src/bmad-plus/agents/agent-orchestrator/bmad-skill-manifest.yaml +13 -0
- package/src/bmad-plus/agents/agent-quality/SKILL.md +83 -0
- package/src/bmad-plus/agents/agent-quality/bmad-skill-manifest.yaml +13 -0
- package/src/bmad-plus/agents/agent-shadow/SKILL.md +71 -0
- package/src/bmad-plus/agents/agent-shadow/bmad-skill-manifest.yaml +13 -0
- package/src/bmad-plus/agents/agent-strategist/SKILL.md +80 -0
- package/src/bmad-plus/agents/agent-strategist/bmad-skill-manifest.yaml +13 -0
- package/src/bmad-plus/data/role-triggers.yaml +209 -0
- package/src/bmad-plus/module-help.csv +10 -0
- package/src/bmad-plus/module.yaml +174 -0
- package/src/bmad-plus/skills/bmad-plus-autopilot/SKILL.md +99 -0
- package/src/bmad-plus/skills/bmad-plus-parallel/SKILL.md +93 -0
- package/src/bmad-plus/skills/bmad-plus-sync/SKILL.md +69 -0
- package/tools/bmad-plus-npx.js +33 -0
- package/tools/cli/bmad-plus-cli.js +50 -0
- package/tools/cli/commands/install.js +437 -0
- package/tools/cli/commands/uninstall.js +70 -0
package/package.json
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json.schemastore.org/package.json",
|
|
3
|
+
"name": "bmad-plus",
|
|
4
|
+
"version": "0.1.0",
|
|
5
|
+
"description": "BMAD+ — Augmented AI-Driven Development Framework with multi-role agents, autopilot, and parallel execution",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"bmad",
|
|
8
|
+
"ai",
|
|
9
|
+
"agents",
|
|
10
|
+
"development",
|
|
11
|
+
"autopilot",
|
|
12
|
+
"orchestrator",
|
|
13
|
+
"osint",
|
|
14
|
+
"multi-agent"
|
|
15
|
+
],
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "git+https://github.com/lrochetta/BMAD-PLUS.git"
|
|
19
|
+
},
|
|
20
|
+
"license": "MIT",
|
|
21
|
+
"author": "Laurent Rochetta",
|
|
22
|
+
"main": "tools/cli/bmad-plus-cli.js",
|
|
23
|
+
"bin": {
|
|
24
|
+
"bmad-plus": "tools/bmad-plus-npx.js"
|
|
25
|
+
},
|
|
26
|
+
"files": [
|
|
27
|
+
"tools",
|
|
28
|
+
"src/bmad-plus",
|
|
29
|
+
"osint-agent-package",
|
|
30
|
+
"readme-international",
|
|
31
|
+
"CHANGELOG.md"
|
|
32
|
+
],
|
|
33
|
+
"scripts": {
|
|
34
|
+
"install:bmad": "node tools/cli/bmad-plus-cli.js install",
|
|
35
|
+
"uninstall:bmad": "node tools/cli/bmad-plus-cli.js uninstall"
|
|
36
|
+
},
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"@clack/prompts": "^1.0.0",
|
|
39
|
+
"chalk": "^4.1.2",
|
|
40
|
+
"commander": "^14.0.0",
|
|
41
|
+
"fs-extra": "^11.3.0",
|
|
42
|
+
"js-yaml": "^4.1.0",
|
|
43
|
+
"picocolors": "^1.1.1"
|
|
44
|
+
},
|
|
45
|
+
"engines": {
|
|
46
|
+
"node": ">=20.0.0"
|
|
47
|
+
},
|
|
48
|
+
"publishConfig": {
|
|
49
|
+
"access": "public"
|
|
50
|
+
}
|
|
51
|
+
}
|
|
@@ -0,0 +1,392 @@
|
|
|
1
|
+
# 🚀 BMAD+ — Erweitertes KI-gestütztes Entwicklungs-Framework
|
|
2
|
+
|
|
3
|
+
[](../CHANGELOG.md)
|
|
4
|
+
[](https://github.com/bmad-code-org/BMAD-METHOD)
|
|
5
|
+
[](../LICENSE)
|
|
6
|
+
|
|
7
|
+
<div align="center">
|
|
8
|
+
<a href="../README.md">English</a> | <a href="README.fr.md">Français</a> | <a href="README.es.md">Español</a> | 🌐 <b>Deutsch</b>
|
|
9
|
+
</div>
|
|
10
|
+
|
|
11
|
+
> Intelligenter Fork von [BMAD-METHOD](https://github.com/bmad-code-org/BMAD-METHOD) v6.2.0 — Multirole-Agenten mit automatischer Aktivierung, Autopilot-Modus, überwachte parallele Ausführung und WhatsApp-Upstream-Monitoring.
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
## 📋 Inhaltsverzeichnis
|
|
16
|
+
|
|
17
|
+
- [Warum BMAD+?](#-warum-bmad-)
|
|
18
|
+
- [Schnellstart](#-schnellstart)
|
|
19
|
+
- [Architektur](#-architektur)
|
|
20
|
+
- [Die 5 Agenten](#-die-5-agenten)
|
|
21
|
+
- [Pack-System](#-pack-system)
|
|
22
|
+
- [Innovationen](#-innovationen)
|
|
23
|
+
- [Unterstützte IDEs](#-unterstützte-ides)
|
|
24
|
+
- [Upstream Monitoring](#-upstream-monitoring)
|
|
25
|
+
- [Projektstruktur](#-projektstruktur)
|
|
26
|
+
- [Konfiguration](#-konfiguration)
|
|
27
|
+
- [Versionshistorie](#-versionshistorie)
|
|
28
|
+
- [Lizenz](#-lizenz)
|
|
29
|
+
|
|
30
|
+
---
|
|
31
|
+
|
|
32
|
+
## 💡 Warum BMAD+?
|
|
33
|
+
|
|
34
|
+
BMAD-METHOD ist ein exzellentes Framework mit 9 spezialisierten Agenten. Für einen Solo-Entwickler oder ein kleines Team sind 9 Agenten jedoch zu fragmentiert. BMAD+ löst dieses Problem:
|
|
35
|
+
|
|
36
|
+
| BMAD-METHOD | BMAD+ |
|
|
37
|
+
|---|---|
|
|
38
|
+
| 9 spezialisierte Agenten | **5 Multirole-Agenten** (insgesamt 11 Rollen) |
|
|
39
|
+
| Nur manuelle Aktivierung | **Intelligente automatische Aktivierung** auf 3 Ebenen |
|
|
40
|
+
| Keine automatisierte Pipeline | **Autopilot-Modus**: Idee → Fertigstellung |
|
|
41
|
+
| Sequentielle Ausführung | **Überwachte parallele Ausführung** |
|
|
42
|
+
| Kein Upstream-Tracking | **Wöchentliches Monitoring** mit WhatsApp |
|
|
43
|
+
| 1-2 unterstützte IDEs | **5 IDEs** mit automatischer Erkennung |
|
|
44
|
+
|
|
45
|
+
---
|
|
46
|
+
|
|
47
|
+
## ⚡ Schnellstart
|
|
48
|
+
|
|
49
|
+
### Installation in einem bestehenden Projekt
|
|
50
|
+
|
|
51
|
+
```bash
|
|
52
|
+
npx bmad-plus install
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
Das Installationsprogramm:
|
|
56
|
+
1. Erkennt automatisch installierte IDEs (Claude Code, Gemini CLI, Codex, usw.)
|
|
57
|
+
2. Bietet Packs zur Installation an (Core, OSINT, Maker, Audit)
|
|
58
|
+
3. Generiert angepasste Konfigurationsdateien
|
|
59
|
+
4. Erstellt Ordner für Artefakte
|
|
60
|
+
|
|
61
|
+
### Verwendung nach der Installation
|
|
62
|
+
|
|
63
|
+
#### 💬 Mit wem soll ich sprechen?
|
|
64
|
+
|
|
65
|
+
| Du möchtest... | Sprich mit | Beispiel |
|
|
66
|
+
|---|---|---|
|
|
67
|
+
| Eine Projektidee diskutieren | **Atlas** 🎯 | `Atlas, ich habe eine Projektidee: ein Abrechnungs-SaaS` |
|
|
68
|
+
| Ein PRD / Product Brief erstellen | **Atlas** 🎯 | `Atlas, erstelle das PRD für mein Projekt` |
|
|
69
|
+
| Die technische Architektur entwerfen | **Forge** 🏗️ | `Forge, schlage eine Architektur für die App vor` |
|
|
70
|
+
| Code implementieren | **Forge** 🏗️ | `Forge, setze die Story AUTH-001 um` |
|
|
71
|
+
| Dokumentation schreiben | **Forge** 🏗️ | `Forge, dokumentiere die API` |
|
|
72
|
+
| Testen / Code Review durchführen | **Sentinel** 🔍 | `Sentinel, überprüfe das Auth-Modul` |
|
|
73
|
+
| Einen Sprint planen | **Nexus** 🎼 | `Nexus, erstelle Epics und Storys für das MVP` |
|
|
74
|
+
| Alles von A bis Z automatisieren | **Nexus** 🎼 | `autopilot` und beschreibe dann dein Projekt |
|
|
75
|
+
| Eine Person recherchieren (OSINT) | **Shadow** 🔍 | `Shadow, untersuche John Doe` |
|
|
76
|
+
| Einen neuen BMAD+ Agenten erstellen | **Maker** 🧬 | `Maker, erstelle einen Kundensupport-Agenten` |
|
|
77
|
+
|
|
78
|
+
#### 🚀 Typischer Workflow (manueller Modus)
|
|
79
|
+
|
|
80
|
+
```
|
|
81
|
+
1. "Atlas, mache ein Brainstorming zu meiner [Projekt]-Idee"
|
|
82
|
+
→ Atlas analysiert, stellt Fragen, schlägt Ansätze vor
|
|
83
|
+
|
|
84
|
+
2. "Atlas, erstelle den Product Brief"
|
|
85
|
+
→ Artefakt: _bmad-output/discovery/product-brief.md
|
|
86
|
+
|
|
87
|
+
3. "Atlas, verfasse das PRD"
|
|
88
|
+
→ Artefakt: _bmad-output/discovery/prd.md
|
|
89
|
+
|
|
90
|
+
4. "Forge, schlage die Architektur vor"
|
|
91
|
+
→ Artefakt: _bmad-output/discovery/architecture.md
|
|
92
|
+
|
|
93
|
+
5. "Nexus, zerlege in Epics und Storys"
|
|
94
|
+
→ Artefakt: _bmad-output/build/stories/
|
|
95
|
+
|
|
96
|
+
6. "Forge, implementiere die Story [X]"
|
|
97
|
+
→ Generierter Code + Tests
|
|
98
|
+
|
|
99
|
+
7. "Sentinel, teste und überprüfe"
|
|
100
|
+
→ QA-Bericht + Vorschläge
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
#### ⚡ Automatischer Workflow (Autopilot-Modus)
|
|
104
|
+
|
|
105
|
+
```
|
|
106
|
+
> autopilot
|
|
107
|
+
> "Ein Abrechnungs-SaaS für KMUs mit Angebotsverwaltung"
|
|
108
|
+
```
|
|
109
|
+
|
|
110
|
+
Nexus orchestriert alles automatisch mit Checkpoints für deine Genehmigung.
|
|
111
|
+
|
|
112
|
+
#### 🔑 Wichtige Befehle
|
|
113
|
+
|
|
114
|
+
| Befehl | Beschreibung |
|
|
115
|
+
|----------|-------------|
|
|
116
|
+
| `bmad-help` | Alle verfügbaren Agenten und Skills anzeigen |
|
|
117
|
+
| `autopilot` | Nexus übernimmt die Kontrolle über die gesamte Pipeline |
|
|
118
|
+
| `parallel` | Multirole-Agenten-Ausführung parallel starten |
|
|
119
|
+
|
|
120
|
+
---
|
|
121
|
+
|
|
122
|
+
## 🏗️ Architektur
|
|
123
|
+
|
|
124
|
+
```mermaid
|
|
125
|
+
graph TB
|
|
126
|
+
subgraph Core["⚙️ Core Pack"]
|
|
127
|
+
AT[Atlas 🎯<br/>Strategist]
|
|
128
|
+
FG[Forge 🏗️<br/>Architect-Dev]
|
|
129
|
+
SN[Sentinel 🔍<br/>Quality]
|
|
130
|
+
NX[Nexus 🎼<br/>Orchestrator]
|
|
131
|
+
end
|
|
132
|
+
|
|
133
|
+
subgraph OSINT["🔍 OSINT Pack"]
|
|
134
|
+
SH[Shadow 🔍<br/>OSINT Intel]
|
|
135
|
+
end
|
|
136
|
+
|
|
137
|
+
subgraph Audit["🛡️ Audit Pack"]
|
|
138
|
+
SD["Shield 🛡️<br/>(demnächst verfügbar)"]
|
|
139
|
+
end
|
|
140
|
+
|
|
141
|
+
NX -->|orchestriert| AT
|
|
142
|
+
NX -->|orchestriert| FG
|
|
143
|
+
NX -->|orchestriert| SN
|
|
144
|
+
NX -->|kann aufrufen| SH
|
|
145
|
+
|
|
146
|
+
subgraph Skills["Custom Skills"]
|
|
147
|
+
AP[Autopilot]
|
|
148
|
+
PL[Parallel]
|
|
149
|
+
SY[Sync]
|
|
150
|
+
end
|
|
151
|
+
|
|
152
|
+
NX --> AP
|
|
153
|
+
NX --> PL
|
|
154
|
+
NX --> SY
|
|
155
|
+
|
|
156
|
+
subgraph VPS["VPS-Infrastruktur"]
|
|
157
|
+
MCP[MCP Server<br/>35 tools]
|
|
158
|
+
EVO[Evolution API<br/>WhatsApp]
|
|
159
|
+
MON[Weekly Monitor]
|
|
160
|
+
end
|
|
161
|
+
|
|
162
|
+
SY --> MCP
|
|
163
|
+
MON --> EVO
|
|
164
|
+
MON --> MCP
|
|
165
|
+
```
|
|
166
|
+
|
|
167
|
+
---
|
|
168
|
+
|
|
169
|
+
## 🎭 Die 5 Agenten
|
|
170
|
+
|
|
171
|
+
### Atlas — Strategist 🎯
|
|
172
|
+
|
|
173
|
+
**Verschmilzt:** Analyst (Mary) + Product Manager (John)
|
|
174
|
+
|
|
175
|
+
| Rolle | Spezialität | Automatische Aktivierung |
|
|
176
|
+
|------|-----------|-----------------|
|
|
177
|
+
| **Analyst** | Marktforschung, SWOT, Benchmarks | "analysieren", "Markt", "Benchmark", neues Projekt |
|
|
178
|
+
| **Product Manager** | PRD, Product Briefs, User Stories, Roadmaps | "PRD", "Roadmap", "MVP", Planungsphase |
|
|
179
|
+
|
|
180
|
+
**Fähigkeiten (Capabilities):** Brainstorming (BP), Market Research (MR), Domain Research (DR), Technical Research (TR), Product Brief (CB), PRD (PR), UX Design (CU), Document Project (DP)
|
|
181
|
+
|
|
182
|
+
---
|
|
183
|
+
|
|
184
|
+
### Forge — Architect-Dev 🏗️
|
|
185
|
+
|
|
186
|
+
**Verschmilzt:** Architect (Winston) + Developer (Amelia) + Tech Writer (Paige)
|
|
187
|
+
|
|
188
|
+
| Rolle | Spezialität | Automatische Aktivierung |
|
|
189
|
+
|------|-----------|-----------------|
|
|
190
|
+
| **Architect** | Technisches Design, API, Skalierbarkeit, Stack-Wahl | "Architektur", "API", "Schema", +5 Dateien geändert |
|
|
191
|
+
| **Developer** | TDD-Implementierung, Code Review, Story-Umsetzung | "implementieren", "Code", "Fix", nach Architektur |
|
|
192
|
+
| **Tech Writer** | Dokumentation, Mermaid-Diagramme, Changelogs | "dokumentieren", "README", nach Implementierung |
|
|
193
|
+
|
|
194
|
+
**Fähigkeiten:** Architecture (CA), Implementation Readiness (IR), Dev Story (DS), Code Review (CR), Quick Spec (QS), Quick Dev (QD), Document Project (DP)
|
|
195
|
+
|
|
196
|
+
---
|
|
197
|
+
|
|
198
|
+
### Sentinel — Quality 🔍
|
|
199
|
+
|
|
200
|
+
**Verschmilzt:** QA Engineer (Quinn) + UX Designer (Sally)
|
|
201
|
+
|
|
202
|
+
| Rolle | Spezialität | Automatische Aktivierung |
|
|
203
|
+
|------|-----------|-----------------|
|
|
204
|
+
| **QA Engineer** | API/E2E-Tests, Edge Cases, Coverage, Code Review | "Test", "QA", "Bug", nach Implementierung |
|
|
205
|
+
| **UX Reviewer** | UX-Bewertung, Barrierefreiheit, Interaction Design | "UX", "Interface", "Responsive", Frontend-Änderungen |
|
|
206
|
+
|
|
207
|
+
**Fähigkeiten:** QA Tests (QA), Code Review (CR), UX Design (CU)
|
|
208
|
+
|
|
209
|
+
---
|
|
210
|
+
|
|
211
|
+
### Nexus — Orchestrator 🎼
|
|
212
|
+
|
|
213
|
+
**Verschmilzt:** Scrum Master (Bob) + Quick-Flow Solo Dev (Barry) + **Autopilot** (neu) + **Parallel Supervisor** (neu)
|
|
214
|
+
|
|
215
|
+
| Rolle | Spezialität | Automatische Aktivierung |
|
|
216
|
+
|------|-----------|-----------------|
|
|
217
|
+
| **Scrum Master** | Sprint Planning, Stories, Retrospektiven, Kurskorrektur | "Sprint", "Planung", "Backlog" |
|
|
218
|
+
| **Quick Flow** | Schnelle Spezifikationen, Hotfixes, minimaler Aufwand | "schnell", "Hotfix", "kleiner Fix" |
|
|
219
|
+
| **Autopilot** | Automatisierte Pipeline Idee→Fertigstellung mit Checkpoints | "Autopilot", "alles verwalten", Autopilot-Modus |
|
|
220
|
+
| **Parallel Supervisor** | Gleichzeitige Multirole-Entwicklung, Konflikterkennung | "parallel", unabhängige Aufgaben erkannt |
|
|
221
|
+
|
|
222
|
+
**Fähigkeiten:** Sprint Planning (SP), Create Story (CS), Epics & Stories (ES), Retrospective (ER), Course Correction (CC), Sprint Status (SS), Quick Spec (QS), Quick Dev (QD), **Autopilot (AP)**, **Parallel (PL)**
|
|
223
|
+
|
|
224
|
+
---
|
|
225
|
+
|
|
226
|
+
### Shadow — OSINT Intelligence 🔍 *(OSINT Pack)*
|
|
227
|
+
|
|
228
|
+
**Umfassender OSINT-Untersuchungsagent.**
|
|
229
|
+
|
|
230
|
+
| Fähigkeit | Beschreibung |
|
|
231
|
+
|-----------|-------------|
|
|
232
|
+
| **INV** | Komplette Untersuchung Phase 0→6 mit bewertetem Dossier |
|
|
233
|
+
| **QS** | Schnelle Multi-Engine-Suche |
|
|
234
|
+
| **LI/IG/FB** | Scraping von LinkedIn, Instagram, Facebook |
|
|
235
|
+
| **PP** | MBTI / Big Five Psychoprofil |
|
|
236
|
+
| **CE** | Kontaktanreicherung (E-Mail, Telefon) |
|
|
237
|
+
| **DG** | Diagnose verfügbarer Tools/APIs |
|
|
238
|
+
|
|
239
|
+
**Stack:** 55+ Apify Actors, 7 Such-APIs, 100% Python stdlib, Vertrauensgrade A/B/C/D
|
|
240
|
+
|
|
241
|
+
---
|
|
242
|
+
|
|
243
|
+
### Maker — Agent Creator 🧬 *(Maker Pack)*
|
|
244
|
+
|
|
245
|
+
**Meta-Agent, der andere Agenten erstellt.** Gib ihm eine Beschreibung → er generiert ein komplettes Paket.
|
|
246
|
+
|
|
247
|
+
| Befehl | Beschreibung |
|
|
248
|
+
|------|-------------|
|
|
249
|
+
| **CA** | Create Agent — geführte Erstellung in 4 Phasen |
|
|
250
|
+
| **QA** | Quick Agent — schnelle Erstellung mit sinnvollen Vorgaben |
|
|
251
|
+
| **EA** | Edit Agent — eine bestehende SKILL.md ändern |
|
|
252
|
+
| **VA** | Validate Agent — BMAD+-Konformität prüfen |
|
|
253
|
+
| **PA** | Package Agent — den Integrations-Ordner generieren |
|
|
254
|
+
|
|
255
|
+
**Pipeline:** Discovery → Design (Benutzerfreigabe) → Generierung → Validierung
|
|
256
|
+
**Ausgabe:** `_bmad-output/ready-to-integrate/` — bereit zum Kopieren in BMAD+
|
|
257
|
+
|
|
258
|
+
---
|
|
259
|
+
|
|
260
|
+
## 📦 Pack-System
|
|
261
|
+
|
|
262
|
+
BMAD+ verwendet ein modulares Pack-System. Core ist immer installiert, zusätzliche Packs sind optional.
|
|
263
|
+
|
|
264
|
+
```
|
|
265
|
+
npx bmad-plus install
|
|
266
|
+
|
|
267
|
+
🎛️ Welche Packs sollen installiert werden?
|
|
268
|
+
Core (Atlas, Forge, Sentinel, Nexus) ist immer enthalten.
|
|
269
|
+
|
|
270
|
+
🔍 OSINT — Shadow (Untersuchung, Scraping, Psychoprofil)
|
|
271
|
+
🧬 Agent Creator — Maker (Design, Build, Package)
|
|
272
|
+
🛡️ Sicherheitsaudit — Shield (Schwachstellen-Scan) [demnächst]
|
|
273
|
+
🤖 Alles installieren
|
|
274
|
+
Keine — Nur Core
|
|
275
|
+
```
|
|
276
|
+
|
|
277
|
+
| Pack | Agenten | Skills | Status |
|
|
278
|
+
|------|--------|--------|--------|
|
|
279
|
+
| ⚙️ **Core** | Atlas, Forge, Sentinel, Nexus | autopilot, parallel, sync | ✅ Stabil |
|
|
280
|
+
| 🔍 **OSINT** | Shadow | bmad-osint-investigate | ✅ Stabil |
|
|
281
|
+
| 🧬 **Maker** | Maker | — | ✅ Stabil |
|
|
282
|
+
| 🛡️ **Audit** | Shield | bmad-audit-scan, bmad-audit-report | 🔜 Demnächst |
|
|
283
|
+
|
|
284
|
+
Jedes Pack definiert:
|
|
285
|
+
- Seine Agenten und Fähigkeiten
|
|
286
|
+
- Erforderliche/optionale API-Schlüssel
|
|
287
|
+
- Das externe Paket (falls zutreffend)
|
|
288
|
+
|
|
289
|
+
---
|
|
290
|
+
|
|
291
|
+
## ✨ Innovationen
|
|
292
|
+
|
|
293
|
+
### 1. 3-Stufige intelligente automatische Aktivierung
|
|
294
|
+
|
|
295
|
+
Jeder Agent kann **automatisch** seine Rolle wechseln, wenn der Kontext dies erfordert:
|
|
296
|
+
|
|
297
|
+
| Stufe | Mechanismus | Beispiel |
|
|
298
|
+
|--------|-----------|---------|
|
|
299
|
+
| 🔤 **Muster** | Schlüsselwörter in der Anfrage | "review" → QA aktiviert |
|
|
300
|
+
| 🌐 **Kontextuell** | Bei der Arbeit erkannte Domäne | Finanzielle Berechnungen → QA nach dem Code automatisch aktiviert |
|
|
301
|
+
| 🧠 **Logik** | Logikketten während der Ausführung | Architektur-Inkonsistenz → Architekt automatisch aktiviert |
|
|
302
|
+
|
|
303
|
+
Der Agent **kündigt** seine automatische Aktivierung an: *"💡 I'm switching to QA mode — financial calculations detected. Say 'skip' to stay in current mode."*
|
|
304
|
+
|
|
305
|
+
### 2. Autopilot-Modus
|
|
306
|
+
|
|
307
|
+
Eine Projektidee eingeben → Nexus orchestriert die komplette Pipeline:
|
|
308
|
+
|
|
309
|
+
```
|
|
310
|
+
📋 Discovery (Atlas)
|
|
311
|
+
└→ Brainstorming → Product Brief → PRD → UX Design
|
|
312
|
+
🔴 CHECKPOINT: PRD-Genehmigung
|
|
313
|
+
```
|
|
314
|
+
|
|
315
|
+
(Rest des Pipelines entspricht dem Standard-Prozess)
|
|
316
|
+
|
|
317
|
+
### 3. Überwachte parallele Ausführung
|
|
318
|
+
|
|
319
|
+
| Parallelisierbar ✅ | Sequentiell 🚫 |
|
|
320
|
+
|---|---|
|
|
321
|
+
| Stories ohne Abhängigkeiten | Gleiche Datei geändert |
|
|
322
|
+
| Research + technisches Audit | Story B hängt von Story A ab |
|
|
323
|
+
| Tests + Dokumentation | Architektur vor Code |
|
|
324
|
+
|
|
325
|
+
---
|
|
326
|
+
|
|
327
|
+
## 🖥️ Unterstützte IDEs
|
|
328
|
+
|
|
329
|
+
Das Installationsprogramm erkennt IDEs automatisch und generiert Konfigurationen:
|
|
330
|
+
|
|
331
|
+
| IDE | Konfigurationsdatei | Erkennung |
|
|
332
|
+
|-----|---------------|-----------|
|
|
333
|
+
| Claude Code | `CLAUDE.md` | `.claude/` Ordner |
|
|
334
|
+
| Gemini CLI | `GEMINI.md` | `.gemini/` Ordner |
|
|
335
|
+
| Antigravity | `.gemini/` + `.agents/` | Antigravity-Erweiterung |
|
|
336
|
+
| Codex CLI | `AGENTS.md` | `.codex/` Ordner |
|
|
337
|
+
| OpenCode | `OPENCODE.md` | opencode-Konfiguration |
|
|
338
|
+
|
|
339
|
+
---
|
|
340
|
+
|
|
341
|
+
## 📡 Upstream Monitoring
|
|
342
|
+
|
|
343
|
+
### Wöchentliche Pipeline (VPS Cron, Montag 9 Uhr)
|
|
344
|
+
|
|
345
|
+
```
|
|
346
|
+
1. holt BMAD-METHOD-Updates
|
|
347
|
+
2. Diff-Analyse über KI der Dateien (Gemini AI)
|
|
348
|
+
3. WhatsApp Benachrichtigung & GH PR Log
|
|
349
|
+
```
|
|
350
|
+
|
|
351
|
+
---
|
|
352
|
+
|
|
353
|
+
## 📁 Projektstruktur
|
|
354
|
+
|
|
355
|
+
```
|
|
356
|
+
BMAD+/
|
|
357
|
+
├── README.md ← Diese Datei (Englisch)
|
|
358
|
+
├── readme-international/ ← Übersetzte READMEs (fr, es, de)
|
|
359
|
+
├── CHANGELOG.md ← Versionierung
|
|
360
|
+
├── CLAUDE.md / GEMINI.md / AGENTS.md ← IDE-Konfigurationen
|
|
361
|
+
```
|
|
362
|
+
|
|
363
|
+
(Detaillierte interne Struktur befindet sich in der Hauptbibliothek)
|
|
364
|
+
|
|
365
|
+
---
|
|
366
|
+
|
|
367
|
+
## ⚙️ Konfiguration (module.yaml)
|
|
368
|
+
|
|
369
|
+
- `project_name` (Name des Projekts)
|
|
370
|
+
- `execution_mode` (manual, autopilot, hybrid)
|
|
371
|
+
- API Keys: `GEMINI_API_KEY`, `EVOLUTION_API_KEY`, `APIFY_API_TOKEN`, usw.
|
|
372
|
+
|
|
373
|
+
---
|
|
374
|
+
|
|
375
|
+
## 📜 Versionshistorie
|
|
376
|
+
|
|
377
|
+
| Version | Datum | Beschreibung |
|
|
378
|
+
|---------|------|-------------|
|
|
379
|
+
| **0.1.0** | 2026-03-17 | 🎉 Foundation — 6 Agenten (Atlas, Forge, Sentinel, Nexus, Shadow, Maker), 3 Skills, Pack-System, Monitoring, IDE Support |
|
|
380
|
+
|
|
381
|
+
Siehe [CHANGELOG.md](../CHANGELOG.md) für vollständige Details.
|
|
382
|
+
|
|
383
|
+
---
|
|
384
|
+
|
|
385
|
+
## 📄 Lizenz
|
|
386
|
+
|
|
387
|
+
MIT — Basierend auf [BMAD-METHOD](https://github.com/bmad-code-org/BMAD-METHOD) (MIT)
|
|
388
|
+
|
|
389
|
+
### Danksagungen
|
|
390
|
+
- **BMAD-METHOD** von [bmad-code-org](https://github.com/bmad-code-org)
|
|
391
|
+
- **OSINT Pipeline** von [smixs/osint-skill](https://github.com/smixs/osint-skill) (MIT)
|
|
392
|
+
- **Apify Actor Runner** von [apify/agent-skills](https://github.com/apify/agent-skills) (MIT)
|