overmind-mcp 2.2.4 → 2.3.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/.mcp.json.example +21 -0
- package/README.md +59 -6
- package/bin/.gitkeep +0 -0
- package/bin/README.md +34 -0
- package/dist/lib/InstallHelper.js +1 -1
- package/dist/lib/processRegistry.d.ts +71 -0
- package/dist/lib/processRegistry.d.ts.map +1 -0
- package/dist/lib/processRegistry.js +275 -0
- package/dist/lib/processRegistry.js.map +1 -0
- package/dist/server.d.ts +14 -1
- package/dist/server.d.ts.map +1 -1
- package/dist/server.js +58 -1
- package/dist/server.js.map +1 -1
- package/dist/services/ClaudeRunner.d.ts.map +1 -1
- package/dist/services/ClaudeRunner.js +59 -4
- package/dist/services/ClaudeRunner.js.map +1 -1
- package/dist/services/ClineRunner.d.ts.map +1 -1
- package/dist/services/ClineRunner.js +12 -1
- package/dist/services/ClineRunner.js.map +1 -1
- package/dist/services/GeminiRunner.d.ts.map +1 -1
- package/dist/services/GeminiRunner.js +18 -0
- package/dist/services/GeminiRunner.js.map +1 -1
- package/dist/services/KiloRunner.d.ts.map +1 -1
- package/dist/services/KiloRunner.js +28 -1
- package/dist/services/KiloRunner.js.map +1 -1
- package/dist/services/NousHermesRunner.d.ts.map +1 -1
- package/dist/services/NousHermesRunner.js +18 -5
- package/dist/services/NousHermesRunner.js.map +1 -1
- package/dist/services/OpenClawRunner.d.ts.map +1 -1
- package/dist/services/OpenClawRunner.js +12 -2
- package/dist/services/OpenClawRunner.js.map +1 -1
- package/dist/services/OpenCodeRunner.d.ts.map +1 -1
- package/dist/services/OpenCodeRunner.js +12 -1
- package/dist/services/OpenCodeRunner.js.map +1 -1
- package/dist/services/QwenCliRunner.d.ts.map +1 -1
- package/dist/services/QwenCliRunner.js +12 -1
- package/dist/services/QwenCliRunner.js.map +1 -1
- package/dist/tools/config_example.d.ts.map +1 -1
- package/dist/tools/config_example.js +23 -7
- package/dist/tools/config_example.js.map +1 -1
- package/dist/tools/get_agent_status.d.ts +29 -0
- package/dist/tools/get_agent_status.d.ts.map +1 -0
- package/dist/tools/get_agent_status.js +45 -0
- package/dist/tools/get_agent_status.js.map +1 -0
- package/dist/tools/kill_agent.d.ts +22 -0
- package/dist/tools/kill_agent.d.ts.map +1 -0
- package/dist/tools/kill_agent.js +33 -0
- package/dist/tools/kill_agent.js.map +1 -0
- package/dist/tools/stream_agent_output.d.ts +30 -0
- package/dist/tools/stream_agent_output.d.ts.map +1 -0
- package/dist/tools/stream_agent_output.js +44 -0
- package/dist/tools/stream_agent_output.js.map +1 -0
- package/dist/tools/wait_agent.d.ts +30 -0
- package/dist/tools/wait_agent.d.ts.map +1 -0
- package/dist/tools/wait_agent.js +68 -0
- package/dist/tools/wait_agent.js.map +1 -0
- package/docs/ASYNC_AGENT_INTEGRATION.md +311 -0
- package/docs/INDEX.md +144 -144
- package/docs/docs/OVERMIND_WORKFLOW_GUIDE.md +595 -0
- package/docs/docs/PROJECT_STRUCTURE.md +101 -0
- package/docs/docs/README_POSTGRES_INTEGRATION.md +229 -0
- package/package.json +5 -5
- package/scripts/auto-install.mjs +8 -8
- package/scripts/postgres-manager.mjs +1 -1
- package/scripts/postinstall.mjs +2 -2
- package/scripts/setup.mjs +8 -5
- package/docs/guides/DEPLOYMENT.md +0 -418
- package/docs/guides/SWARM_USAGE.md +0 -444
- /package/{install-overmind-unix.sh → bin/install-overmind-unix.sh} +0 -0
- /package/{install-overmind-windows.bat → bin/install-overmind-windows.bat} +0 -0
- /package/docs/{api/prompt → prompt}/Claude_code.md +0 -0
- /package/docs/{api/prompt → prompt}/Kilo.md +0 -0
- /package/docs/{api/prompt → prompt}/Kilo_Hermes.md +0 -0
- /package/docs/{api/prompt → prompt}/Minimax4.md +0 -0
package/docs/INDEX.md
CHANGED
|
@@ -1,144 +1,144 @@
|
|
|
1
|
-
# Documentation OverMind-MCP
|
|
2
|
-
|
|
3
|
-
Bienvenue dans la documentation centralisée d'OverMind-MCP.
|
|
4
|
-
|
|
5
|
-
> **Note** : Le site web cyberpunk avec animations est disponible dans ce dossier. Ce fichier INDEX.md sert de table des matières pour la documentation technique.
|
|
6
|
-
|
|
7
|
-
## 📑 Structure
|
|
8
|
-
|
|
9
|
-
```
|
|
10
|
-
Workflow/
|
|
11
|
-
├── docker-compose.yml # Stack principale (9 services)
|
|
12
|
-
├── docker-compose.exporters.yml # Exporters métriques
|
|
13
|
-
├── scripts/ # Scripts setup/gestion
|
|
14
|
-
│ ├── setup.mjs
|
|
15
|
-
│ ├── install-dependencies.mjs
|
|
16
|
-
│ └── docker-manager.mjs
|
|
17
|
-
│
|
|
18
|
-
└── docs/ # Documentation
|
|
19
|
-
├── index.html # Site web cyberpunk
|
|
20
|
-
├── INDEX.md # Ce fichier (table des matières)
|
|
21
|
-
├── guides/ # Guides utilisateur
|
|
22
|
-
│ ├── README.md # Guide principal
|
|
23
|
-
│ ├── DEPLOYMENT.md # Guide déploiement
|
|
24
|
-
│ └── SWARM_USAGE.md # Guide Swarm
|
|
25
|
-
├── api/ # Documentation API
|
|
26
|
-
│ ├── prompt/ # Prompts système
|
|
27
|
-
│ └── tools.md # Référence outils
|
|
28
|
-
└── changelog/ # Historique versions
|
|
29
|
-
├── CHANGELOG.md
|
|
30
|
-
└── CHANGELOG.add.md
|
|
31
|
-
```
|
|
32
|
-
|
|
33
|
-
## 🚀 Par où commencer ?
|
|
34
|
-
|
|
35
|
-
1. **Nouveau utilisateur ?** → Commencez par [`guides/README.md`](./guides/README.md)
|
|
36
|
-
2. **Veut déployer en production ?** → Voir [`guides/DEPLOYMENT.md`](./guides/DEPLOYMENT.md)
|
|
37
|
-
3. **Intéressé par le Swarm ?** → Lire [`guides/SWARM_USAGE.md`](./guides/SWARM_USAGE.md)
|
|
38
|
-
4. **Besoin de la référence API ?** → Consulter [`api/tools.md`](./api/tools.md)
|
|
39
|
-
|
|
40
|
-
## 📚 Guides Utilisateur
|
|
41
|
-
|
|
42
|
-
### [`guides/README.md`](./guides/README.md)
|
|
43
|
-
Guide principal d'utilisation :
|
|
44
|
-
- Installation et setup
|
|
45
|
-
- Configuration des agents
|
|
46
|
-
- Utilisation des runners
|
|
47
|
-
- Exemples pratiques
|
|
48
|
-
|
|
49
|
-
### [`guides/DEPLOYMENT.md`](./guides/DEPLOYMENT.md)
|
|
50
|
-
Guide complet de déploiement :
|
|
51
|
-
- Prérequis système
|
|
52
|
-
- Configuration Docker Compose
|
|
53
|
-
- Setup infrastructure (PostgreSQL, RabbitMQ, Temporal)
|
|
54
|
-
- Sécurité et maintenance
|
|
55
|
-
- Monitoring avec Prometheus/Grafana
|
|
56
|
-
|
|
57
|
-
### [`guides/SWARM_USAGE.md`](./guides/SWARM_USAGE.md)
|
|
58
|
-
Guide d'orchestration Swarm :
|
|
59
|
-
- Configuration du swarm
|
|
60
|
-
- Allocation dynamique de tâches
|
|
61
|
-
- Workflows long-running
|
|
62
|
-
- Exemples concrets
|
|
63
|
-
- Monitoring et debug
|
|
64
|
-
|
|
65
|
-
## 🏗️ Infrastructure
|
|
66
|
-
|
|
67
|
-
### Docker Compose
|
|
68
|
-
- **[`../docker-compose.yml`](../docker-compose.yml)** - Stack principale (9 services)
|
|
69
|
-
- RabbitMQ (Message Broker)
|
|
70
|
-
- Temporal (Workflow Orchestrator)
|
|
71
|
-
- PostgreSQL + pgvector (Vector DB)
|
|
72
|
-
- Redis (Cache)
|
|
73
|
-
- Prometheus (Metrics)
|
|
74
|
-
- Grafana (Dashboards)
|
|
75
|
-
- Jaeger (Tracing)
|
|
76
|
-
- OpenTelemetry Collector
|
|
77
|
-
- Node Exporter
|
|
78
|
-
|
|
79
|
-
- **[`../docker-compose.exporters.yml`](../docker-compose.exporters.yml)** - Exporters de métriques
|
|
80
|
-
- RabbitMQ Exporter
|
|
81
|
-
- PostgreSQL Exporter
|
|
82
|
-
- Redis Exporter
|
|
83
|
-
|
|
84
|
-
### Scripts Setup
|
|
85
|
-
Voir [`../scripts/`](../scripts/) :
|
|
86
|
-
- `setup.mjs` - Setup interactif complet
|
|
87
|
-
- `install-dependencies.mjs` - Installation Docker/PostgreSQL
|
|
88
|
-
- `docker-manager.mjs` - Gestion infrastructure (up/down/logs/status)
|
|
89
|
-
- `postinstall.mjs` - Post-installation NPM
|
|
90
|
-
|
|
91
|
-
## 🔌 API & Référence
|
|
92
|
-
|
|
93
|
-
### [`api/prompt/`](./api/prompt/)
|
|
94
|
-
Documentation des prompts système pour chaque runner :
|
|
95
|
-
- Claude Code
|
|
96
|
-
- Kilo (code, architect, ask, debug)
|
|
97
|
-
- Hermes
|
|
98
|
-
- Minimax 4
|
|
99
|
-
|
|
100
|
-
### [`api/tools.md`](./api/tools.md)
|
|
101
|
-
Référence complète des outils MCP :
|
|
102
|
-
- `run_agent` - Exécuter un agent
|
|
103
|
-
- `create_agent` - Créer un nouvel agent
|
|
104
|
-
- `list_agents` - Lister les agents
|
|
105
|
-
- `memory_search` - Recherche mémoire
|
|
106
|
-
- `run_agents_parallel` - Exécution parallèle
|
|
107
|
-
|
|
108
|
-
## 📝 Changelog
|
|
109
|
-
|
|
110
|
-
### [`changelog/CHANGELOG.md`](./changelog/CHANGELOG.md)
|
|
111
|
-
Historique complet des versions :
|
|
112
|
-
- Toutes les versions de 1.x à 2.0.0
|
|
113
|
-
- Features, bug fixes, breaking changes
|
|
114
|
-
- Notes de migration
|
|
115
|
-
|
|
116
|
-
### [`changelog/CHANGELOG.add.md`](./changelog/CHANGELOG.add.md)
|
|
117
|
-
Notes détaillées de la v2.0.0 :
|
|
118
|
-
- Swarm Orchestration
|
|
119
|
-
- Long-Running Workflows
|
|
120
|
-
- Infrastructure Docker complète
|
|
121
|
-
- Observabilité de niveau production
|
|
122
|
-
|
|
123
|
-
## 🔍 Recherche Rapide
|
|
124
|
-
|
|
125
|
-
### Je veux...
|
|
126
|
-
|
|
127
|
-
- **Installer OverMind** → [`guides/README.md`](./guides/README.md)
|
|
128
|
-
- **Déployer en production** → [`guides/DEPLOYMENT.md`](./guides/DEPLOYMENT.md)
|
|
129
|
-
- **Créer un agent** → [`guides/README.md`](./guides/README.md)
|
|
130
|
-
- **Utiliser le Swarm** → [`guides/SWARM_USAGE.md`](./guides/SWARM_USAGE.md)
|
|
131
|
-
- **Voir la référence API** → [`tools.md`](./tools.md)
|
|
132
|
-
- **Setup Docker** → [`../docker-compose.yml`](../docker-compose.yml)
|
|
133
|
-
- **Voir les nouveautés** → [`changelog/CHANGELOG.md`](./changelog/CHANGELOG.md)
|
|
134
|
-
- **Debug un problème** → [`guides/DEPLOYMENT.md`](./guides/DEPLOYMENT.md) (section Monitoring)
|
|
135
|
-
|
|
136
|
-
## 📖 Ressources Externes
|
|
137
|
-
|
|
138
|
-
- **GitHub** : https://github.com/DeamonDev888/overmind-mcp
|
|
139
|
-
- **Discord** : https://discord.gg/4AR82phtBz
|
|
140
|
-
- **Site Web** : https://deamondev888.github.io/overmind-mcp/
|
|
141
|
-
|
|
142
|
-
---
|
|
143
|
-
|
|
144
|
-
**Retour au README principal** : [`../README.md`](../README.md)
|
|
1
|
+
# Documentation OverMind-MCP
|
|
2
|
+
|
|
3
|
+
Bienvenue dans la documentation centralisée d'OverMind-MCP.
|
|
4
|
+
|
|
5
|
+
> **Note** : Le site web cyberpunk avec animations est disponible dans ce dossier. Ce fichier INDEX.md sert de table des matières pour la documentation technique.
|
|
6
|
+
|
|
7
|
+
## 📑 Structure
|
|
8
|
+
|
|
9
|
+
```
|
|
10
|
+
Workflow/
|
|
11
|
+
├── dock../docker/docker-compose.yml # Stack principale (9 services)
|
|
12
|
+
├── docker-compose.exporters.yml # Exporters métriques
|
|
13
|
+
├── scripts/ # Scripts setup/gestion
|
|
14
|
+
│ ├── setup.mjs
|
|
15
|
+
│ ├── install-dependencies.mjs
|
|
16
|
+
│ └── docker-manager.mjs
|
|
17
|
+
│
|
|
18
|
+
└── docs/ # Documentation
|
|
19
|
+
├── index.html # Site web cyberpunk
|
|
20
|
+
├── INDEX.md # Ce fichier (table des matières)
|
|
21
|
+
├── guides/ # Guides utilisateur
|
|
22
|
+
│ ├── README.md # Guide principal
|
|
23
|
+
│ ├── DEPLOYMENT.md # Guide déploiement
|
|
24
|
+
│ └── SWARM_USAGE.md # Guide Swarm
|
|
25
|
+
├── api/ # Documentation API
|
|
26
|
+
│ ├── prompt/ # Prompts système
|
|
27
|
+
│ └── tools.md # Référence outils
|
|
28
|
+
└── changelog/ # Historique versions
|
|
29
|
+
├── CHANGELOG.md
|
|
30
|
+
└── CHANGELOG.add.md
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## 🚀 Par où commencer ?
|
|
34
|
+
|
|
35
|
+
1. **Nouveau utilisateur ?** → Commencez par [`guides/README.md`](./guides/README.md)
|
|
36
|
+
2. **Veut déployer en production ?** → Voir [`guides/DEPLOYMENT.md`](./guides/DEPLOYMENT.md)
|
|
37
|
+
3. **Intéressé par le Swarm ?** → Lire [`guides/SWARM_USAGE.md`](./guides/SWARM_USAGE.md)
|
|
38
|
+
4. **Besoin de la référence API ?** → Consulter [`api/tools.md`](./api/tools.md)
|
|
39
|
+
|
|
40
|
+
## 📚 Guides Utilisateur
|
|
41
|
+
|
|
42
|
+
### [`guides/README.md`](./guides/README.md)
|
|
43
|
+
Guide principal d'utilisation :
|
|
44
|
+
- Installation et setup
|
|
45
|
+
- Configuration des agents
|
|
46
|
+
- Utilisation des runners
|
|
47
|
+
- Exemples pratiques
|
|
48
|
+
|
|
49
|
+
### [`guides/DEPLOYMENT.md`](./guides/DEPLOYMENT.md)
|
|
50
|
+
Guide complet de déploiement :
|
|
51
|
+
- Prérequis système
|
|
52
|
+
- Configuration Docker Compose
|
|
53
|
+
- Setup infrastructure (PostgreSQL, RabbitMQ, Temporal)
|
|
54
|
+
- Sécurité et maintenance
|
|
55
|
+
- Monitoring avec Prometheus/Grafana
|
|
56
|
+
|
|
57
|
+
### [`guides/SWARM_USAGE.md`](./guides/SWARM_USAGE.md)
|
|
58
|
+
Guide d'orchestration Swarm :
|
|
59
|
+
- Configuration du swarm
|
|
60
|
+
- Allocation dynamique de tâches
|
|
61
|
+
- Workflows long-running
|
|
62
|
+
- Exemples concrets
|
|
63
|
+
- Monitoring et debug
|
|
64
|
+
|
|
65
|
+
## 🏗️ Infrastructure
|
|
66
|
+
|
|
67
|
+
### Docker Compose
|
|
68
|
+
- **[`../dock../docker/docker-compose.yml`](../dock../docker/docker-compose.yml)** - Stack principale (9 services)
|
|
69
|
+
- RabbitMQ (Message Broker)
|
|
70
|
+
- Temporal (Workflow Orchestrator)
|
|
71
|
+
- PostgreSQL + pgvector (Vector DB)
|
|
72
|
+
- Redis (Cache)
|
|
73
|
+
- Prometheus (Metrics)
|
|
74
|
+
- Grafana (Dashboards)
|
|
75
|
+
- Jaeger (Tracing)
|
|
76
|
+
- OpenTelemetry Collector
|
|
77
|
+
- Node Exporter
|
|
78
|
+
|
|
79
|
+
- **[`../docker-compose.exporters.yml`](../docker-compose.exporters.yml)** - Exporters de métriques
|
|
80
|
+
- RabbitMQ Exporter
|
|
81
|
+
- PostgreSQL Exporter
|
|
82
|
+
- Redis Exporter
|
|
83
|
+
|
|
84
|
+
### Scripts Setup
|
|
85
|
+
Voir [`../scripts/`](../scripts/) :
|
|
86
|
+
- `setup.mjs` - Setup interactif complet
|
|
87
|
+
- `install-dependencies.mjs` - Installation Docker/PostgreSQL
|
|
88
|
+
- `docker-manager.mjs` - Gestion infrastructure (up/down/logs/status)
|
|
89
|
+
- `postinstall.mjs` - Post-installation NPM
|
|
90
|
+
|
|
91
|
+
## 🔌 API & Référence
|
|
92
|
+
|
|
93
|
+
### [`api/prompt/`](./api/prompt/)
|
|
94
|
+
Documentation des prompts système pour chaque runner :
|
|
95
|
+
- Claude Code
|
|
96
|
+
- Kilo (code, architect, ask, debug)
|
|
97
|
+
- Hermes
|
|
98
|
+
- Minimax 4
|
|
99
|
+
|
|
100
|
+
### [`api/tools.md`](./api/tools.md)
|
|
101
|
+
Référence complète des outils MCP :
|
|
102
|
+
- `run_agent` - Exécuter un agent
|
|
103
|
+
- `create_agent` - Créer un nouvel agent
|
|
104
|
+
- `list_agents` - Lister les agents
|
|
105
|
+
- `memory_search` - Recherche mémoire
|
|
106
|
+
- `run_agents_parallel` - Exécution parallèle
|
|
107
|
+
|
|
108
|
+
## 📝 Changelog
|
|
109
|
+
|
|
110
|
+
### [`changelog/CHANGELOG.md`](./changelog/CHANGELOG.md)
|
|
111
|
+
Historique complet des versions :
|
|
112
|
+
- Toutes les versions de 1.x à 2.0.0
|
|
113
|
+
- Features, bug fixes, breaking changes
|
|
114
|
+
- Notes de migration
|
|
115
|
+
|
|
116
|
+
### [`changelog/CHANGELOG.add.md`](./changelog/CHANGELOG.add.md)
|
|
117
|
+
Notes détaillées de la v2.0.0 :
|
|
118
|
+
- Swarm Orchestration
|
|
119
|
+
- Long-Running Workflows
|
|
120
|
+
- Infrastructure Docker complète
|
|
121
|
+
- Observabilité de niveau production
|
|
122
|
+
|
|
123
|
+
## 🔍 Recherche Rapide
|
|
124
|
+
|
|
125
|
+
### Je veux...
|
|
126
|
+
|
|
127
|
+
- **Installer OverMind** → [`guides/README.md`](./guides/README.md)
|
|
128
|
+
- **Déployer en production** → [`guides/DEPLOYMENT.md`](./guides/DEPLOYMENT.md)
|
|
129
|
+
- **Créer un agent** → [`guides/README.md`](./guides/README.md)
|
|
130
|
+
- **Utiliser le Swarm** → [`guides/SWARM_USAGE.md`](./guides/SWARM_USAGE.md)
|
|
131
|
+
- **Voir la référence API** → [`tools.md`](./tools.md)
|
|
132
|
+
- **Setup Docker** → [`../dock../docker/docker-compose.yml`](../dock../docker/docker-compose.yml)
|
|
133
|
+
- **Voir les nouveautés** → [`changelog/CHANGELOG.md`](./changelog/CHANGELOG.md)
|
|
134
|
+
- **Debug un problème** → [`guides/DEPLOYMENT.md`](./guides/DEPLOYMENT.md) (section Monitoring)
|
|
135
|
+
|
|
136
|
+
## 📖 Ressources Externes
|
|
137
|
+
|
|
138
|
+
- **GitHub** : https://github.com/DeamonDev888/overmind-mcp
|
|
139
|
+
- **Discord** : https://discord.gg/4AR82phtBz
|
|
140
|
+
- **Site Web** : https://deamondev888.github.io/overmind-mcp/
|
|
141
|
+
|
|
142
|
+
---
|
|
143
|
+
|
|
144
|
+
**Retour au README principal** : [`../README.md`](../README.md)
|