overmind-mcp 2.0.6 → 2.0.8

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.
@@ -1,257 +1,257 @@
1
- @echo off
2
- REM ═══════════════════════════════════════════════════════════════════════════════
3
- REM OVERMIND-MCP - INSTALLATION COMPLÈTE WINDOWS (Docker Desktop)
4
- REM ═══════════════════════════════════════════════════════════════════════════════
5
- REM Ce script installe et configure TOUT automatiquement :
6
- REM - npm install -g overmind-mcp
7
- REM - Docker Desktop (vérification)
8
- REM - PostgreSQL + pgvector (si absent)
9
- REM - Infrastructure complète (RabbitMQ, Temporal, Prometheus, Grafana, Jaeger)
10
- REM - Validation de tous les services
11
- REM ═══════════════════════════════════════════════════════════════════════════════
12
-
13
- setlocal enabledelayedexpansion
14
-
15
- REM Couleurs ANSI pour Windows 10+
16
- for /F %%a in ('echo prompt $E ^| cmd') do set "ESC=%%a"
17
- set "%ESC%=[0m"
18
-
19
- echo.
20
- echo %ESC%[96m╔════════════════════════════════════════════════════════════════════════════╗%ESC%
21
- echo %ESC%[96m║%ESC%[0m %ESC%[93m %ESC%[0m %ESC%[96m║%ESC%[0m
22
- echo %ESC%[96m║%ESC%[0m %ESC%[95m 🚀 OVERMIND-MCP - INSTALLATION COMPLÈTE %ESC%[0m %ESC%[96m║%ESC%[0m
23
- echo %ESC%[96m║%ESC%[0m %ESC%[93m Windows + Docker Desktop %ESC%[0m %ESC%[96m║%ESC%[0m
24
- echo %ESC%[96m║%ESC%[0m %ESC%[93m %ESC%[0m %ESC%[96m║%ESC%[0m
25
- echo %ESC%[96m╚════════════════════════════════════════════════════════════════════════════╝%ESC%
26
- echo.
27
-
28
- REM ═══════════════════════════════════════════════════════════════════════════════
29
- REM STEP 1: Vérifier Node.js et NPM
30
- REM ═══════════════════════════════════════════════════════════════════════════════
31
- echo %ESC%[36m═════════════════════════════════════════════════════════════════════════════%ESC%
32
- echo %ESC%[36m║ ÉTAPE 1/7: VÉRIFICATION NODE.JS ET NPM ║%ESC%
33
- echo %ESC%[36m╚════════════════════════════════════════════════════════════════════════════╝%ESC%
34
- echo.
35
-
36
- where node >nul 2>&1
37
- if errorlevel 1 (
38
- echo %ESC%[91m❌ Node.js non trouvé. Installation requise...%ESC%
39
- echo %ESC%[93m📥 Téléchargement: https://nodejs.org/%ESC%
40
- pause
41
- exit /b 1
42
- )
43
-
44
- echo %ESC%[92m✅ Node.js détecté:%ESC%
45
- node --version
46
- echo %ESC%[92m✅ NPM détecté:%ESC%
47
- npm --version
48
- echo.
49
-
50
- REM ═══════════════════════════════════════════════════════════════════════════════
51
- REM STEP 2: Installer OverMind-MCP globalement
52
- REM ═══════════════════════════════════════════════════════════════════════════════
53
- echo %ESC%[36m═════════════════════════════════════════════════════════════════════════════%ESC%
54
- echo %ESC%[36m║ ÉTAPE 2/7: INSTALLATION OVERMIND-MCP ║%ESC%
55
- echo %ESC%[36m╚════════════════════════════════════════════════════════════════════════════╝%ESC%
56
- echo.
57
-
58
- echo %ESC%[93m📦 Installation d'overmind-mcp (dernière version)...%ESC%
59
- call npm install -g overmind-mcp@latest
60
- if errorlevel 1 (
61
- echo %ESC%[91m❌ Erreur installation overmind-mcp%ESC%
62
- pause
63
- exit /b 1
64
- )
65
-
66
- echo %ESC%[92m✅ overmind-mcp installé:%ESC%
67
- npm view overmind-mcp version
68
- echo.
69
-
70
- REM ═══════════════════════════════════════════════════════════════════════════════
71
- REM STEP 3: Vérifier Docker Desktop
72
- REM ═══════════════════════════════════════════════════════════════════════════════
73
- echo %ESC%[36m═════════════════════════════════════════════════════════════════════════════%ESC%
74
- echo %ESC%[36m║ ÉTAPE 3/7: VÉRIFICATION DOCKER DESKTOP ║%ESC%
75
- echo %ESC%[36m╚════════════════════════════════════════════════════════════════════════════╝%ESC%
76
- echo.
77
-
78
- docker --version >nul 2>&1
79
- if errorlevel 1 (
80
- echo %ESC%[91m❌ Docker non trouvé. Docker Desktop requis.%ESC%
81
- echo %ESC%[93m📥 Téléchargement: https://www.docker.com/products/docker-desktop/%ESC%
82
- pause
83
- exit /b 1
84
- )
85
-
86
- echo %ESC%[92m✅ Docker détecté:%ESC%
87
- docker --version
88
- echo.
89
-
90
- REM ═══════════════════════════════════════════════════════════════════════════════
91
- REM STEP 4: Installer PostgreSQL + pgvector
92
- REM ═══════════════════════════════════════════════════════════════════════════════
93
- echo %ESC%[36m═════════════════════════════════════════════════════════════════════════════%ESC%
94
- echo %ESC%[36m║ ÉTAPE 4/7: INSTALLATION POSTGRESQL + PGVECTOR ║%ESC%
95
- echo %ESC%[36m╚════════════════════════════════════════════════════════════════════════════╝%ESC%
96
- echo.
97
-
98
- call npm exec -y overmind-mcp -- install-dependencies
99
- echo.
100
-
101
- REM ═══════════════════════════════════════════════════════════════════════════════
102
- REM STEP 5: Créer configuration OverMind
103
- REM ═══════════════════════════════════════════════════════════════════════════════
104
- echo %ESC%[36m═════════════════════════════════════════════════════════════════════════════%ESC%
105
- echo %ESC%[36m║ ÉTAPE 5/7: CONFIGURATION OVERMIND ║%ESC%
106
- echo %ESC%[36m╚════════════════════════════════════════════════════════════════════════════╝%ESC%
107
- echo.
108
-
109
- if not exist "%USERPROFILE%\.overmind" mkdir "%USERPROFILE%\.overmind"
110
-
111
- REM Créer .env de base
112
- if not exist "%USERPROFILE%\.overmind\.env" (
113
- echo %ESC%[93m📝 Création configuration .env...%ESC%
114
- (
115
- echo # OverMind-MCP Environment Configuration
116
- echo # Généré par install-overmind-windows.bat
117
- echo.
118
- echo # PostgreSQL
119
- echo POSTGRES_HOST=localhost
120
- echo POSTGRES_PORT=5432
121
- echo POSTGRES_USER=postgres
122
- echo POSTGRES_PASSWORD=overmind_temp_password_change_me
123
- echo POSTGRES_DB=overmind
124
- echo.
125
- echo # OpenTelemetry (optionnel)
126
- echo OTEL_ENABLED=false
127
- echo.
128
- echo # Workspace
129
- echo OVERMIND_WORKSPACE=%USERPROFILE%\.overmind
130
- ) > "%USERPROFILE%\.overmind\.env"
131
- echo %ESC%[92m✅ Configuration créée:%ESC% %USERPROFILE%\.overmind\.env
132
- )
133
-
134
- echo.
135
-
136
- REM ═══════════════════════════════════════════════════════════════════════════════
137
- REM STEP 6: Lancer infrastructure Docker complète
138
- REM ═══════════════════════════════════════════════════════════════════════════════
139
- echo %ESC%[36m═════════════════════════════════════════════════════════════════════════════%ESC%
140
- echo %ESC%[36m║ ÉTAPE 6/7: DÉMARRAGE INFRASTRUCTURE DOCKER ║%ESC%
141
- echo %ESC%[36m╚════════════════════════════════════════════════════════════════════════════╝%ESC%
142
- echo.
143
-
144
- REM Télécharger docker-compose depuis GitHub
145
- echo %ESC%[93m📥 Téléchargement docker-compose.yml...%ESC%
146
- curl -sL https://raw.githubusercontent.com/DeamonDev888/overmind-mcp/main/docker-compose.yml -o "%USERPROFILE%\.overmind\docker-compose.yml"
147
- curl -sL https://raw.githubusercontent.com/DeamonDev888/overmind-mcp/main/docker-compose.exporters.yml -o "%USERPROFILE%\.overmind\docker-compose.exporters.yml"
148
-
149
- echo %ESC%[93m🚀 Démarrage de l'infrastructure Docker...%ESC%
150
- cd "%USERPROFILE%\.overmind"
151
- docker-compose -f docker-compose.yml up -d
152
-
153
- echo.
154
- timeout /t 10 /nobreak >nul
155
-
156
- REM ═══════════════════════════════════════════════════════════════════════════════
157
- REM STEP 7: Validation de tous les services
158
- REM ═══════════════════════════════════════════════════════════════════════════════
159
- echo %ESC%[36m═════════════════════════════════════════════════════════════════════════════%ESC%
160
- echo %ESC%[36m║ ÉTAPE 7/7: VALIDATION DES SERVICES ║%ESC%
161
- echo %ESC%[36m╚════════════════════════════════════════════════════════════════════════════╝%ESC%
162
- echo.
163
-
164
- echo %ESC%[93m🔍 Vérification des containers Docker...%ESC%
165
- echo.
166
- docker ps --format "table {{.Names}}\t{{.Status}}\t{{.Ports}}"
167
- echo.
168
-
169
- echo %ESC%[93m🧪 Tests de connexion...%ESC%
170
- echo.
171
-
172
- REM Test PostgreSQL
173
- echo %ESC%[93m • PostgreSQL:%ESC%
174
- docker exec overmind-postgres-pgvector pg_isready -U postgres >nul 2>&1
175
- if errorlevel 1 (
176
- echo %ESC%[91m ❌ PostgreSQL non prêt%ESC%
177
- ) else (
178
- echo %ESC%[92m ✅ PostgreSQL actif%ESC%
179
- )
180
-
181
- REM Test RabbitMQ
182
- echo %ESC%[93m • RabbitMQ:%ESC%
183
- docker ps --filter "name=rabbitmq" --format "{{.Names}}" | findstr rabbitmq >nul
184
- if errorlevel 1 (
185
- echo %ESC%[91m ❌ RabbitMQ non trouvé%ESC%
186
- ) else (
187
- echo %ESC%[92m ✅ RabbitMQ actif%ESC%
188
- )
189
-
190
- REM Test Temporal
191
- echo %ESC%[93m • Temporal:%ESC%
192
- docker ps --filter "name=temporal" --format "{{.Names}}" | findstr temporal >nul
193
- if errorlevel 1 (
194
- echo %ESC%[91m ❌ Temporal non trouvé%ESC%
195
- ) else (
196
- echo %ESC%[92m ✅ Temporal actif%ESC%
197
- )
198
-
199
- REM Test Prometheus
200
- echo %ESC%[93m • Prometheus:%ESC%
201
- docker ps --filter "name=prometheus" --format "{{.Names}}" | findstr prometheus >nul
202
- if errorlevel 1 (
203
- echo %ESC%[91m ❌ Prometheus non trouvé%ESC%
204
- ) else (
205
- echo %ESC%[92m ✅ Prometheus actif%ESC%
206
- )
207
-
208
- REM Test Grafana
209
- echo %ESC%[93m • Grafana:%ESC%
210
- docker ps --filter "name=grafana" --format "{{.Names}}" | findstr grafana >nul
211
- if errorlevel 1 (
212
- echo %ESC%[91m ❌ Grafana non trouvé%ESC%
213
- ) else (
214
- echo %ESC%[92m ✅ Grafana actif%ESC%
215
- )
216
-
217
- REM Test Jaeger
218
- echo %ESC%[93m • Jaeger:%ESC%
219
- docker ps --filter "name=jaeger" --format "{{.Names}}" | findstr jaeger >nul
220
- if errorlevel 1 (
221
- echo %ESC%[91m ❌ Jaeger non trouvé%ESC%
222
- ) else (
223
- echo %ESC%[92m ✅ Jaeger actif%ESC%
224
- )
225
-
226
- echo.
227
-
228
- REM ═══════════════════════════════════════════════════════════════════════════════
229
- REM RÉSUMÉ FINAL
230
- REM ═══════════════════════════════════════════════════════════════════════════════
231
- echo %ESC%[92m╔════════════════════════════════════════════════════════════════════════════╗%ESC%
232
- echo %ESC%[92m║%ESC%[0m %ESC%[97m ✅ INSTALLATION TERMINÉE AVEC SUCCÈS ! %ESC%[0m %ESC%[92m║%ESC%
233
- echo %ESC%[92m╚════════════════════════════════════════════════════════════════════════════╝%ESC%
234
- echo.
235
- echo %ESC%[93m📋 SERVICES DISPONIBLES:%ESC%
236
- echo.
237
- echo %ESC%[96m┌─────────────────────────────────────────────────────────────────┐%ESC%
238
- echo %ESC%[96m│%ESC%[0m %ESC%[95mDocker Desktop:%ESC%[0m %ESC%[96m│%ESC%
239
- echo %ESC%[96m│%ESC%[0m Ouvrez Docker Desktop pour voir tous les containers %ESC%[96m│%ESC%
240
- echo %ESC%[96m│%ESC%[0m %ESC%[96m│%ESC%
241
- echo %ESC%[96m│%ESC%[0m %ESC%[95mURLs utiles:%ESC%[0m %ESC%[96m│%ESC%
242
- echo %ESC%[96m│%ESC%[0m • Prometheus: http://localhost:9090 %ESC%[96m│%ESC%
243
- echo %ESC%[96m│%ESC%[0m • Grafana: http://localhost:3000 (admin/admin) %ESC%[96m│%ESC%
244
- echo %ESC%[96m│%ESC%[0m • Jaeger: http://localhost:16686 %ESC%[96m│%ESC%
245
- echo %ESC%[96m│%ESC%[0m • RabbitMQ: http://localhost:15672 (guest/guest) %ESC%[96m│%ESC%
246
- echo %ESC%[96m│%ESC%[0m • Temporal: http://localhost:8233 %ESC%[96m│%ESC%
247
- echo %ESC%[96m└─────────────────────────────────────────────────────────────────┘%ESC%
248
- echo.
249
- echo %ESC%[93m📚 DOCUMENTATION:%ESC%
250
- echo • https://github.com/DeamonDev888/overmind-mcp
251
- echo • https://www.npmjs.com/package/overmind-mcp
252
- echo.
253
- echo %ESC%[93m🎉 PROCHAINE ÉTAPE:%ESC%
254
- echo • Lancez: overmind-setup --full
255
- echo • Ou créez votre premier agent: overmind create-agent
256
- echo.
257
- pause
1
+ @echo off
2
+ REM ═══════════════════════════════════════════════════════════════════════════════
3
+ REM OVERMIND-MCP - INSTALLATION COMPLÈTE WINDOWS (Docker Desktop)
4
+ REM ═══════════════════════════════════════════════════════════════════════════════
5
+ REM Ce script installe et configure TOUT automatiquement :
6
+ REM - npm install -g overmind-mcp
7
+ REM - Docker Desktop (vérification)
8
+ REM - PostgreSQL + pgvector (si absent)
9
+ REM - Infrastructure complète (RabbitMQ, Temporal, Prometheus, Grafana, Jaeger)
10
+ REM - Validation de tous les services
11
+ REM ═══════════════════════════════════════════════════════════════════════════════
12
+
13
+ setlocal enabledelayedexpansion
14
+
15
+ REM Couleurs ANSI pour Windows 10+
16
+ for /F %%a in ('echo prompt $E ^| cmd') do set "ESC=%%a"
17
+ set "%ESC%=[0m"
18
+
19
+ echo.
20
+ echo %ESC%[96m╔════════════════════════════════════════════════════════════════════════════╗%ESC%
21
+ echo %ESC%[96m║%ESC%[0m %ESC%[93m %ESC%[0m %ESC%[96m║%ESC%[0m
22
+ echo %ESC%[96m║%ESC%[0m %ESC%[95m 🚀 OVERMIND-MCP - INSTALLATION COMPLÈTE %ESC%[0m %ESC%[96m║%ESC%[0m
23
+ echo %ESC%[96m║%ESC%[0m %ESC%[93m Windows + Docker Desktop %ESC%[0m %ESC%[96m║%ESC%[0m
24
+ echo %ESC%[96m║%ESC%[0m %ESC%[93m %ESC%[0m %ESC%[96m║%ESC%[0m
25
+ echo %ESC%[96m╚════════════════════════════════════════════════════════════════════════════╝%ESC%
26
+ echo.
27
+
28
+ REM ═══════════════════════════════════════════════════════════════════════════════
29
+ REM STEP 1: Vérifier Node.js et NPM
30
+ REM ═══════════════════════════════════════════════════════════════════════════════
31
+ echo %ESC%[36m═════════════════════════════════════════════════════════════════════════════%ESC%
32
+ echo %ESC%[36m║ ÉTAPE 1/7: VÉRIFICATION NODE.JS ET NPM ║%ESC%
33
+ echo %ESC%[36m╚════════════════════════════════════════════════════════════════════════════╝%ESC%
34
+ echo.
35
+
36
+ where node >nul 2>&1
37
+ if errorlevel 1 (
38
+ echo %ESC%[91m❌ Node.js non trouvé. Installation requise...%ESC%
39
+ echo %ESC%[93m📥 Téléchargement: https://nodejs.org/%ESC%
40
+ pause
41
+ exit /b 1
42
+ )
43
+
44
+ echo %ESC%[92m✅ Node.js détecté:%ESC%
45
+ node --version
46
+ echo %ESC%[92m✅ NPM détecté:%ESC%
47
+ npm --version
48
+ echo.
49
+
50
+ REM ═══════════════════════════════════════════════════════════════════════════════
51
+ REM STEP 2: Installer OverMind-MCP globalement
52
+ REM ═══════════════════════════════════════════════════════════════════════════════
53
+ echo %ESC%[36m═════════════════════════════════════════════════════════════════════════════%ESC%
54
+ echo %ESC%[36m║ ÉTAPE 2/7: INSTALLATION OVERMIND-MCP ║%ESC%
55
+ echo %ESC%[36m╚════════════════════════════════════════════════════════════════════════════╝%ESC%
56
+ echo.
57
+
58
+ echo %ESC%[93m📦 Installation d'overmind-mcp (dernière version)...%ESC%
59
+ call npm install -g overmind-mcp@latest
60
+ if errorlevel 1 (
61
+ echo %ESC%[91m❌ Erreur installation overmind-mcp%ESC%
62
+ pause
63
+ exit /b 1
64
+ )
65
+
66
+ echo %ESC%[92m✅ overmind-mcp installé:%ESC%
67
+ npm view overmind-mcp version
68
+ echo.
69
+
70
+ REM ═══════════════════════════════════════════════════════════════════════════════
71
+ REM STEP 3: Vérifier Docker Desktop
72
+ REM ═══════════════════════════════════════════════════════════════════════════════
73
+ echo %ESC%[36m═════════════════════════════════════════════════════════════════════════════%ESC%
74
+ echo %ESC%[36m║ ÉTAPE 3/7: VÉRIFICATION DOCKER DESKTOP ║%ESC%
75
+ echo %ESC%[36m╚════════════════════════════════════════════════════════════════════════════╝%ESC%
76
+ echo.
77
+
78
+ docker --version >nul 2>&1
79
+ if errorlevel 1 (
80
+ echo %ESC%[91m❌ Docker non trouvé. Docker Desktop requis.%ESC%
81
+ echo %ESC%[93m📥 Téléchargement: https://www.docker.com/products/docker-desktop/%ESC%
82
+ pause
83
+ exit /b 1
84
+ )
85
+
86
+ echo %ESC%[92m✅ Docker détecté:%ESC%
87
+ docker --version
88
+ echo.
89
+
90
+ REM ═══════════════════════════════════════════════════════════════════════════════
91
+ REM STEP 4: Installer PostgreSQL + pgvector
92
+ REM ═══════════════════════════════════════════════════════════════════════════════
93
+ echo %ESC%[36m═════════════════════════════════════════════════════════════════════════════%ESC%
94
+ echo %ESC%[36m║ ÉTAPE 4/7: INSTALLATION POSTGRESQL + PGVECTOR ║%ESC%
95
+ echo %ESC%[36m╚════════════════════════════════════════════════════════════════════════════╝%ESC%
96
+ echo.
97
+
98
+ call npm exec -y overmind-mcp -- install-dependencies
99
+ echo.
100
+
101
+ REM ═══════════════════════════════════════════════════════════════════════════════
102
+ REM STEP 5: Créer configuration OverMind
103
+ REM ═══════════════════════════════════════════════════════════════════════════════
104
+ echo %ESC%[36m═════════════════════════════════════════════════════════════════════════════%ESC%
105
+ echo %ESC%[36m║ ÉTAPE 5/7: CONFIGURATION OVERMIND ║%ESC%
106
+ echo %ESC%[36m╚════════════════════════════════════════════════════════════════════════════╝%ESC%
107
+ echo.
108
+
109
+ if not exist "%USERPROFILE%\.overmind" mkdir "%USERPROFILE%\.overmind"
110
+
111
+ REM Créer .env de base
112
+ if not exist "%USERPROFILE%\.overmind\.env" (
113
+ echo %ESC%[93m📝 Création configuration .env...%ESC%
114
+ (
115
+ echo # OverMind-MCP Environment Configuration
116
+ echo # Généré par install-overmind-windows.bat
117
+ echo.
118
+ echo # PostgreSQL
119
+ echo POSTGRES_HOST=localhost
120
+ echo POSTGRES_PORT=5432
121
+ echo POSTGRES_USER=postgres
122
+ echo POSTGRES_PASSWORD=overmind_temp_password_change_me
123
+ echo POSTGRES_DB=overmind
124
+ echo.
125
+ echo # OpenTelemetry (optionnel)
126
+ echo OTEL_ENABLED=false
127
+ echo.
128
+ echo # Workspace
129
+ echo OVERMIND_WORKSPACE=%USERPROFILE%\.overmind
130
+ ) > "%USERPROFILE%\.overmind\.env"
131
+ echo %ESC%[92m✅ Configuration créée:%ESC% %USERPROFILE%\.overmind\.env
132
+ )
133
+
134
+ echo.
135
+
136
+ REM ═══════════════════════════════════════════════════════════════════════════════
137
+ REM STEP 6: Lancer infrastructure Docker complète
138
+ REM ═══════════════════════════════════════════════════════════════════════════════
139
+ echo %ESC%[36m═════════════════════════════════════════════════════════════════════════════%ESC%
140
+ echo %ESC%[36m║ ÉTAPE 6/7: DÉMARRAGE INFRASTRUCTURE DOCKER ║%ESC%
141
+ echo %ESC%[36m╚════════════════════════════════════════════════════════════════════════════╝%ESC%
142
+ echo.
143
+
144
+ REM Télécharger docker-compose depuis GitHub
145
+ echo %ESC%[93m📥 Téléchargement docker-compose.yml...%ESC%
146
+ curl -sL https://raw.githubusercontent.com/DeamonDev888/overmind-mcp/main/docker-compose.yml -o "%USERPROFILE%\.overmind\docker-compose.yml"
147
+ curl -sL https://raw.githubusercontent.com/DeamonDev888/overmind-mcp/main/docker-compose.exporters.yml -o "%USERPROFILE%\.overmind\docker-compose.exporters.yml"
148
+
149
+ echo %ESC%[93m🚀 Démarrage de l'infrastructure Docker...%ESC%
150
+ cd "%USERPROFILE%\.overmind"
151
+ docker-compose -f docker-compose.yml up -d
152
+
153
+ echo.
154
+ timeout /t 10 /nobreak >nul
155
+
156
+ REM ═══════════════════════════════════════════════════════════════════════════════
157
+ REM STEP 7: Validation de tous les services
158
+ REM ═══════════════════════════════════════════════════════════════════════════════
159
+ echo %ESC%[36m═════════════════════════════════════════════════════════════════════════════%ESC%
160
+ echo %ESC%[36m║ ÉTAPE 7/7: VALIDATION DES SERVICES ║%ESC%
161
+ echo %ESC%[36m╚════════════════════════════════════════════════════════════════════════════╝%ESC%
162
+ echo.
163
+
164
+ echo %ESC%[93m🔍 Vérification des containers Docker...%ESC%
165
+ echo.
166
+ docker ps --format "table {{.Names}}\t{{.Status}}\t{{.Ports}}"
167
+ echo.
168
+
169
+ echo %ESC%[93m🧪 Tests de connexion...%ESC%
170
+ echo.
171
+
172
+ REM Test PostgreSQL
173
+ echo %ESC%[93m • PostgreSQL:%ESC%
174
+ docker exec overmind-postgres-pgvector pg_isready -U postgres >nul 2>&1
175
+ if errorlevel 1 (
176
+ echo %ESC%[91m ❌ PostgreSQL non prêt%ESC%
177
+ ) else (
178
+ echo %ESC%[92m ✅ PostgreSQL actif%ESC%
179
+ )
180
+
181
+ REM Test RabbitMQ
182
+ echo %ESC%[93m • RabbitMQ:%ESC%
183
+ docker ps --filter "name=rabbitmq" --format "{{.Names}}" | findstr rabbitmq >nul
184
+ if errorlevel 1 (
185
+ echo %ESC%[91m ❌ RabbitMQ non trouvé%ESC%
186
+ ) else (
187
+ echo %ESC%[92m ✅ RabbitMQ actif%ESC%
188
+ )
189
+
190
+ REM Test Temporal
191
+ echo %ESC%[93m • Temporal:%ESC%
192
+ docker ps --filter "name=temporal" --format "{{.Names}}" | findstr temporal >nul
193
+ if errorlevel 1 (
194
+ echo %ESC%[91m ❌ Temporal non trouvé%ESC%
195
+ ) else (
196
+ echo %ESC%[92m ✅ Temporal actif%ESC%
197
+ )
198
+
199
+ REM Test Prometheus
200
+ echo %ESC%[93m • Prometheus:%ESC%
201
+ docker ps --filter "name=prometheus" --format "{{.Names}}" | findstr prometheus >nul
202
+ if errorlevel 1 (
203
+ echo %ESC%[91m ❌ Prometheus non trouvé%ESC%
204
+ ) else (
205
+ echo %ESC%[92m ✅ Prometheus actif%ESC%
206
+ )
207
+
208
+ REM Test Grafana
209
+ echo %ESC%[93m • Grafana:%ESC%
210
+ docker ps --filter "name=grafana" --format "{{.Names}}" | findstr grafana >nul
211
+ if errorlevel 1 (
212
+ echo %ESC%[91m ❌ Grafana non trouvé%ESC%
213
+ ) else (
214
+ echo %ESC%[92m ✅ Grafana actif%ESC%
215
+ )
216
+
217
+ REM Test Jaeger
218
+ echo %ESC%[93m • Jaeger:%ESC%
219
+ docker ps --filter "name=jaeger" --format "{{.Names}}" | findstr jaeger >nul
220
+ if errorlevel 1 (
221
+ echo %ESC%[91m ❌ Jaeger non trouvé%ESC%
222
+ ) else (
223
+ echo %ESC%[92m ✅ Jaeger actif%ESC%
224
+ )
225
+
226
+ echo.
227
+
228
+ REM ═══════════════════════════════════════════════════════════════════════════════
229
+ REM RÉSUMÉ FINAL
230
+ REM ═══════════════════════════════════════════════════════════════════════════════
231
+ echo %ESC%[92m╔════════════════════════════════════════════════════════════════════════════╗%ESC%
232
+ echo %ESC%[92m║%ESC%[0m %ESC%[97m ✅ INSTALLATION TERMINÉE AVEC SUCCÈS ! %ESC%[0m %ESC%[92m║%ESC%
233
+ echo %ESC%[92m╚════════════════════════════════════════════════════════════════════════════╝%ESC%
234
+ echo.
235
+ echo %ESC%[93m📋 SERVICES DISPONIBLES:%ESC%
236
+ echo.
237
+ echo %ESC%[96m┌─────────────────────────────────────────────────────────────────┐%ESC%
238
+ echo %ESC%[96m│%ESC%[0m %ESC%[95mDocker Desktop:%ESC%[0m %ESC%[96m│%ESC%
239
+ echo %ESC%[96m│%ESC%[0m Ouvrez Docker Desktop pour voir tous les containers %ESC%[96m│%ESC%
240
+ echo %ESC%[96m│%ESC%[0m %ESC%[96m│%ESC%
241
+ echo %ESC%[96m│%ESC%[0m %ESC%[95mURLs utiles:%ESC%[0m %ESC%[96m│%ESC%
242
+ echo %ESC%[96m│%ESC%[0m • Prometheus: http://localhost:9090 %ESC%[96m│%ESC%
243
+ echo %ESC%[96m│%ESC%[0m • Grafana: http://localhost:3000 (admin/admin) %ESC%[96m│%ESC%
244
+ echo %ESC%[96m│%ESC%[0m • Jaeger: http://localhost:16686 %ESC%[96m│%ESC%
245
+ echo %ESC%[96m│%ESC%[0m • RabbitMQ: http://localhost:15672 (guest/guest) %ESC%[96m│%ESC%
246
+ echo %ESC%[96m│%ESC%[0m • Temporal: http://localhost:8233 %ESC%[96m│%ESC%
247
+ echo %ESC%[96m└─────────────────────────────────────────────────────────────────┘%ESC%
248
+ echo.
249
+ echo %ESC%[93m📚 DOCUMENTATION:%ESC%
250
+ echo • https://github.com/DeamonDev888/overmind-mcp
251
+ echo • https://www.npmjs.com/package/overmind-mcp
252
+ echo.
253
+ echo %ESC%[93m🎉 PROCHAINE ÉTAPE:%ESC%
254
+ echo • Lancez: overmind-setup --full
255
+ echo • Ou créez votre premier agent: overmind create-agent
256
+ echo.
257
+ pause