overmind-mcp 2.2.2 → 2.2.4

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.2.2",
3
+ "version": "2.2.4",
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",
@@ -96,18 +96,40 @@ async function checkDocker() {
96
96
 
97
97
  const platform = process.platform;
98
98
  if (platform === 'win32') {
99
- console.log(' Windows: https://www.docker.com/products/docker-desktop/');
99
+ console.log(' Windows: Docker Desktop, Rancher Desktop, ou Podman');
100
+ console.log(' https://www.docker.com/products/docker-desktop/');
100
101
  } else if (platform === 'darwin') {
101
- console.log(' macOS: https://www.docker.com/products/docker-desktop/');
102
+ console.log(' macOS: Docker Desktop, Colima, OrbStack, ou Podman');
103
+ console.log(' https://www.docker.com/products/docker-desktop/');
102
104
  } else {
103
- console.log(' Linux: https://docs.docker.com/engine/install/');
105
+ console.log(' Linux: Docker Engine, Podman, ou rootless Docker');
106
+ console.log(' https://docs.docker.com/engine/install/');
107
+ console.log(' Podman: https://podman.io/getting-started/installation');
104
108
  }
105
109
 
106
110
  log(COLORS.cyan, '\nAprès installation de Docker, relancez: npm install -g overmind-mcp');
107
111
  return false;
108
112
  }
109
113
 
114
+ // Détecter le type d'implémentation Docker
115
+ let implType = 'Docker';
116
+ try {
117
+ const dockerInfo = runCommand('docker info --format "{{.ServerVersion}}"');
118
+ if (dockerInfo) {
119
+ // Essayer de détecter Podman
120
+ const podmanCheck = runCommand('docker info --format "{{.OperatingSystem}}"');
121
+ if (podmanCheck && podmanCheck.toLowerCase().includes('podman')) {
122
+ implType = 'Podman';
123
+ }
124
+ }
125
+ } catch (e) {
126
+ // Ignorer les erreurs de détection
127
+ }
128
+
110
129
  log(COLORS.green, '✅ Docker détecté: ' + version.trim());
130
+ if (implType !== 'Docker') {
131
+ log(COLORS.cyan, ' Implémentation: ' + implType);
132
+ }
111
133
  return true;
112
134
  }
113
135
 
@@ -406,7 +428,7 @@ function showSummary() {
406
428
  log(COLORS.yellow, "📋 COMPOSANTS INSTALLÉS:");
407
429
  console.log('');
408
430
  console.log('┌─────────────────────────────────────────────────────────────────┐');
409
- console.log('│ ' + COLORS.cyan + 'Ouvrez Docker Desktop onglet "Containers"' + COLORS.reset + ' │');
431
+ console.log('│ ' + COLORS.cyan + 'Ouvrez votre interface Docker (Containers)' + COLORS.reset + ' │');
410
432
  console.log('│ ' + COLORS.cyan + 'Vous verrez le service OverMind actif:' + COLORS.reset + ' │');
411
433
  console.log('│ ' + COLORS.green + ' • PostgreSQL + pgvector (Mémoire Vectorielle)' + COLORS.reset + ' │');
412
434
  console.log('│ │');