@ingeniomaps/cauce 0.7.3 → 0.7.4
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 +3 -1
- package/automatization/workflows/team.js +3 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -8,7 +8,7 @@ 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.7.
|
|
11
|
+
## [0.7.4] - 2026-08-15
|
|
12
12
|
|
|
13
13
|
### Corregido
|
|
14
14
|
|
|
@@ -18,6 +18,8 @@ minor aunque no toque una sola línea de código.
|
|
|
18
18
|
dónde vive cada cargo y se quedaba sin dato.
|
|
19
19
|
- La ruta del contrato de cada cargo es obligatoria en el manifiesto que arma `team`. Siendo opcional
|
|
20
20
|
el agente la omitía, la etapa caía al camino de respaldo y salía a buscar el archivo igual.
|
|
21
|
+
Y lleva el prefijo de la raíz ops: `agents list` las imprime relativas a ella y las etapas corren
|
|
22
|
+
desde otro lado, así que sin prefijo la ruta tampoco resolvía.
|
|
21
23
|
|
|
22
24
|
## [0.7.2] - 2026-08-15
|
|
23
25
|
|
|
@@ -122,8 +122,9 @@ const contract = await agent(
|
|
|
122
122
|
`2. "node tools/ops.js agents list --json", which gives each role its resolved path.\n` +
|
|
123
123
|
`Report exists=true, the manifest fields —name, purpose, outcome, entryAgent, facilitator, ` +
|
|
124
124
|
`guardrails, stages with id, phase, agent, produces and exitGate, decisionOwners flattened into ` +
|
|
125
|
-
`owners as domain/agent pairs— and for every stage set skill to "
|
|
126
|
-
|
|
125
|
+
`owners as domain/agent pairs— and for every stage set skill to "${ROOT}/<path>/SKILL.md", where ` +
|
|
126
|
+
`<path> is what command 2 printed for that stage's agent. That command prints paths relative to ` +
|
|
127
|
+
`${ROOT}, and the stages run from elsewhere, so the prefix is not optional.`,
|
|
127
128
|
{ schema: MANIFEST, label: 'team-contract' },
|
|
128
129
|
)
|
|
129
130
|
if (!contract) return stop('contract-unavailable', `no se pudo leer el manifiesto de ${CANDIDATE}`)
|