overmind-mcp 2.0.4 → 2.0.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "overmind-mcp",
3
- "version": "2.0.4",
3
+ "version": "2.0.5",
4
4
  "preferGlobal": true,
5
5
  "description": "Orchestrateur universel agents IA multi-modeles via MCP. Inclut le protocole 'Custom-Nickname' pour identifier vos agents avec des surnoms originaux (The Chaos Prophet, Shadow Sniper, etc.), l'isolation mémoire (Private Memory Context) et le support pour QwenCli et Nous Hermes. Installation automatique des dépendances Docker (PostgreSQL, pgvector) inclus.",
6
6
  "type": "module",
@@ -199,30 +199,23 @@ async function setupInfrastructure() {
199
199
  }
200
200
 
201
201
  async function startInfrastructure() {
202
- logSection('DÉMARRAGE INFRASTRUCTURE COMPLÈTE');
202
+ logSection('DÉMARRAGE INFRASTRUCTURE');
203
203
 
204
204
  const composeFile = join(INSTALL_DIR, 'docker-compose.yml');
205
205
 
206
206
  if (!existsSync(composeFile)) {
207
- log(COLORS.yellow, '⚠️ docker-compose.yml non trouvé. Mode minimal activé.');
207
+ log(COLORS.yellow, '⚠️ docker-compose.yml non trouvé. Téléchargement...');
208
208
  return false;
209
209
  }
210
210
 
211
- try {
212
- log(COLORS.yellow, '🚀 Démarrage des services Docker...');
213
- await runCommandAsync(
214
- `cd "${INSTALL_DIR}" && docker-compose -f docker-compose.yml up -d`,
215
- 'Démarrage infrastructure'
216
- );
211
+ log(COLORS.cyan, '💡 Infrastructure Docker téléchargée.');
212
+ log(COLORS.yellow, '⚠️ Pour démarrer tous les services (RabbitMQ, Temporal, Prometheus, Grafana, Jaeger):');
213
+ log(COLORS.white, ' → overmind-setup --full');
214
+ log(COLORS.white, ' → Ou manuellement: cd ~/.overmind && docker-compose up -d');
215
+ log(COLORS.white, ' ');
216
+ log(COLORS.green, '✅ PostgreSQL + pgvector sont déjà prêts !');
217
217
 
218
- log(COLORS.cyan, '\n⏳ Attente démarrage des services (15s)...');
219
- await new Promise(resolve => setTimeout(resolve, 15000));
220
-
221
- return true;
222
- } catch (error) {
223
- log(COLORS.red, '❌ Erreur démarrage: ' + error.message);
224
- return false;
225
- }
218
+ return true;
226
219
  }
227
220
 
228
221
  async function validateServices() {
@@ -349,18 +342,20 @@ async function main() {
349
342
  // Step 3: Install PostgreSQL if needed
350
343
  await setupPostgreSQL();
351
344
 
352
- // Step 4: Download infrastructure
353
- const downloaded = await setupInfrastructure();
345
+ // Step 4: Download infrastructure files
346
+ await setupInfrastructure();
354
347
 
355
- // Step 5: Start infrastructure
356
- if (downloaded) {
357
- await startInfrastructure();
358
- }
348
+ // Step 5: Show how to start full infrastructure
349
+ await startInfrastructure();
359
350
 
360
- // Step 6: Validate services
361
- if (downloaded) {
362
- await validateServices();
363
- }
351
+ // Step 6: Show PostgreSQL is ready
352
+ logSection('POSTGRESQL PRÊT');
353
+ log(COLORS.green, '✅ PostgreSQL + pgvector sont installés et prêts !');
354
+ log(COLORS.cyan, '');
355
+ log(COLORS.yellow, '🚀 Pour activer toutes les features (Swarm, Workflows, Observabilité):');
356
+ log(COLORS.white, ' Option 1: overmind-setup --full');
357
+ log(COLORS.white, ' Option 2: cd ~/.overmind && docker-compose up -d');
358
+ log(COLORS.white, '');
364
359
 
365
360
  // Show summary
366
361
  showSummary();