-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopencode.json
More file actions
50 lines (50 loc) · 1.75 KB
/
Copy pathopencode.json
File metadata and controls
50 lines (50 loc) · 1.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"$schema": "https://opencode.ai/config.json",
"instructions": [
"AGENTS.md"
],
"agent": {
"lider": {
"description": "Punto de entrada del arnés: init.sh → progress → featureslist → delegar → verificar → done. No escribe código; orquesta subagentes con contexto mínimo y delega el trabajo determinista en los agentes Python.",
"mode": "primary",
"instructions": [
".opencode/agents/lider.md"
]
},
"orquestador": {
"description": "Gateway al sistema de 26 agentes Python: para acciones sueltas (git, test, review, docker, doctor, plan...) sin abrir feature. El líder delega aquí cuando no hay que razonar, solo ejecutar.",
"mode": "subagent",
"instructions": [
".opencode/orchestrator.md"
]
},
"explorer": {
"description": "Arnés: investiga el proyecto en solo lectura y devuelve un informe corto en progress/. No modifica nada.",
"mode": "subagent",
"instructions": [
".opencode/agents/explorer.md"
]
},
"implementer": {
"description": "Arnés: implementa UNA feature del backlog con tests y deja la evidencia en progress/. Lo lanza el líder, no se usa suelto.",
"mode": "subagent",
"instructions": [
".opencode/agents/implementer.md"
]
},
"reviewer": {
"description": "Arnés: aprueba o rechaza el trabajo del implementer ejecutando init.sh y comprobando los criterios de aceptación uno a uno.",
"mode": "subagent",
"instructions": [
".opencode/agents/reviewer.md"
]
}
},
"mcp": {
"climasafeai": {
"type": "local",
"command": ["uv", "run", "python", "-m", "agents.tools.prediction_mcp_tool", "--stdio"],
"enabled": true
}
}
}