@ingeniomaps/cauce 0.5.5 → 0.6.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/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,19 @@ esa operación sea confiable en vez de sólo cómoda: acá se lee qué cambió a
|
|
|
8
8
|
un cambio en el protocolo, en las reglas del sistema o en un guard es visible para el usuario y sube
|
|
9
9
|
minor aunque no toque una sola línea de código.
|
|
10
10
|
|
|
11
|
+
## [0.6.0] - 2026-08-15
|
|
12
|
+
|
|
13
|
+
### Cambiado
|
|
14
|
+
|
|
15
|
+
- **Gemini deja de ser el runner sin guards.** Gemini CLI ganó hooks y skills nativas, y el adaptador
|
|
16
|
+
seguía tratándolo como si no los tuviera: los guards se pedían como prechecks manuales —o sea,
|
|
17
|
+
nadie lo detenía— y los 47 cargos no llegaban. Ahora recibe hooks reales en `.gemini/settings.json`
|
|
18
|
+
con sus propios eventos (`BeforeTool`, `AfterAgent`) y variable (`$GEMINI_PROJECT_DIR`), y el
|
|
19
|
+
catálogo completo en `.gemini/skills/`.
|
|
20
|
+
- `GEMINI.md` avisa de dos cosas que sólo se ven usándolo: Gemini **desactiva los hooks si la carpeta
|
|
21
|
+
no es de confianza**, y `gemini hooks migrate --from-claude` reescribe `settings.json` entero y se
|
|
22
|
+
lleva puesta el resto de la configuración.
|
|
23
|
+
|
|
11
24
|
## [0.5.5] - 2026-08-15
|
|
12
25
|
|
|
13
26
|
### Corregido
|
|
@@ -3,10 +3,25 @@
|
|
|
3
3
|
@{{OPS_DIR}}AGENTS.md
|
|
4
4
|
@{{OPS_DIR}}planning/PROTOCOL.md
|
|
5
5
|
|
|
6
|
-
`{{OPS_DIR}}planning/PROTOCOL.md` es la fuente de verdad. Ejecuta `/ops:autobuild` fase por fase; los
|
|
7
|
-
Claude son referencia, no un runtime compatible. `{{OPS_DIR}}planning/WIP.md` es el mutex
|
|
8
|
-
`{{OPS_DIR}}planning/AWAITING_REVIEW.md` bloquea una corrida nueva.
|
|
6
|
+
`{{OPS_DIR}}planning/PROTOCOL.md` es la fuente de verdad. Ejecuta `/ops:autobuild` fase por fase; los
|
|
7
|
+
workflows JS de Claude son referencia, no un runtime compatible. `{{OPS_DIR}}planning/WIP.md` es el mutex
|
|
8
|
+
y `{{OPS_DIR}}planning/AWAITING_REVIEW.md` bloquea una corrida nueva.
|
|
9
9
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
10
|
+
Los hooks de `.gemini/settings.json` son obligatorios y bloquean por su cuenta. **Requieren que la
|
|
11
|
+
carpeta esté marcada como confiable**: si no lo está, Gemini los desactiva y avisa con
|
|
12
|
+
`Project hooks disabled because the folder is not trusted`, y entonces nada te detiene. Confía en la
|
|
13
|
+
carpeta antes de trabajar.
|
|
14
|
+
|
|
15
|
+
Los cargos llegan como skills en `.gemini/skills/`. Cada uno conserva nombre y descripción, y remite al
|
|
16
|
+
contrato completo; leé ese `SKILL.md` antes de actuar en su terreno. Para la lista:
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
node {{OPS_DIR}}tools/ops.js agents list
|
|
20
|
+
node {{OPS_DIR}}tools/ops.js team list
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
Nunca omitas aprobaciones, inventes credenciales, escribas remoto, hagas push/deploy o promociones
|
|
24
|
+
trabajo desde INBOX.
|
|
25
|
+
|
|
26
|
+
> No corras `gemini hooks migrate --from-claude`: reescribe `.gemini/settings.json` entero y se lleva
|
|
27
|
+
> puesto el resto de la configuración. `cauce automation install . gemini` ya deja los hooks puestos.
|
|
@@ -31,10 +31,11 @@
|
|
|
31
31
|
}
|
|
32
32
|
],
|
|
33
33
|
"capabilities": {
|
|
34
|
-
"nativeHooks":
|
|
34
|
+
"nativeHooks": true,
|
|
35
35
|
"nativeWorkflows": false,
|
|
36
36
|
"projectInstructions": true,
|
|
37
37
|
"checkpointing": true,
|
|
38
|
-
"nativeSkills":
|
|
39
|
-
}
|
|
38
|
+
"nativeSkills": true
|
|
39
|
+
},
|
|
40
|
+
"roleSkills": ".gemini/skills"
|
|
40
41
|
}
|
|
@@ -1,9 +1,43 @@
|
|
|
1
1
|
{
|
|
2
2
|
"general": {
|
|
3
|
-
"checkpointing": {
|
|
3
|
+
"checkpointing": {
|
|
4
|
+
"enabled": true
|
|
5
|
+
}
|
|
4
6
|
},
|
|
5
7
|
"context": {
|
|
6
8
|
"fileName": ["AGENTS.md", "GEMINI.md"],
|
|
7
9
|
"loadFromIncludeDirectories": true
|
|
10
|
+
},
|
|
11
|
+
"hooks": {
|
|
12
|
+
"BeforeTool": [
|
|
13
|
+
{
|
|
14
|
+
"matcher": "run_shell_command",
|
|
15
|
+
"hooks": [
|
|
16
|
+
{
|
|
17
|
+
"type": "command",
|
|
18
|
+
"command": "$GEMINI_PROJECT_DIR/{{OPS_DIR}}automatization/hooks/guard-shell.sh"
|
|
19
|
+
}
|
|
20
|
+
]
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"matcher": "replace|write_file",
|
|
24
|
+
"hooks": [
|
|
25
|
+
{
|
|
26
|
+
"type": "command",
|
|
27
|
+
"command": "$GEMINI_PROJECT_DIR/{{OPS_DIR}}automatization/hooks/guard-files.sh"
|
|
28
|
+
}
|
|
29
|
+
]
|
|
30
|
+
}
|
|
31
|
+
],
|
|
32
|
+
"AfterAgent": [
|
|
33
|
+
{
|
|
34
|
+
"hooks": [
|
|
35
|
+
{
|
|
36
|
+
"type": "command",
|
|
37
|
+
"command": "$GEMINI_PROJECT_DIR/{{OPS_DIR}}automatization/hooks/guard-planning-drift.sh"
|
|
38
|
+
}
|
|
39
|
+
]
|
|
40
|
+
}
|
|
41
|
+
]
|
|
8
42
|
}
|
|
9
43
|
}
|