overmind-mcp 2.1.0 → 2.1.1

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/dist/bin/cli.js CHANGED
File without changes
@@ -211,6 +211,80 @@ if [ "$USE_EXTERNAL_POSTGRES" -eq 1 ]; then
211
211
  fi
212
212
 
213
213
  echo -e "${GREEN}[OK] Fichers téléchargés${NC}"
214
+
215
+ echo -e "${YELLOW}[INFO] Création fichiers de configuration...${NC}"
216
+ mkdir -p "$OVERMIND_DIR/config/grafana/provisioning/datasources"
217
+
218
+ echo -e "${YELLOW}[INFO] Création config OTEL collector...${NC}"
219
+ cat > "$OVERMIND_DIR/config/otel-collector.yml" << 'EOF'
220
+ receivers:
221
+ otlp:
222
+ protocols:
223
+ grpc:
224
+ endpoint: 0.0.0.0:4317
225
+ http:
226
+ endpoint: 0.0.0.0:4318
227
+
228
+ processors:
229
+ batch:
230
+
231
+ exporters:
232
+ otlp/jaeger:
233
+ endpoint: jaeger:4317
234
+ tls:
235
+ insecure: true
236
+
237
+ prometheusremotewrite:
238
+ endpoint: http://prometheus:9090/api/v1/write
239
+
240
+ service:
241
+ pipelines:
242
+ traces:
243
+ receivers: [otlp]
244
+ processors: [batch]
245
+ exporters: [otlp/jaeger]
246
+
247
+ metrics:
248
+ receivers: [otlp]
249
+ processors: [batch]
250
+ exporters: [prometheusremotewrite]
251
+ EOF
252
+
253
+ echo -e "${YELLOW}[INFO] Création config Prometheus...${NC}"
254
+ cat > "$OVERMIND_DIR/config/prometheus.yml" << 'EOF'
255
+ global:
256
+ scrape_interval: 15s
257
+ evaluation_interval: 15s
258
+
259
+ scrape_configs:
260
+ - job_name: 'prometheus'
261
+ static_configs:
262
+ - targets: ['localhost:9090']
263
+
264
+ - job_name: 'otel-collector'
265
+ static_configs:
266
+ - targets: ['otel-collector:9464']
267
+ EOF
268
+
269
+ echo -e "${YELLOW}[INFO] Création config Grafana datasource...${NC}"
270
+ cat > "$OVERMIND_DIR/config/grafana/provisioning/datasources/prometheus.yml" << 'EOF'
271
+ apiVersion: 1
272
+
273
+ datasources:
274
+ - name: Prometheus
275
+ type: prometheus
276
+ access: proxy
277
+ url: http://prometheus:9090
278
+ isDefault: true
279
+ EOF
280
+
281
+ echo -e "${GREEN}[OK] Fichiers de configuration créés${NC}"
282
+
283
+ echo -e "${YELLOW}[INFO] Création init-db.sql...${NC}"
284
+ curl -sL https://raw.githubusercontent.com/DeamonDev888/overmind-mcp/main/init-db.sql -o "$OVERMIND_DIR/init-db.sql"
285
+ echo -e "${GREEN}[OK] init-db.sql téléchargé${NC}"
286
+
287
+
214
288
  echo ""
215
289
 
216
290
  # ============================================================
@@ -284,12 +358,7 @@ fi
284
358
 
285
359
  # Test Temporal
286
360
  echo -e " • Temporal:"
287
- docker ps --filter "name=overmind-temporal" --format "{{.Names}}" | grep -q temporal
288
- if [ $? -eq 0 ]; then
289
- echo -e "${GREEN} [OK] Temporal actif${NC}"
290
- else
291
- echo -e "${RED} [FAIL] Temporal non trouvé${NC}"
292
- fi
361
+ echo -e "${YELLOW} [INFO] Désactivé (requiert init DB)${NC}"
293
362
 
294
363
  # Test Prometheus
295
364
  echo -e " • Prometheus:"
