overmind-mcp 2.0.5 → 2.0.7
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/README.md +145 -145
- package/dist/server.js +51 -51
- package/docs/INDEX.md +144 -144
- package/docs/api/prompt/Claude_code.md +74 -74
- package/docs/api/prompt/Kilo.md +74 -74
- package/docs/api/prompt/Kilo_Hermes.md +170 -170
- package/docs/api/prompt/Minimax4.md +96 -96
- package/docs/changelog/CHANGELOG.add.md +106 -106
- package/docs/guides/DEPLOYMENT.md +418 -418
- package/docs/guides/SWARM_USAGE.md +444 -444
- package/install-overmind-unix.sh +250 -250
- package/install-overmind-windows.bat +257 -257
- package/package.json +131 -127
- package/scripts/postinstall.mjs +465 -368
package/README.md
CHANGED
|
@@ -1,145 +1,145 @@
|
|
|
1
|
-
# OverMind-MCP
|
|
2
|
-
|
|
3
|
-
Orchestrateur universel d'agents IA multi-modèles via MCP (Model Context Protocol).
|
|
4
|
-
|
|
5
|
-
## 🚀 Démarrage Rapide
|
|
6
|
-
|
|
7
|
-
```bash
|
|
8
|
-
# Installation
|
|
9
|
-
npm install -g overmind-mcp
|
|
10
|
-
|
|
11
|
-
# Setup initial (interactif)
|
|
12
|
-
overmind-setup
|
|
13
|
-
|
|
14
|
-
# Lancer un agent
|
|
15
|
-
overmind run-agent --runner claude --agent-name mon-agent --prompt "Explique ce code"
|
|
16
|
-
```
|
|
17
|
-
|
|
18
|
-
## 📚 Documentation
|
|
19
|
-
|
|
20
|
-
Toute la documentation est centralisée dans le dossier [`docs/`](./docs/) :
|
|
21
|
-
|
|
22
|
-
### Guides Utilisateur
|
|
23
|
-
- **[README](./docs/guides/README.md)** - Guide principal
|
|
24
|
-
- **[DEPLOYMENT](./docs/guides/DEPLOYMENT.md)** - Guide de déploiement complet
|
|
25
|
-
- **[SWARM_USAGE](./docs/guides/SWARM_USAGE.md)** - Guide d'orchestration Swarm
|
|
26
|
-
|
|
27
|
-
### Infrastructure
|
|
28
|
-
- **[`docker-compose.yml`](./docker-compose.yml)** - Stack principale (9 services)
|
|
29
|
-
- **[`docker-compose.exporters.yml`](./docker-compose.exporters.yml)** - Exporters de métriques
|
|
30
|
-
- **[`scripts/`](./scripts/)** - Scripts d'installation et gestion
|
|
31
|
-
|
|
32
|
-
### API & Référence
|
|
33
|
-
- **[Prompts](./docs/api/prompt/)** - Documentation des prompts système
|
|
34
|
-
- **[Tools](./docs/tools.md)** - Référence des outils MCP
|
|
35
|
-
|
|
36
|
-
### Changelog
|
|
37
|
-
- **[CHANGELOG](./docs/changelog/CHANGELOG.md)** - Historique des versions
|
|
38
|
-
- **[CHANGELOG.add](./docs/changelog/CHANGELOG.add.md)** - Notes de version v2.0.0
|
|
39
|
-
|
|
40
|
-
## 🎯 Fonctionnalités Principales
|
|
41
|
-
|
|
42
|
-
- **Multi-Runners** : Claude, Gemini, Kilo, Hermes, OpenClaw, Cline, OpenCode, QwenCLI
|
|
43
|
-
- **Fallback Tokens** : Rotation automatique sur quota exhausted (AUTH_FALLBACK_1/2/3)
|
|
44
|
-
- **Swarm Orchestration** : Allocation dynamique de tâches aux agents spécialisés
|
|
45
|
-
- **Long-Running Workflows** : Workflows Temporal jusqu'à 7 jours
|
|
46
|
-
- **Observabilité** : OpenTelemetry, Prometheus, Grafana, Jaeger
|
|
47
|
-
- **Vector DB** : PostgreSQL + pgvector (4096D)
|
|
48
|
-
|
|
49
|
-
## 📦 Scripts NPM
|
|
50
|
-
|
|
51
|
-
```bash
|
|
52
|
-
# Build
|
|
53
|
-
npm run build
|
|
54
|
-
npm run rebuild
|
|
55
|
-
|
|
56
|
-
# Qualité
|
|
57
|
-
npm run lint
|
|
58
|
-
npm run format
|
|
59
|
-
npm run check-types
|
|
60
|
-
npm run test
|
|
61
|
-
|
|
62
|
-
# Infrastructure
|
|
63
|
-
npm run deploy:infra # Docker Compose stack principale
|
|
64
|
-
npm run deploy:exporters # Exporters de métriques
|
|
65
|
-
npm run deploy:all # Tout démarrer
|
|
66
|
-
npm run deploy:logs # Logs des services
|
|
67
|
-
npm run deploy:status # État des services
|
|
68
|
-
|
|
69
|
-
# Setup
|
|
70
|
-
npm run setup # Setup interactif complet
|
|
71
|
-
npm run setup:full # Setup avec toutes les dépendances
|
|
72
|
-
npm run setup:deps # Installation dépendances Docker uniquement
|
|
73
|
-
```
|
|
74
|
-
|
|
75
|
-
## 🔧 Configuration
|
|
76
|
-
|
|
77
|
-
Le fichier `.env` à la racine du projet contient toute la configuration :
|
|
78
|
-
|
|
79
|
-
```bash
|
|
80
|
-
# Modèles AI
|
|
81
|
-
ANTHROPIC_MODEL=claude-sonnet-4-6
|
|
82
|
-
ANTHROPIC_AUTH_TOKEN=sk-ant-...
|
|
83
|
-
AUTH_FALLBACK_1=sk-ant-...
|
|
84
|
-
AUTH_FALLBACK_2=sk-ant-...
|
|
85
|
-
|
|
86
|
-
# OverMind
|
|
87
|
-
OVERMIND_WORKSPACE=/chemin/vers/workspace
|
|
88
|
-
|
|
89
|
-
# OpenTelemetry (optionnel)
|
|
90
|
-
OTEL_ENABLED=true
|
|
91
|
-
OTEL_EXPORTER_OTLP_ENDPOINT=http://localhost:4318
|
|
92
|
-
```
|
|
93
|
-
|
|
94
|
-
## 🏗️ Architecture
|
|
95
|
-
|
|
96
|
-
```
|
|
97
|
-
Workflow/
|
|
98
|
-
├── src/
|
|
99
|
-
│ ├── services/ # Runners (Claude, Gemini, Kilo, etc.)
|
|
100
|
-
│ ├── tools/ # Outils MCP (run_agent, create_agent, etc.)
|
|
101
|
-
│ ├── lib/ # Bibliothèques internes
|
|
102
|
-
│ └── bin/ # Binaires CLI
|
|
103
|
-
├── docs/ # Documentation centralisée
|
|
104
|
-
├── scripts/ # Scripts NPM (lien vers docs/infrastructure/scripts)
|
|
105
|
-
└── dist/ # Build output
|
|
106
|
-
```
|
|
107
|
-
|
|
108
|
-
## 📖 Aide
|
|
109
|
-
|
|
110
|
-
```bash
|
|
111
|
-
# Aide générale
|
|
112
|
-
overmind --help
|
|
113
|
-
|
|
114
|
-
# Aide sur une commande spécifique
|
|
115
|
-
overmind run-agent --help
|
|
116
|
-
|
|
117
|
-
# Lister les agents disponibles
|
|
118
|
-
overmind list-agents
|
|
119
|
-
|
|
120
|
-
# Voir la config d'un agent
|
|
121
|
-
overmind get-config --name mon-agent
|
|
122
|
-
```
|
|
123
|
-
|
|
124
|
-
## 🤝 Contribution
|
|
125
|
-
|
|
126
|
-
Ce projet utilise Changesets pour la gestion des versions :
|
|
127
|
-
|
|
128
|
-
```bash
|
|
129
|
-
# Créer un changeset
|
|
130
|
-
pnpm changeset
|
|
131
|
-
|
|
132
|
-
# Versionner (après changesets)
|
|
133
|
-
pnpm changeset version
|
|
134
|
-
|
|
135
|
-
# Publier
|
|
136
|
-
pnpm release
|
|
137
|
-
```
|
|
138
|
-
|
|
139
|
-
## 📄 Licence
|
|
140
|
-
|
|
141
|
-
MIT
|
|
142
|
-
|
|
143
|
-
---
|
|
144
|
-
|
|
145
|
-
**Documentation complète :** [`docs/`](./docs/)
|
|
1
|
+
# OverMind-MCP
|
|
2
|
+
|
|
3
|
+
Orchestrateur universel d'agents IA multi-modèles via MCP (Model Context Protocol).
|
|
4
|
+
|
|
5
|
+
## 🚀 Démarrage Rapide
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
# Installation
|
|
9
|
+
npm install -g overmind-mcp
|
|
10
|
+
|
|
11
|
+
# Setup initial (interactif)
|
|
12
|
+
overmind-setup
|
|
13
|
+
|
|
14
|
+
# Lancer un agent
|
|
15
|
+
overmind run-agent --runner claude --agent-name mon-agent --prompt "Explique ce code"
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## 📚 Documentation
|
|
19
|
+
|
|
20
|
+
Toute la documentation est centralisée dans le dossier [`docs/`](./docs/) :
|
|
21
|
+
|
|
22
|
+
### Guides Utilisateur
|
|
23
|
+
- **[README](./docs/guides/README.md)** - Guide principal
|
|
24
|
+
- **[DEPLOYMENT](./docs/guides/DEPLOYMENT.md)** - Guide de déploiement complet
|
|
25
|
+
- **[SWARM_USAGE](./docs/guides/SWARM_USAGE.md)** - Guide d'orchestration Swarm
|
|
26
|
+
|
|
27
|
+
### Infrastructure
|
|
28
|
+
- **[`docker-compose.yml`](./docker-compose.yml)** - Stack principale (9 services)
|
|
29
|
+
- **[`docker-compose.exporters.yml`](./docker-compose.exporters.yml)** - Exporters de métriques
|
|
30
|
+
- **[`scripts/`](./scripts/)** - Scripts d'installation et gestion
|
|
31
|
+
|
|
32
|
+
### API & Référence
|
|
33
|
+
- **[Prompts](./docs/api/prompt/)** - Documentation des prompts système
|
|
34
|
+
- **[Tools](./docs/tools.md)** - Référence des outils MCP
|
|
35
|
+
|
|
36
|
+
### Changelog
|
|
37
|
+
- **[CHANGELOG](./docs/changelog/CHANGELOG.md)** - Historique des versions
|
|
38
|
+
- **[CHANGELOG.add](./docs/changelog/CHANGELOG.add.md)** - Notes de version v2.0.0
|
|
39
|
+
|
|
40
|
+
## 🎯 Fonctionnalités Principales
|
|
41
|
+
|
|
42
|
+
- **Multi-Runners** : Claude, Gemini, Kilo, Hermes, OpenClaw, Cline, OpenCode, QwenCLI
|
|
43
|
+
- **Fallback Tokens** : Rotation automatique sur quota exhausted (AUTH_FALLBACK_1/2/3)
|
|
44
|
+
- **Swarm Orchestration** : Allocation dynamique de tâches aux agents spécialisés
|
|
45
|
+
- **Long-Running Workflows** : Workflows Temporal jusqu'à 7 jours
|
|
46
|
+
- **Observabilité** : OpenTelemetry, Prometheus, Grafana, Jaeger
|
|
47
|
+
- **Vector DB** : PostgreSQL + pgvector (4096D)
|
|
48
|
+
|
|
49
|
+
## 📦 Scripts NPM
|
|
50
|
+
|
|
51
|
+
```bash
|
|
52
|
+
# Build
|
|
53
|
+
npm run build
|
|
54
|
+
npm run rebuild
|
|
55
|
+
|
|
56
|
+
# Qualité
|
|
57
|
+
npm run lint
|
|
58
|
+
npm run format
|
|
59
|
+
npm run check-types
|
|
60
|
+
npm run test
|
|
61
|
+
|
|
62
|
+
# Infrastructure
|
|
63
|
+
npm run deploy:infra # Docker Compose stack principale
|
|
64
|
+
npm run deploy:exporters # Exporters de métriques
|
|
65
|
+
npm run deploy:all # Tout démarrer
|
|
66
|
+
npm run deploy:logs # Logs des services
|
|
67
|
+
npm run deploy:status # État des services
|
|
68
|
+
|
|
69
|
+
# Setup
|
|
70
|
+
npm run setup # Setup interactif complet
|
|
71
|
+
npm run setup:full # Setup avec toutes les dépendances
|
|
72
|
+
npm run setup:deps # Installation dépendances Docker uniquement
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
## 🔧 Configuration
|
|
76
|
+
|
|
77
|
+
Le fichier `.env` à la racine du projet contient toute la configuration :
|
|
78
|
+
|
|
79
|
+
```bash
|
|
80
|
+
# Modèles AI
|
|
81
|
+
ANTHROPIC_MODEL=claude-sonnet-4-6
|
|
82
|
+
ANTHROPIC_AUTH_TOKEN=sk-ant-...
|
|
83
|
+
AUTH_FALLBACK_1=sk-ant-...
|
|
84
|
+
AUTH_FALLBACK_2=sk-ant-...
|
|
85
|
+
|
|
86
|
+
# OverMind
|
|
87
|
+
OVERMIND_WORKSPACE=/chemin/vers/workspace
|
|
88
|
+
|
|
89
|
+
# OpenTelemetry (optionnel)
|
|
90
|
+
OTEL_ENABLED=true
|
|
91
|
+
OTEL_EXPORTER_OTLP_ENDPOINT=http://localhost:4318
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
## 🏗️ Architecture
|
|
95
|
+
|
|
96
|
+
```
|
|
97
|
+
Workflow/
|
|
98
|
+
├── src/
|
|
99
|
+
│ ├── services/ # Runners (Claude, Gemini, Kilo, etc.)
|
|
100
|
+
│ ├── tools/ # Outils MCP (run_agent, create_agent, etc.)
|
|
101
|
+
│ ├── lib/ # Bibliothèques internes
|
|
102
|
+
│ └── bin/ # Binaires CLI
|
|
103
|
+
├── docs/ # Documentation centralisée
|
|
104
|
+
├── scripts/ # Scripts NPM (lien vers docs/infrastructure/scripts)
|
|
105
|
+
└── dist/ # Build output
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
## 📖 Aide
|
|
109
|
+
|
|
110
|
+
```bash
|
|
111
|
+
# Aide générale
|
|
112
|
+
overmind --help
|
|
113
|
+
|
|
114
|
+
# Aide sur une commande spécifique
|
|
115
|
+
overmind run-agent --help
|
|
116
|
+
|
|
117
|
+
# Lister les agents disponibles
|
|
118
|
+
overmind list-agents
|
|
119
|
+
|
|
120
|
+
# Voir la config d'un agent
|
|
121
|
+
overmind get-config --name mon-agent
|
|
122
|
+
```
|
|
123
|
+
|
|
124
|
+
## 🤝 Contribution
|
|
125
|
+
|
|
126
|
+
Ce projet utilise Changesets pour la gestion des versions :
|
|
127
|
+
|
|
128
|
+
```bash
|
|
129
|
+
# Créer un changeset
|
|
130
|
+
pnpm changeset
|
|
131
|
+
|
|
132
|
+
# Versionner (après changesets)
|
|
133
|
+
pnpm changeset version
|
|
134
|
+
|
|
135
|
+
# Publier
|
|
136
|
+
pnpm release
|
|
137
|
+
```
|
|
138
|
+
|
|
139
|
+
## 📄 Licence
|
|
140
|
+
|
|
141
|
+
MIT
|
|
142
|
+
|
|
143
|
+
---
|
|
144
|
+
|
|
145
|
+
**Documentation complète :** [`docs/`](./docs/)
|
package/dist/server.js
CHANGED
|
@@ -61,36 +61,36 @@ export function createServer(name = 'OverMind-MCP') {
|
|
|
61
61
|
// ─── 1. run_agent ─────────────────────────────────────────────────────────────
|
|
62
62
|
server.addTool({
|
|
63
63
|
name: 'run_agent',
|
|
64
|
-
description: `Exécute une commande sur un agent IA via le runner spécifié.
|
|
65
|
-
|
|
66
|
-
**Runners disponibles:**
|
|
67
|
-
- claude: Claude Code (Nécessite 'create_agent' au préalable)
|
|
68
|
-
- gemini: Gemini CLI
|
|
69
|
-
- kilo: Kilocode (modes: code, architect, ask, debug, orchestrator)
|
|
70
|
-
- qwencli: Qwen Code CLI (qwen -p)
|
|
71
|
-
- openclaw: OpenClaw (openclaw message send)
|
|
72
|
-
- cline: Cline (modes: plan, act)
|
|
73
|
-
- opencode: OpenCode (opencode run)
|
|
74
|
-
- hermes: Nous Hermes Agent (Nécessite 'create_agent' au préalable)
|
|
75
|
-
|
|
76
|
-
**Modèles recommandés :**
|
|
77
|
-
| Fournisseur | Modèle recommandé | Usage |
|
|
78
|
-
| :--- | :--- | :--- |
|
|
79
|
-
| **Mistral** | **Devstral 2** (\`codestral-latest\`) | Expert Coding & Développement |
|
|
80
|
-
| **Mistral** | **Mistral Large 3** (\`mistral-large-latest\`) | Raisonnement & Architecture |
|
|
81
|
-
| **Kilo** | **step 3.5 flash** | Polyvalent (262K context) |
|
|
82
|
-
| **Kilo** | **free** | Modèle par défaut gratuit |
|
|
83
|
-
|
|
84
|
-
**Parameters:**
|
|
85
|
-
- runner: Type de runner (claude, gemini, etc.)
|
|
86
|
-
- prompt: Instruction à envoyer à l'agent
|
|
87
|
-
- agentName: Nom de l'agent (optionnel)
|
|
88
|
-
- path: Répertoire de travail (CWD). Par défaut: dossier Overmind.
|
|
89
|
-
- config: Répertoire racine de l'Overmind. Par défaut: dossier Overmind.
|
|
90
|
-
|
|
91
|
-
**Exemples:**
|
|
92
|
-
run_agent(runner: "claude", agentName: "expert_python", prompt: "Analyse ce code")
|
|
93
|
-
run_agent(runner: "kilo", agentName: "architect", mode: "architect", prompt: "Conçois une API REST", path: "./my-project")
|
|
64
|
+
description: `Exécute une commande sur un agent IA via le runner spécifié.
|
|
65
|
+
|
|
66
|
+
**Runners disponibles:**
|
|
67
|
+
- claude: Claude Code (Nécessite 'create_agent' au préalable)
|
|
68
|
+
- gemini: Gemini CLI
|
|
69
|
+
- kilo: Kilocode (modes: code, architect, ask, debug, orchestrator)
|
|
70
|
+
- qwencli: Qwen Code CLI (qwen -p)
|
|
71
|
+
- openclaw: OpenClaw (openclaw message send)
|
|
72
|
+
- cline: Cline (modes: plan, act)
|
|
73
|
+
- opencode: OpenCode (opencode run)
|
|
74
|
+
- hermes: Nous Hermes Agent (Nécessite 'create_agent' au préalable)
|
|
75
|
+
|
|
76
|
+
**Modèles recommandés :**
|
|
77
|
+
| Fournisseur | Modèle recommandé | Usage |
|
|
78
|
+
| :--- | :--- | :--- |
|
|
79
|
+
| **Mistral** | **Devstral 2** (\`codestral-latest\`) | Expert Coding & Développement |
|
|
80
|
+
| **Mistral** | **Mistral Large 3** (\`mistral-large-latest\`) | Raisonnement & Architecture |
|
|
81
|
+
| **Kilo** | **step 3.5 flash** | Polyvalent (262K context) |
|
|
82
|
+
| **Kilo** | **free** | Modèle par défaut gratuit |
|
|
83
|
+
|
|
84
|
+
**Parameters:**
|
|
85
|
+
- runner: Type de runner (claude, gemini, etc.)
|
|
86
|
+
- prompt: Instruction à envoyer à l'agent
|
|
87
|
+
- agentName: Nom de l'agent (optionnel)
|
|
88
|
+
- path: Répertoire de travail (CWD). Par défaut: dossier Overmind.
|
|
89
|
+
- config: Répertoire racine de l'Overmind. Par défaut: dossier Overmind.
|
|
90
|
+
|
|
91
|
+
**Exemples:**
|
|
92
|
+
run_agent(runner: "claude", agentName: "expert_python", prompt: "Analyse ce code")
|
|
93
|
+
run_agent(runner: "kilo", agentName: "architect", mode: "architect", prompt: "Conçois une API REST", path: "./my-project")
|
|
94
94
|
run_agent(runner: "cline", agentName: "planner", mode: "plan", prompt: "Planifie l'implémentation")`,
|
|
95
95
|
parameters: runAgentSchema,
|
|
96
96
|
execute: wrapExecute('run_agent', runAgent),
|
|
@@ -98,20 +98,20 @@ run_agent(runner: "cline", agentName: "planner", mode: "plan", prompt: "Planifie
|
|
|
98
98
|
// ─── 2. run_agents_parallel ─────────────────────────────────────────────────
|
|
99
99
|
server.addTool({
|
|
100
100
|
name: 'run_agents_parallel',
|
|
101
|
-
description: `🚀 Lance plusieurs agents IA EN PARALLÈLE depuis un seul appel MCP. Polyglotte (mixe runners/modèles). Retourne les résultats consolidés une fois tous terminés.
|
|
102
|
-
|
|
103
|
-
**Cas d'usage :** Orchestration de flotte, rotation de tokens, tâches indépendantes simultanées.
|
|
104
|
-
|
|
105
|
-
**Exemple :**
|
|
106
|
-
run_agents_parallel(agents: [
|
|
107
|
-
{ taskId: "build", runner: "kilo", agentName: "mistral_1", prompt: "npm run build", path: "./project" },
|
|
108
|
-
{ taskId: "lint", runner: "kilo", agentName: "mistral_2", prompt: "npm run lint", path: "./project" },
|
|
109
|
-
{ taskId: "test", runner: "kilo", agentName: "mistral_3", prompt: "npm test", path: "./project" },
|
|
110
|
-
{ taskId: "audit", runner: "kilo", agentName: "mistral_4", prompt: "Analyse le fichier audit.md", path: "./project" },
|
|
111
|
-
])
|
|
112
|
-
|
|
113
|
-
**Options :**
|
|
114
|
-
- waitAll (défaut: true) : attend tous les agents avant de retourner.
|
|
101
|
+
description: `🚀 Lance plusieurs agents IA EN PARALLÈLE depuis un seul appel MCP. Polyglotte (mixe runners/modèles). Retourne les résultats consolidés une fois tous terminés.
|
|
102
|
+
|
|
103
|
+
**Cas d'usage :** Orchestration de flotte, rotation de tokens, tâches indépendantes simultanées.
|
|
104
|
+
|
|
105
|
+
**Exemple :**
|
|
106
|
+
run_agents_parallel(agents: [
|
|
107
|
+
{ taskId: "build", runner: "kilo", agentName: "mistral_1", prompt: "npm run build", path: "./project" },
|
|
108
|
+
{ taskId: "lint", runner: "kilo", agentName: "mistral_2", prompt: "npm run lint", path: "./project" },
|
|
109
|
+
{ taskId: "test", runner: "kilo", agentName: "mistral_3", prompt: "npm test", path: "./project" },
|
|
110
|
+
{ taskId: "audit", runner: "kilo", agentName: "mistral_4", prompt: "Analyse le fichier audit.md", path: "./project" },
|
|
111
|
+
])
|
|
112
|
+
|
|
113
|
+
**Options :**
|
|
114
|
+
- waitAll (défaut: true) : attend tous les agents avant de retourner.
|
|
115
115
|
- waitAll: false : retourne dès que le premier agent réussit (race mode).`,
|
|
116
116
|
parameters: runAgentsParallelSchema,
|
|
117
117
|
execute: wrapExecute('run_agents_parallel', runAgentsParallel),
|
|
@@ -119,13 +119,13 @@ run_agents_parallel(agents: [
|
|
|
119
119
|
// ─── 3. create_agent ────────────────────────────────────────────────────────
|
|
120
120
|
server.addTool({
|
|
121
121
|
name: 'create_agent',
|
|
122
|
-
description: `Crée un nouvel agent (Prompt + Config) compatible avec tous les runners.
|
|
123
|
-
|
|
124
|
-
**Runners supportés:** claude, gemini, kilo, qwencli, openclaw, cline, opencode, hermes
|
|
125
|
-
|
|
126
|
-
**Exemples:**
|
|
127
|
-
create_agent(name: "expert_python", runner: "claude", prompt: "Tu es un expert Python...")
|
|
128
|
-
create_agent(name: "architecte", runner: "kilo", mode: "architect", prompt: "Tu es un architecte logiciel...")
|
|
122
|
+
description: `Crée un nouvel agent (Prompt + Config) compatible avec tous les runners.
|
|
123
|
+
|
|
124
|
+
**Runners supportés:** claude, gemini, kilo, qwencli, openclaw, cline, opencode, hermes
|
|
125
|
+
|
|
126
|
+
**Exemples:**
|
|
127
|
+
create_agent(name: "expert_python", runner: "claude", prompt: "Tu es un expert Python...")
|
|
128
|
+
create_agent(name: "architecte", runner: "kilo", mode: "architect", prompt: "Tu es un architecte logiciel...")
|
|
129
129
|
create_agent(name: "planner", runner: "cline", mode: "plan", prompt: "Tu es un planificateur de tâches...")`,
|
|
130
130
|
parameters: createAgentSchema,
|
|
131
131
|
execute: createAgent,
|