@christianmaf80/agentic-workflow 1.14.0-beta.3 → 1.14.0-beta.5
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/dist/workflows/init.md +5 -0
- package/package.json +1 -1
package/dist/workflows/init.md
CHANGED
|
@@ -53,12 +53,15 @@ El agente **DEBE** adherirse a estas meta-reglas de comportamiento durante TODA
|
|
|
53
53
|
1) `.agent/index.md`
|
|
54
54
|
2) `agent.domains.rules.index`
|
|
55
55
|
3) `rules.constitution.index`
|
|
56
|
+
- El orden es obligatorio: primero el Root Index, luego Rules Index, luego Constitution Index.
|
|
57
|
+
- **PROHIBIDO** cargar índices de `templates` o `artifacts` durante `init`.
|
|
56
58
|
- Si alguna falla → FAIL.
|
|
57
59
|
|
|
58
60
|
3. Cargar en contexto las constitutions (en orden):
|
|
59
61
|
1) `constitution.GEMINI_location`
|
|
60
62
|
2) `constitution.clean_code`
|
|
61
63
|
3) `constitution.agents_behavior`
|
|
64
|
+
- **PROHIBIDO** cargar templates o artifacts en este paso.
|
|
62
65
|
- Si alguna falla → FAIL.
|
|
63
66
|
|
|
64
67
|
4. Detectar idioma preferido y pedir confirmación explícita.
|
|
@@ -113,3 +116,5 @@ Requisitos (todos obligatorios):
|
|
|
113
116
|
3) El artefacto cumple el template oficial.
|
|
114
117
|
4) Idioma definido y confirmado.
|
|
115
118
|
5) Estrategia seleccionada.
|
|
119
|
+
6) No se cargaron índices fuera del set permitido (solo `.agent/index.md`, `agent.domains.rules.index`, `rules.constitution.index`).
|
|
120
|
+
7) El Root Index `.agent/index.md` fue cargado antes de cualquier otro índice.
|
package/package.json
CHANGED