@@ -204,7 +204,78 @@ echo [INFO] Telechargement docker-compose.yml...
204
204
  curl -sL https://raw.githubusercontent.com/DeamonDev888/overmind-mcp/main/docker-compose.yml -o "%USERPROFILE%\.overmind\docker-compose.yml"
205
205
  curl -sL https://raw.githubusercontent.com/DeamonDev888/overmind-mcp/main/docker-compose.exporters.yml -o "%USERPROFILE%\.overmind\docker-compose.exporters.yml"
206
206
 
207
- echo %ESC%[92m[OK] Fichers telecharges%ESC%
207
+ echo [INFO] Creation configuration fichiers...
208
+ if not exist "%USERPROFILE%\.overmind\config" mkdir "%USERPROFILE%\.overmind\config"
209
+ if not exist "%USERPROFILE%\.overmind\config\grafana\provisioning\datasources" mkdir "%USERPROFILE%\.overmind\config\grafana\provisioning\datasources"
210
+
211
+ echo [INFO] Creation OTEL collector config...
212
+ (
213
+ echo receivers:
214
+ echo otlp:
215
+ echo protocols:
216
+ echo grpc:
217
+ echo endpoint: 0.0.0.0:4317
218
+ echo http:
219
+ echo endpoint: 0.0.0.0:4318
220
+ echo.
221
+ echo processors:
222
+ echo batch:
223
+ echo.
224
+ echo exporters:
225
+ echo otlp/jaeger:
226
+ echo endpoint: jaeger:4317
227
+ echo tls:
228
+ echo insecure: true
229
+ echo.
230
+ echo prometheusremotewrite:
231
+ echo endpoint: http://prometheus:9090/api/v1/write
232
+ echo.
233
+ echo service:
234
+ echo pipelines:
235
+ echo traces:
236
+ echo receivers: [otlp]
237
+ echo processors: [batch]
238
+ echo exporters: [otlp/jaeger]
239
+ echo.
240
+ echo metrics:
241
+ echo receivers: [otlp]
242
+ echo processors: [batch]
243
+ echo exporters: [prometheusremotewrite]
244
+ ) > "%USERPROFILE%\.overmind\config\otel-collector.yml"
245
+
246
+ echo [INFO] Creation Prometheus config...
247
+ (
248
+ echo global:
249
+ echo scrape_interval: 15s
250
+ echo evaluation_interval: 15s
251
+ echo.
252
+ echo scrape_configs:
253
+ echo - job_name: 'prometheus'
254
+ echo static_configs:
255
+ echo - targets: ['localhost:9090']
256
+ echo.
257
+ echo - job_name: 'otel-collector'
258
+ echo static_configs:
259
+ echo - targets: ['otel-collector:9464']
260
+ ) > "%USERPROFILE%\.overmind\config\prometheus.yml"
261
+
262
+ echo [INFO] Creation Grafana datasource config...
263
+ (
264
+ echo apiVersion: 1
265
+ echo.
266
+ echo datasources:
267
+ echo - name: Prometheus
268
+ echo type: prometheus
269
+ echo access: proxy
270
+ echo url: http://prometheus:9090
271
+ echo isDefault: true
272
+ ) > "%USERPROFILE%\.overmind\config\grafana\provisioning\datasources\prometheus.yml"
273
+
274
+ echo %ESC%[92m[OK] Configuration fichiers crees%ESC%
275
+
276
+ echo [INFO] Creation init-db.sql...
277
+ curl -sL https://raw.githubusercontent.com/DeamonDev888/overmind-mcp/main/init-db.sql -o "%USERPROFILE%.overmindinit-db.sql"
278
+
208
279
  echo.
209
280
 
210
281
  REM ============================================================
@@ -283,13 +354,8 @@ if errorlevel 1 (
283
354
  echo %ESC%[92m [OK] RabbitMQ actif%ESC%
284
355
  )
285
356
 
286
- echo - Temporal:
287
- docker ps --filter "name=overmind-temporal" --format "{{.Names}}" | findstr temporal >nul
288
- if errorlevel 1 (
289
- echo %ESC%[91m [FAIL] Temporal non trouve%ESC%
290
- ) else (
291
- echo %ESC%[92m [OK] Temporal actif%ESC%
292
- )
357
+ REM Temporal desactive - skip validation
358
+ echo - Temporal: %ESC%[93m [INFO] Desactive (requiert init DB)%ESC%
293
359
 
294
360
  echo - Prometheus:
295
361
  docker ps --filter "name=overmind-prometheus" --format "{{.Names}}" | findstr prometheus >nul
package/package.json CHANGED
@@ -1,131 +1,129 @@
1
- {
2
- "name": "overmind-mcp",
3
- "version": "2.1.0",
4
- "preferGlobal": true,
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
- "type": "module",
7
- "main": "dist/index.js",
8
- "types": "dist/index.d.ts",
9
- "bin": {
10
- "overmind": "./dist/bin/cli.js",
11
- "overmind-setup": "./scripts/setup.mjs",
12
- "overmind-infra": "./scripts/docker-manager.mjs",
13
- "overmind-uninstall": "./scripts/uninstall.mjs"
14
- },
15
- "exports": {
16
- ".": {
17
- "import": "./dist/index.js",
18
- "types": "./dist/index.d.ts"
19
- },
20
- "./package.json": "./package.json"
21
- },
22
- "files": [
23
- "dist",
24
- "assets",
25
- "README.md",
26
- "docs",
27
- "scripts",
28
- "install-overmind-windows.bat",
29
- "install-overmind-unix.sh"
30
- ],
31
- "scripts": {
32
- "build": "tsc",
33
- "rebuild": "rimraf dist && tsc",
34
- "clean": "rimraf dist",
35
- "start": "node --no-warnings --env-file=.env dist/bin/cli.js",
36
- "worker:rabbitmq": "node --no-warnings --env-file=.env dist/bin/rabbitmq-worker.js",
37
- "worker:temporal": "node --no-warnings --env-file=.env dist/bin/temporal-worker.js",
38
- "dev": "node --no-warnings --watch --env-file=.env dist/bin/cli.js",
39
- "build:fix": "pnpm run clean && pnpm install && pnpm run build",
40
- "lint": "eslint .",
41
- "lint:fix": "eslint . --fix",
42
- "format": "prettier --write .",
43
- "check-types": "tsc --noEmit",
44
- "test": "vitest run",
45
- "changeset": "changeset",
46
- "version": "changeset version",
47
- "release": "pnpm run build && changeset publish",
48
- "prepublishOnly": "pnpm run rebuild",
49
- "postinstall": "node scripts/postinstall.mjs",
50
- "setup": "overmind-setup",
51
- "setup:full": "overmind-setup --full",
52
- "setup:deps": "node scripts/install-dependencies.mjs",
53
- "deploy:infra": "overmind-infra up",
54
- "deploy:down": "overmind-infra down",
55
- "deploy:status": "overmind-infra status",
56
- "deploy:logs": "overmind-infra logs",
57
- "deploy:restart": "overmind-infra restart"
58
- },
59
- "keywords": [
60
- "mcp",
61
- "model-context-protocol",
62
- "claude-code",
63
- "ai-agent",
64
- "llm",
65
- "orchestration",
66
- "automation",
67
- "swarm",
68
- "temporal",
69
- "rabbitmq",
70
- "pgvector",
71
- "observability",
72
- "docker",
73
- "auto-installation"
74
- ],
75
- "author": "DeaMoN888",
76
- "license": "MIT",
77
- "repository": {
78
- "type": "git",
79
- "url": "git+https://github.com/DeamonDev888/overmind-mcp.git"
80
- },
81
- "bugs": {
82
- "url": "https://discord.gg/4AR82phtBz"
83
- },
84
- "homepage": "https://deamondev888.github.io/overmind-mcp/",
85
- "engines": {
86
- "node": ">=20.0.0 <25"
87
- },
88
- "packageManager": "pnpm@10.18.0",
89
- "devDependencies": {
90
- "@changesets/cli": "^2.31.0",
91
- "@eslint/js": "^9.39.4",
92
- "@types/amqplib": "^0.10.8",
93
- "@types/node": "^22.19.17",
94
- "@types/pg": "^8.20.0",
95
- "@types/pino": "^7.0.5",
96
- "eslint": "^9.39.4",
97
- "eslint-config-prettier": "^10.1.8",
98
- "globals": "^17.5.0",
99
- "prettier": "^3.8.3",
100
- "rimraf": "^6.1.3",
101
- "typescript": "^5.9.3",
102
- "typescript-eslint": "^8.58.2",
103
- "vitest": "^4.1.4"
104
- },
105
- "dependencies": {
106
- "@opentelemetry/api": "^1.9.1",
107
- "@opentelemetry/auto-instrumentations-node": "^0.75.0",
108
- "@opentelemetry/exporter-trace-otlp-http": "^0.217.0",
109
- "@opentelemetry/resources": "^2.7.1",
110
- "@opentelemetry/sdk-node": "^0.217.0",
111
- "@opentelemetry/semantic-conventions": "^1.40.0",
112
- "@temporalio/activity": "^1.17.1",
113
- "@temporalio/client": "^1.17.1",
114
- "@temporalio/worker": "^1.17.1",
115
- "@temporalio/workflow": "^1.17.1",
116
- "async-mutex": "^0.5.0",
117
- "dotenv": "^17.4.2",
118
- "fastmcp": "^3.35.0",
119
- "overmind-postgres-mcp": "^1.1.6",
120
- "pg": "^8.20.0",
121
- "pino": "^9.14.0",
122
- "pino-pretty": "^13.1.3",
123
- "pino-roll": "^2.2.0",
124
- "tinyglobby": "^0.2.16",
125
- "zod": "^4.3.6",
126
- "tslib": "^2.8.1"
127
- },
128
- "peerDependencies": {
129
- "tslib": "^2.0.0"
130
- }
131
- }
1
+ {
2
+ "name": "overmind-mcp",
3
+ "version": "2.1.1",
4
+ "preferGlobal": true,
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
+ "type": "module",
7
+ "main": "dist/index.js",
8
+ "types": "dist/index.d.ts",
9
+ "bin": {
10
+ "overmind": "./dist/bin/cli.js",
11
+ "overmind-setup": "./scripts/setup.mjs",
12
+ "overmind-infra": "./scripts/docker-manager.mjs",
13
+ "overmind-uninstall": "./scripts/uninstall.mjs"
14
+ },
15
+ "exports": {
16
+ ".": {
17
+ "import": "./dist/index.js",
18
+ "types": "./dist/index.d.ts"
19
+ },
20
+ "./package.json": "./package.json"
21
+ },
22
+ "files": [
23
+ "dist",
24
+ "assets",
25
+ "README.md",
26
+ "docs",
27
+ "scripts",
28
+ "install-overmind-windows.bat",
29
+ "install-overmind-unix.sh"
30
+ ],
31
+ "keywords": [
32
+ "mcp",
33
+ "model-context-protocol",
34
+ "claude-code",
35
+ "ai-agent",
36
+ "llm",
37
+ "orchestration",
38
+ "automation",
39
+ "swarm",
40
+ "temporal",
41
+ "rabbitmq",
42
+ "pgvector",
43
+ "observability",
44
+ "docker",
45
+ "auto-installation"
46
+ ],
47
+ "author": "DeaMoN888",
48
+ "license": "MIT",
49
+ "repository": {
50
+ "type": "git",
51
+ "url": "git+https://github.com/DeamonDev888/overmind-mcp.git"
52
+ },
53
+ "bugs": {
54
+ "url": "https://discord.gg/4AR82phtBz"
55
+ },
56
+ "homepage": "https://deamondev888.github.io/overmind-mcp/",
57
+ "engines": {
58
+ "node": ">=20.0.0 <25"
59
+ },
60
+ "devDependencies": {
61
+ "@changesets/cli": "^2.31.0",
62
+ "@eslint/js": "^9.39.4",
63
+ "@types/amqplib": "^0.10.8",
64
+ "@types/node": "^22.19.17",
65
+ "@types/pg": "^8.20.0",
66
+ "@types/pino": "^7.0.5",
67
+ "eslint": "^9.39.4",
68
+ "eslint-config-prettier": "^10.1.8",
69
+ "globals": "^17.5.0",
70
+ "prettier": "^3.8.3",
71
+ "rimraf": "^6.1.3",
72
+ "typescript": "^5.9.3",
73
+ "typescript-eslint": "^8.58.2",
74
+ "vitest": "^4.1.4"
75
+ },
76
+ "dependencies": {
77
+ "@opentelemetry/api": "^1.9.1",
78
+ "@opentelemetry/auto-instrumentations-node": "^0.75.0",
79
+ "@opentelemetry/exporter-trace-otlp-http": "^0.217.0",
80
+ "@opentelemetry/resources": "^2.7.1",
81
+ "@opentelemetry/sdk-node": "^0.217.0",
82
+ "@opentelemetry/semantic-conventions": "^1.40.0",
83
+ "@temporalio/activity": "^1.17.1",
84
+ "@temporalio/client": "^1.17.1",
85
+ "@temporalio/worker": "^1.17.1",
86
+ "@temporalio/workflow": "^1.17.1",
87
+ "async-mutex": "^0.5.0",
88
+ "dotenv": "^17.4.2",
89
+ "fastmcp": "^3.35.0",
90
+ "overmind-postgres-mcp": "^1.1.6",
91
+ "pg": "^8.20.0",
92
+ "pino": "^9.14.0",
93
+ "pino-pretty": "^13.1.3",
94
+ "pino-roll": "^2.2.0",
95
+ "tinyglobby": "^0.2.16",
96
+ "zod": "^4.3.6",
97
+ "tslib": "^2.8.1"
98
+ },
99
+ "peerDependencies": {
100
+ "tslib": "^2.0.0"
101
+ },
102
+ "scripts": {
103
+ "build": "tsc",
104
+ "rebuild": "rimraf dist && tsc",
105
+ "clean": "rimraf dist",
106
+ "start": "node --no-warnings --env-file=.env dist/bin/cli.js",
107
+ "worker:rabbitmq": "node --no-warnings --env-file=.env dist/bin/rabbitmq-worker.js",
108
+ "worker:temporal": "node --no-warnings --env-file=.env dist/bin/temporal-worker.js",
109
+ "dev": "node --no-warnings --watch --env-file=.env dist/bin/cli.js",
110
+ "build:fix": "pnpm run clean && pnpm install && pnpm run build",
111
+ "lint": "eslint .",
112
+ "lint:fix": "eslint . --fix",
113
+ "format": "prettier --write .",
114
+ "check-types": "tsc --noEmit",
115
+ "test": "vitest run",
116
+ "changeset": "changeset",
117
+ "version": "changeset version",
118
+ "release": "pnpm run build && changeset publish",
119
+ "postinstall": "node scripts/postinstall.mjs",
120
+ "setup": "overmind-setup",
121
+ "setup:full": "overmind-setup --full",
122
+ "setup:deps": "node scripts/install-dependencies.mjs",
123
+ "deploy:infra": "overmind-infra up",
124
+ "deploy:down": "overmind-infra down",
125
+ "deploy:status": "overmind-infra status",
126
+ "deploy:logs": "overmind-infra logs",
127
+ "deploy:restart": "overmind-infra restart"
128
+ }
129
+ }
File without changes
package/scripts/setup.mjs CHANGED
File without changes
File without changes