chati-dev 4.5.16 → 4.5.27

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.
Files changed (122) hide show
  1. package/README.md +8 -3
  2. package/bin/chati.js +124 -66
  3. package/framework/agents/build/dev.md +5 -5
  4. package/framework/agents/deploy/devops.md +7 -7
  5. package/framework/agents/discover/brief.md +4 -4
  6. package/framework/agents/discover/brownfield-wu.md +3 -3
  7. package/framework/agents/discover/greenfield-wu.md +3 -3
  8. package/framework/agents/plan/architect.md +2 -2
  9. package/framework/agents/plan/detail.md +4 -4
  10. package/framework/agents/plan/phases.md +2 -2
  11. package/framework/agents/plan/tasks.md +2 -2
  12. package/framework/agents/plan/ux.md +2 -2
  13. package/framework/agents/quality/qa-implementation.md +11 -10
  14. package/framework/agents/quality/qa-planning.md +3 -3
  15. package/framework/agents/quality/qa-visual.md +1 -1
  16. package/framework/config.yaml +3 -3
  17. package/framework/constitution.md +18 -18
  18. package/framework/context/protocols.md +1 -1
  19. package/framework/context/quality.md +1 -1
  20. package/framework/context/root.md +4 -4
  21. package/framework/data/entity-registry.yaml +1 -1
  22. package/framework/domains/agents/orchestrator.yaml +2 -2
  23. package/framework/domains/constitution.yaml +1 -1
  24. package/framework/hooks/advance-trigger.js +4 -6
  25. package/framework/hooks/git-push-authority.js +45 -37
  26. package/framework/hooks/mode-governance.js +149 -40
  27. package/framework/hooks/model-governance.js +13 -20
  28. package/framework/hooks/prism-engine.js +74 -92
  29. package/framework/hooks/reasoning-escalator.js +23 -40
  30. package/framework/hooks/session-digest.js +12 -13
  31. package/framework/hooks/session-reader.js +224 -0
  32. package/framework/hooks/session-writer.js +195 -0
  33. package/framework/hooks/team-quality-gate.js +34 -24
  34. package/framework/i18n/en.yaml +2 -2
  35. package/framework/i18n/es.yaml +2 -2
  36. package/framework/i18n/fr.yaml +2 -2
  37. package/framework/i18n/pt.yaml +2 -2
  38. package/framework/intelligence/context-engine.md +4 -4
  39. package/framework/intelligence/memory-layer.md +1 -1
  40. package/framework/manifest.json +129 -119
  41. package/framework/manifest.sig +1 -1
  42. package/framework/orchestrator/chati-router.js +252 -25
  43. package/framework/orchestrator/chati.md +238 -70
  44. package/framework/schemas/session.schema.json +1 -1
  45. package/framework/tasks/orchestrator-deviation.md +1 -1
  46. package/framework/tasks/orchestrator-escalate.md +1 -1
  47. package/framework/tasks/orchestrator-handoff.md +6 -6
  48. package/framework/tasks/orchestrator-health.md +5 -9
  49. package/framework/tasks/orchestrator-mode-switch.md +3 -7
  50. package/framework/tasks/orchestrator-resume.md +10 -14
  51. package/framework/tasks/orchestrator-route.md +3 -3
  52. package/framework/tasks/orchestrator-spawn-terminal.md +1 -1
  53. package/framework/tasks/orchestrator-status.md +9 -9
  54. package/framework/tasks/orchestrator-suggest-mode.md +1 -1
  55. package/framework/tasks/qa-impl-consolidate.md +2 -2
  56. package/framework/tasks/qa-impl-performance-test.md +4 -4
  57. package/framework/tasks/qa-impl-regression-check.md +4 -4
  58. package/framework/tasks/qa-impl-sast-scan.md +1 -1
  59. package/framework/tasks/qa-impl-test-execute.md +1 -1
  60. package/framework/tasks/qa-impl-verdict.md +2 -2
  61. package/framework/tasks/qa-planning-consolidate.md +3 -3
  62. package/framework/tasks/qa-planning-coverage-plan.md +2 -2
  63. package/framework/tasks/qa-planning-gate-define.md +4 -4
  64. package/framework/tasks/qa-planning-risk-matrix.md +4 -4
  65. package/framework/tasks/qa-planning-test-strategy.md +2 -2
  66. package/node_modules/@chati/browser-capability/src/index.js +12 -2
  67. package/node_modules/@chati/planning/src/index.js +24 -4
  68. package/node_modules/@chati/provider-registry/src/index.js +11 -0
  69. package/node_modules/@chati/rail/src/index.js +1967 -83
  70. package/node_modules/@chati/release-lane/README.md +12 -8
  71. package/node_modules/@chati/release-lane/package.json +1 -1
  72. package/node_modules/@chati/release-lane/src/index.js +1426 -58
  73. package/node_modules/@chati/review-council/src/index.js +63 -0
  74. package/node_modules/@chati/tracking-clickup/README.md +13 -0
  75. package/node_modules/@chati/tracking-clickup/src/index.js +690 -30
  76. package/package-artifact-manifest.json +1 -0
  77. package/package-artifact-manifest.sig +1 -0
  78. package/package.json +16 -7
  79. package/scripts/verify-real-harness-e2e.js +1581 -0
  80. package/src/config/framework-adapter.js +4 -4
  81. package/src/installer/core.js +148 -53
  82. package/src/installer/manifest.js +140 -9
  83. package/src/installer/package-artifact.js +249 -0
  84. package/src/installer/templates.js +65 -20
  85. package/src/installer-v2/catalog-client.js +531 -23
  86. package/src/installer-v2/index.js +91 -34
  87. package/src/installer-v2/installation-authority.js +327 -0
  88. package/src/installer-v2/provider-executable.js +235 -0
  89. package/src/installer-v2/wizard-installation.js +1 -1
  90. package/src/orchestrator/browser-runtime.js +44 -13
  91. package/src/orchestrator/cli.js +1545 -174
  92. package/src/orchestrator/clickup-projection.js +43 -1
  93. package/src/orchestrator/clickup-runtime.js +355 -39
  94. package/src/orchestrator/doctor.js +16 -3
  95. package/src/orchestrator/index.js +16 -0
  96. package/src/orchestrator/planning-runtime.js +20 -2
  97. package/src/orchestrator/rail-adjudication-evidence.js +234 -0
  98. package/src/orchestrator/rail-evidence-authority.js +147 -0
  99. package/src/orchestrator/rail-execution-evidence.js +45 -0
  100. package/src/orchestrator/rail-runtime.js +836 -56
  101. package/src/orchestrator/release-runtime.js +65 -6
  102. package/src/orchestrator/review-runtime.js +186 -41
  103. package/src/orchestrator/runtime-installation-v2.js +236 -20
  104. package/src/orchestrator/session-manager.js +1167 -53
  105. package/src/terminal/adapters/claude-adapter.js +3 -1
  106. package/src/terminal/adapters/codex-adapter.js +2 -0
  107. package/src/terminal/adapters/grok-adapter.js +7 -4
  108. package/src/terminal/handoff-parser.js +19 -1
  109. package/src/terminal/prompt-builder.js +9 -1
  110. package/src/terminal/provider-preflight.js +36 -3
  111. package/src/terminal/rail-execution-worktree.js +213 -0
  112. package/src/terminal/rail-prompts.js +169 -0
  113. package/src/terminal/rail-readonly-workspace.js +324 -0
  114. package/src/terminal/run-agent.js +384 -24
  115. package/src/terminal/run-parallel.js +5 -0
  116. package/src/terminal/run-rail-adjudication.js +323 -0
  117. package/src/terminal/run-rail-review.js +291 -0
  118. package/src/terminal/run-rail-rework.js +325 -0
  119. package/src/terminal/run-rail-task.js +380 -0
  120. package/src/terminal/run-team.js +5 -0
  121. package/src/terminal/spawner.js +1225 -77
  122. package/src/wizard/index.js +3 -2
@@ -68,7 +68,7 @@ installer:
68
68
  created_framework: "Created chati.dev/ system directory (agents, templates, workflows)"
69
69
  created_commands: "Created .claude/commands/ (thin router)"
70
70
  installed_constitution: "Installed Constitution (Articles I-XXV)"
71
- created_session: "Created session.yaml schema"
71
+ created_session: "Created canonical session schema"
72
72
  created_claude_md: "Created provider-native context files"
73
73
  configured_mcps: "Configured MCPs:"
74
74
  validating: "Validating installation..."
@@ -160,7 +160,7 @@ features:
160
160
 
161
161
  errors:
162
162
  session_corrupted: "Session file appears corrupted. Attempting recovery..."
163
- handoff_missing: "Handoff not found. Using session.yaml + .chati/project-context.md as fallback."
163
+ handoff_missing: "Handoff not found. Run router recovery and stop if canonical state is invalid."
164
164
  agent_failed: "Agent failed after 3 attempts. Escalating to user."
165
165
  mcp_required: "Required MCP '{mcp}' is not configured. Install instructions:"
166
166
  mcp_optional: "Optional MCP '{mcp}' not configured. Skipping related functionality."
@@ -68,7 +68,7 @@ installer:
68
68
  created_framework: "Creado directorio del sistema chati.dev/ (agentes, templates, workflows)"
69
69
  created_commands: "Creado .claude/commands/ (enrutador)"
70
70
  installed_constitution: "Instalada Constitucion (Artículos I-XXV)"
71
- created_session: "Creado schema session.yaml"
71
+ created_session: "Creado esquema de sesion canonico"
72
72
  created_claude_md: "Creados archivos de contexto nativos de los providers"
73
73
  configured_mcps: "MCPs configurados:"
74
74
  validating: "Validando instalacion..."
@@ -160,7 +160,7 @@ features:
160
160
 
161
161
  errors:
162
162
  session_corrupted: "Archivo de sesion parece corrupto. Intentando recuperacion..."
163
- handoff_missing: "Handoff no encontrado. Usando session.yaml + .chati/project-context.md como respaldo."
163
+ handoff_missing: "Handoff no encontrado. Ejecute la recuperacion mediante el router y detengase si el estado canonico no es valido."
164
164
  agent_failed: "Agente fallo despues de 3 intentos. Escalando al usuario."
165
165
  mcp_required: "MCP requerido '{mcp}' no esta configurado. Instrucciones de instalacion:"
166
166
  mcp_optional: "MCP opcional '{mcp}' no configurado. Omitiendo funcionalidad relacionada."
@@ -68,7 +68,7 @@ installer:
68
68
  created_framework: "Cree le repertoire du systeme chati.dev/ (agents, templates, workflows)"
69
69
  created_commands: "Cree .claude/commands/ (routeur)"
70
70
  installed_constitution: "Installee la Constitution (Articles I-XXV)"
71
- created_session: "Cree le schema session.yaml"
71
+ created_session: "Cree le schema de session canonique"
72
72
  created_claude_md: "Fichiers de contexte natifs des providers crees"
73
73
  configured_mcps: "MCPs configures:"
74
74
  validating: "Validation de l'installation..."
@@ -160,7 +160,7 @@ features:
160
160
 
161
161
  errors:
162
162
  session_corrupted: "Le fichier de session semble corrompu. Tentative de recuperation..."
163
- handoff_missing: "Passation non trouvee. Utilisation de session.yaml + .chati/project-context.md comme repli."
163
+ handoff_missing: "Passation non trouvee. Executez la recuperation via le routeur et arretez si l'etat canonique est invalide."
164
164
  agent_failed: "L'agent a echoue apres 3 tentatives. Escalade vers l'utilisateur."
165
165
  mcp_required: "MCP requis '{mcp}' n'est pas configure. Instructions d'installation:"
166
166
  mcp_optional: "MCP optionnel '{mcp}' non configure. Fonctionnalite associee ignoree."
@@ -68,7 +68,7 @@ installer:
68
68
  created_framework: "Criado diretorio do sistema chati.dev/ (agentes, templates, workflows)"
69
69
  created_commands: "Criado .claude/commands/ (roteador)"
70
70
  installed_constitution: "Instalada Constituicao (Artigos I-XXV)"
71
- created_session: "Criado schema session.yaml"
71
+ created_session: "Criado schema de sessao canonico"
72
72
  created_claude_md: "Criados arquivos de contexto nativos dos providers"
73
73
  configured_mcps: "MCPs configurados:"
74
74
  validating: "Validando instalacao..."
@@ -160,7 +160,7 @@ features:
160
160
 
161
161
  errors:
162
162
  session_corrupted: "Arquivo de sessao parece corrompido. Tentando recuperacao..."
163
- handoff_missing: "Handoff nao encontrado. Usando session.yaml + .chati/project-context.md como fallback."
163
+ handoff_missing: "Handoff nao encontrado. Execute a recuperacao pelo router e pare se o estado canonico for invalido."
164
164
  agent_failed: "Agente falhou apos 3 tentativas. Escalando para o usuario."
165
165
  mcp_required: "MCP obrigatorio '{mcp}' nao esta configurado. Instrucoes de instalacao:"
166
166
  mcp_optional: "MCP opcional '{mcp}' nao configurado. Pulando funcionalidade relacionada."
@@ -36,7 +36,7 @@ The orchestrator injects context through 6 hierarchical layers:
36
36
  | **L0** | Constitution | `chati.dev/constitution.md` (Articles I-XXV) | ALWAYS (non-negotiable) |
37
37
  | **L1** | Mode + Global | `config.yaml` + mode governance (planning/build/deploy) | ALWAYS |
38
38
  | **L2** | Agent Scope | `chati.dev/agents/{agent}/` — mission, inputs, outputs, criteria | When agent is active |
39
- | **L3** | Pipeline State | `.chati/session.yaml` pipeline position, scores, backlog | When session is active |
39
+ | **L3** | Pipeline State | Router-validated context: pipeline position, scores, backlog | When session is active |
40
40
  | **L4** | Task Context | Active artifact + previous agent's handoff | When task is active |
41
41
  | **L5** | Keywords | `chati.dev/domains/keywords/` — dynamic rules from user prompt | DEPLETED + CRITICAL only |
42
42
 
@@ -130,7 +130,7 @@ When context is compacted by the IDE (PreCompact event), the orchestrator contin
130
130
 
131
131
  1. Capture session digest (decisions, errors, patterns)
132
132
  2. Persist all HOT+WARM memories to `.chati/memories/`
133
- 3. Store continuation state in `.chati/session.yaml`
133
+ 3. Return continuation state to the orchestrator for persistence through the canonical session manager
134
134
  4. After compaction: bracket resets to FRESH
135
135
  5. Orchestrator loads HOT memories for current agent
136
136
  6. Rebuilds `<chati-context>` with FRESH bracket
@@ -154,7 +154,7 @@ If Smart Continuation is insufficient, the orchestrator spawns a new session:
154
154
  | Multiple compactions | 3+ in single session | Context is churning too fast |
155
155
  | Post-compact quality | Agent score drops >15% | Compaction lost critical context |
156
156
  | Critical bracket persists | CRITICAL for 3+ consecutive interactions | Recovery not working |
157
- | Echo loop detected | 2+ echo entries in the current phase (session.yaml decision_trail) | The model is looping; a fresh session breaks the cycle |
157
+ | Echo loop detected | 2+ echo entries in the validated current-phase `decision_trail` | The model is looping; a fresh session breaks the cycle |
158
158
  | Agent handoff pending | Current agent done, next agent needs fresh context | Clean start is better |
159
159
 
160
160
  **BUILD-phase reset preference:** During the BUILD phase, when the active agent reaches DEPLETED or CRITICAL, the orchestrator defaults to Level 2 (Autonomous Session Spawn, a clean reset) rather than Level 1 (Smart Continuation, in-place compaction). Compaction preserves continuity but not a clean slate, so the model can keep wrapping up work prematurely while code is being written; a reset carrying a full handoff is safer there. Level 1 stays the default for the MODERATE bracket and for the DISCOVER and PLAN phases.
@@ -213,4 +213,4 @@ harness consumes it through its own native context file or import mechanism.
213
213
  No provider context file is generated from another provider's file.
214
214
 
215
215
  ### Cross-Provider Handoff
216
- Handoff format is identical regardless of which provider executed the agent. The two-layer structure (Article VIII) ensures any provider can read any handoff. Session state in `.chati/session.yaml` is the single source of truth all providers read from and write to the same session file.
216
+ Handoff format is identical regardless of which provider executed the agent. The two-layer structure (Article VIII) ensures any provider can read any handoff. Canonical session state is exposed to providers only through validated router and prompt snapshots; all mutations go through the session manager.
@@ -2,7 +2,7 @@
2
2
 
3
3
  ## Purpose
4
4
 
5
- The Memory Layer adds persistent knowledge to the Chati.dev system. While session state (agent scores, pipeline position) is stored in `.chati/session.yaml`, the Memory Layer captures **knowledge** — decisions, patterns, errors, and lessons — that persists across sessions.
5
+ The Memory Layer adds persistent knowledge to the Chati.dev system. While the canonical session manager stores session state (agent scores, pipeline position) in `.chati/session.yaml`, the Memory Layer captures **knowledge** — decisions, patterns, errors, and lessons — that persists across sessions.
6
6
 
7
7
  ---
8
8
 
@@ -1,29 +1,29 @@
1
1
  {
2
- "createdAt": "2026-08-28T12:19:47.274Z",
2
+ "createdAt": "2026-09-01T15:25:04.991Z",
3
3
  "files": {
4
4
  "agents/build/dev.md": {
5
- "hash": "f0dd9bcdf44c57fdf64beca65d3617f0f24467b2f6edc9c0577d721b4922977a",
6
- "size": 64737,
5
+ "hash": "81d82d99b9f7bc1008ea96e49c2bd420c0e128ee665cb5a7da5b6e2b2c2a6348",
6
+ "size": 64896,
7
7
  "type": "md"
8
8
  },
9
9
  "agents/deploy/devops.md": {
10
- "hash": "a9f64ea3b9b48ea74884a2d5853a7ca61013e3943f56ac8c7c3346706d53c1ec",
11
- "size": 17801,
10
+ "hash": "d3a1982680deff00ed04f1230fa2add6149180eb5dfe8198883f6e3c6be04d00",
11
+ "size": 17932,
12
12
  "type": "md"
13
13
  },
14
14
  "agents/discover/brief.md": {
15
- "hash": "45fa58fe280e13a8f07784d63c6b31c593b7cca632634e9eef3d0231b750647d",
16
- "size": 26190,
15
+ "hash": "264b216a2c57743ec610e888290752fa72757b5ace17fb8fc24b3bc9188b6791",
16
+ "size": 26305,
17
17
  "type": "md"
18
18
  },
19
19
  "agents/discover/brownfield-wu.md": {
20
- "hash": "3a30f4aae5658d808d5c8ce0c61afec9acd14cdff3c1ed10d13b0b0b7f5ca1b5",
21
- "size": 18083,
20
+ "hash": "a462b00aca9b067895d351fe1a9a7eb7964a8d1f1ec2cff87daa2b75f2290d95",
21
+ "size": 18211,
22
22
  "type": "md"
23
23
  },
24
24
  "agents/discover/greenfield-wu.md": {
25
- "hash": "4776a8ab557e8179742224a2b0b3af8fe84684d9ebfe04575c702b1553aa988a",
26
- "size": 17267,
25
+ "hash": "d9d6a70b8eb92194642dba2e08848513b87d20e14068e2376a2e81cbcdb3a216",
26
+ "size": 17363,
27
27
  "type": "md"
28
28
  },
29
29
  "agents/plan/architect-data-engineer.md": {
@@ -37,23 +37,23 @@
37
37
  "type": "md"
38
38
  },
39
39
  "agents/plan/architect.md": {
40
- "hash": "5a8727907d025f0825c27ef07044afe317b31b4fbb574ab293374b5948cefa80",
41
- "size": 13344,
40
+ "hash": "8f81653e2b34ed873b2b0605528dbc866fba3485ae7af7a969f089e1c4af332b",
41
+ "size": 13366,
42
42
  "type": "md"
43
43
  },
44
44
  "agents/plan/detail.md": {
45
- "hash": "968ad01a70e11761cec983b8b560638307c866656c1f5fb7f7a6094405d77535",
46
- "size": 19207,
45
+ "hash": "335e7cda417273154ea290d0b3e6ef18e9aa27cfb33ef3f836c5f28f7b6c226c",
46
+ "size": 19272,
47
47
  "type": "md"
48
48
  },
49
49
  "agents/plan/phases.md": {
50
- "hash": "898ac1cda4a4583d8fbc81d9232d6784035c72877b41a42823d17d9d763be015",
51
- "size": 15642,
50
+ "hash": "039a108666679dea9fbc357e84be6b88d479e79dcf62d0f34ba9f1e437822716",
51
+ "size": 15747,
52
52
  "type": "md"
53
53
  },
54
54
  "agents/plan/tasks.md": {
55
- "hash": "e0b2263d58bf6ddaf480deb588e8612e9464d18f7ac0ef0edb2355f21bae2280",
56
- "size": 27674,
55
+ "hash": "6aab3a60f0886daf0f13d435f5fb8b133c7ffb6aa441f3b7267582045d6cf5b4",
56
+ "size": 27779,
57
57
  "type": "md"
58
58
  },
59
59
  "agents/plan/ux-brand-architect.md": {
@@ -72,23 +72,23 @@
72
72
  "type": "md"
73
73
  },
74
74
  "agents/plan/ux.md": {
75
- "hash": "d52bf1780d24893a1c9154adf1ab563d60d2ba3424ada6113b6ad7f4b5fe87bd",
76
- "size": 15307,
75
+ "hash": "b31cc0567c736371775a9619f78a139dec26ce813e1f31ed15619a29a8f45e5f",
76
+ "size": 15329,
77
77
  "type": "md"
78
78
  },
79
79
  "agents/quality/qa-implementation.md": {
80
- "hash": "25d35a5e4cbb5ca9fdd0a9043b98383308e945a85949644f04e66c43448358e7",
81
- "size": 40202,
80
+ "hash": "218063fc3adf6bdcfb6ca4a432d212a7c4c789c48cb24d648d6507f905dac1e7",
81
+ "size": 40322,
82
82
  "type": "md"
83
83
  },
84
84
  "agents/quality/qa-planning.md": {
85
- "hash": "9984fd3b82efcc3eb8efc07be0d06c0ac8850c4c91464e78a3dcdcd1fb969a59",
86
- "size": 25635,
85
+ "hash": "aa06bccbab9fdbe20b2303cb46b1a5c988274f6063efeb30f1b391e646b6ddbd",
86
+ "size": 25736,
87
87
  "type": "md"
88
88
  },
89
89
  "agents/quality/qa-visual.md": {
90
- "hash": "8a57716766dc1f9ebb2efdbbd211e607a26ab7374be50a59e224a577ef594b63",
91
- "size": 21609,
90
+ "hash": "922faba65034dbd3b1a5d3a6792e44b8c028f08c05a3e70025bbe0799b11ec98",
91
+ "size": 21704,
92
92
  "type": "md"
93
93
  },
94
94
  "agents/shared/visualizer.md": {
@@ -97,13 +97,13 @@
97
97
  "type": "md"
98
98
  },
99
99
  "config.yaml": {
100
- "hash": "66f9a59f21944288544a7aeb5bb0316c3c65be1162faa0db896f5346d8f89877",
100
+ "hash": "f69b77faca7351bef3c72a4726e5480590c95cd7140de13605695b515817631d",
101
101
  "size": 2638,
102
102
  "type": "yaml"
103
103
  },
104
104
  "constitution.md": {
105
- "hash": "8e87dda77feca226d4cc418834e8db2d8f5b79d6d79b0554c962801ca02cc264",
106
- "size": 65539,
105
+ "hash": "094a3b7da73fcb7bf8de016f17571597315131c8cb15e9e82090654695d65dee",
106
+ "size": 66166,
107
107
  "type": "md"
108
108
  },
109
109
  "context/governance.md": {
@@ -112,23 +112,23 @@
112
112
  "type": "md"
113
113
  },
114
114
  "context/protocols.md": {
115
- "hash": "a80110e083cd4e301173353fa2748e096bdb7a09ffad9e6302ba5075fbf11cee",
116
- "size": 1410,
115
+ "hash": "163fc26be1d9c1a2db8eaf938c48a9ad38f7b0cfb6323cd60ab2553fe9cab984",
116
+ "size": 1443,
117
117
  "type": "md"
118
118
  },
119
119
  "context/quality.md": {
120
- "hash": "d6cb70d274425b4385a63bd67c217038de9c12992d973b16000b370442905022",
121
- "size": 2247,
120
+ "hash": "2dca8a386d666742acfe945aae0391a1d9d8b58576a1d2d9a96652c5aafa4ebc",
121
+ "size": 2284,
122
122
  "type": "md"
123
123
  },
124
124
  "context/root.md": {
125
- "hash": "a226a365f64a28bf952c399dcc97962202bd195fa2a75fd4b894293a1503569d",
126
- "size": 1333,
125
+ "hash": "34b2382e937e931b98d8055d8aea58c499191a7779293ec163778e35110ff4b9",
126
+ "size": 1381,
127
127
  "type": "md"
128
128
  },
129
129
  "data/entity-registry.yaml": {
130
- "hash": "2b71806fdca289588fb2e3817c11b2674b17854da901a2536c6e967af51cc8d4",
131
- "size": 34613,
130
+ "hash": "551139f7e537265fbf697420e0e5f4ed77125ca101473499683922f7642b5922",
131
+ "size": 34611,
132
132
  "type": "yaml"
133
133
  },
134
134
  "data/model-limits.json": {
@@ -177,8 +177,8 @@
177
177
  "type": "yaml"
178
178
  },
179
179
  "domains/agents/orchestrator.yaml": {
180
- "hash": "4c515e592ed43499c2f77aa324569e2f145eb6e6005ef5a6a9b35a39d7bdcfa8",
181
- "size": 1848,
180
+ "hash": "a6e4c32f3b28a4fbaff3cb05f59875e481925a32568d9ec9be13f97c45788e90",
181
+ "size": 1900,
182
182
  "type": "yaml"
183
183
  },
184
184
  "domains/agents/phases.yaml": {
@@ -212,8 +212,8 @@
212
212
  "type": "yaml"
213
213
  },
214
214
  "domains/constitution.yaml": {
215
- "hash": "9f609909b33b2fdd7514b4e4ce8b57c72b5618604376ef79dd1d79e4969dbb04",
216
- "size": 7061,
215
+ "hash": "95316838af958b1300b778fa1ea0921136b0dea30c1fd93eb11d6920e12fac4e",
216
+ "size": 7073,
217
217
  "type": "yaml"
218
218
  },
219
219
  "domains/global.yaml": {
@@ -287,8 +287,8 @@
287
287
  "type": "yaml"
288
288
  },
289
289
  "hooks/advance-trigger.js": {
290
- "hash": "ba2f11d01ba15a73669ab956146d353ea364019ad4839c34256124f4eb589bc0",
291
- "size": 6704,
290
+ "hash": "88badc4b3af2b6c44d0b5d1bea103dfb24a238ca3593e258e5e20832b1291f79",
291
+ "size": 6572,
292
292
  "type": "js"
293
293
  },
294
294
  "hooks/brief-validator.js": {
@@ -302,8 +302,8 @@
302
302
  "type": "js"
303
303
  },
304
304
  "hooks/git-push-authority.js": {
305
- "hash": "cb296129155464438b7f3f8834eb9d62674c34c0ef12ccba8769cd2938da97d8",
306
- "size": 4666,
305
+ "hash": "f16fa2bcd8fce1ded721824ae865c2e2a3cb3b1d709e5fac536f6bf03c5d9d15",
306
+ "size": 5521,
307
307
  "type": "js"
308
308
  },
309
309
  "hooks/license-guard.js": {
@@ -312,13 +312,13 @@
312
312
  "type": "js"
313
313
  },
314
314
  "hooks/mode-governance.js": {
315
- "hash": "16eff90140f1df7ffd8cb15e5f16886a92c972c44c03b2b3999064239a72b69a",
316
- "size": 5248,
315
+ "hash": "af78db8c4cda6554cecafb328a798a81f437c0a53664b6b9539253f4dc5103c7",
316
+ "size": 8768,
317
317
  "type": "js"
318
318
  },
319
319
  "hooks/model-governance.js": {
320
- "hash": "656111144f24bba6b14fdad4a8a1c3a86f45d31cde90d4b80d19e6eac309b5ef",
321
- "size": 5901,
320
+ "hash": "9d4de95e9b64e982db49a48aa7a80f147528a423aede0afae5b738b737f424cd",
321
+ "size": 5638,
322
322
  "type": "js"
323
323
  },
324
324
  "hooks/package.json": {
@@ -332,8 +332,8 @@
332
332
  "type": "js"
333
333
  },
334
334
  "hooks/prism-engine.js": {
335
- "hash": "758ffbf60036aa6dced1ed90f2cc159de49225e67a4e97d1d8c98aa887f69908",
336
- "size": 19163,
335
+ "hash": "09db65c1bb0b1f0538e3f1bb38a2247df825fbf72a38e2ebedc45eabe60c008b",
336
+ "size": 18557,
337
337
  "type": "js"
338
338
  },
339
339
  "hooks/read-protection.js": {
@@ -342,8 +342,8 @@
342
342
  "type": "js"
343
343
  },
344
344
  "hooks/reasoning-escalator.js": {
345
- "hash": "6a49dff0361dab0a5911fc264c8b0a53414a919fa0a8ef84cf5323904713f180",
346
- "size": 14365,
345
+ "hash": "294713f00194cad1e3412207521a177b18871bf33bf1ecc917c8951a446fd4b4",
346
+ "size": 13617,
347
347
  "type": "js"
348
348
  },
349
349
  "hooks/reference-trigger.js": {
@@ -352,8 +352,18 @@
352
352
  "type": "js"
353
353
  },
354
354
  "hooks/session-digest.js": {
355
- "hash": "6b3856309b9dfc5366b8af80b36035c2dbaa5444ff71da1d230e0dfd58b53920",
356
- "size": 13129,
355
+ "hash": "17c59fc34609772da051456dd1a2634d087dc36b842430907f007049f8f48a10",
356
+ "size": 13098,
357
+ "type": "js"
358
+ },
359
+ "hooks/session-reader.js": {
360
+ "hash": "5f3033fa9d733f83e1aefa24d69ea1e7fd2907a39aaa7a5f92237e68945e56a3",
361
+ "size": 9823,
362
+ "type": "js"
363
+ },
364
+ "hooks/session-writer.js": {
365
+ "hash": "d04b4b28358beb298d1c26ec83e2a6f2645c3133e53b919c0817301068ecd8b0",
366
+ "size": 8836,
357
367
  "type": "js"
358
368
  },
359
369
  "hooks/settings.json": {
@@ -367,8 +377,8 @@
367
377
  "type": "js"
368
378
  },
369
379
  "hooks/team-quality-gate.js": {
370
- "hash": "85c7b3801310dca75c5bd3b940a1850e525ea738e5f655b54cad17caf6c22be4",
371
- "size": 7055,
380
+ "hash": "caea012a9e2b19870a5ca536af0f1a399595fa33c15ba43f7c156fdc7bf347cb",
381
+ "size": 7714,
372
382
  "type": "js"
373
383
  },
374
384
  "hooks/undercover-guard.js": {
@@ -377,23 +387,23 @@
377
387
  "type": "js"
378
388
  },
379
389
  "i18n/en.yaml": {
380
- "hash": "dbaf6e3da9820a933bd6b358e5dcce49057c7b34c7855d6f7f443833202f347a",
381
- "size": 8307,
390
+ "hash": "c669ce19c2916b1f6dbcf582c02d8a70bf99f0148d9e8b3ab06b4e76c1e9e75c",
391
+ "size": 8312,
382
392
  "type": "yaml"
383
393
  },
384
394
  "i18n/es.yaml": {
385
- "hash": "047a14e7fa763179002c265f2df3bf0e9a407d5fc8b8fac0ff05ae92562f11eb",
386
- "size": 8941,
395
+ "hash": "981d8e1c3c90a83b332b8c535fb4f1b01a3c06ad5999e7e90d639f6cf1000387",
396
+ "size": 8976,
387
397
  "type": "yaml"
388
398
  },
389
399
  "i18n/fr.yaml": {
390
- "hash": "8353e42d8124546109833a123143e905dbb976abe658259d3782aa5d1190d0b4",
391
- "size": 9090,
400
+ "hash": "8db26d19623b78c6d4fb095b3d274161deb65d8430b44d6dcd6d2d3e6ecf6377",
401
+ "size": 9114,
392
402
  "type": "yaml"
393
403
  },
394
404
  "i18n/pt.yaml": {
395
- "hash": "9286764e634c88b1cf8f49f9239d48ff5a2bbef7fe207d61d69d70c501bdca8b",
396
- "size": 8812,
405
+ "hash": "336ab3e8eb49a037f4304a821295c49bb268c6f3278a25cc1f9b2abcffc05c94",
406
+ "size": 8831,
397
407
  "type": "yaml"
398
408
  },
399
409
  "intelligence/confidence.yaml": {
@@ -402,8 +412,8 @@
402
412
  "type": "yaml"
403
413
  },
404
414
  "intelligence/context-engine.md": {
405
- "hash": "1c2bfda6228a6352807d0a0fb2357a3771633e1d27e70465f0031784dfe83fde",
406
- "size": 10065,
415
+ "hash": "df036a14c1d4d17ff4eb9cb42b7ec3e40e2e45de03b0209487b164ccf1c37506",
416
+ "size": 10125,
407
417
  "type": "md"
408
418
  },
409
419
  "intelligence/decision-engine.md": {
@@ -422,8 +432,8 @@
422
432
  "type": "md"
423
433
  },
424
434
  "intelligence/memory-layer.md": {
425
- "hash": "e5452bf1417a92530e4b945a93240d943a67e02c7500377bcc9d2e67ba4db258",
426
- "size": 9384,
435
+ "hash": "87bd4541e14f785903bbdc6e8f3c0caefcb0fd4e301907d80cb94d7157b80fe8",
436
+ "size": 9411,
427
437
  "type": "md"
428
438
  },
429
439
  "intelligence/patterns.yaml": {
@@ -462,8 +472,8 @@
462
472
  "type": "yaml"
463
473
  },
464
474
  "orchestrator/chati-router.js": {
465
- "hash": "402033380d5becfb73d77c4c617740e7f32b2abf1c42bf6b9e751b97bd32c876",
466
- "size": 23194,
475
+ "hash": "dec4d4eb7e591e232613ab4b9177adbb54866ba2b5568b6456cf72ba8f37f6fc",
476
+ "size": 34521,
467
477
  "type": "js"
468
478
  },
469
479
  "orchestrator/chati-update.md": {
@@ -472,8 +482,8 @@
472
482
  "type": "md"
473
483
  },
474
484
  "orchestrator/chati.md": {
475
- "hash": "b0e7395fa4ae0119e8df721e0f97c04d740c119be5f260673aea14b5672e96ff",
476
- "size": 46948,
485
+ "hash": "ed36667e35a650e8b46837cacb2d6e80f334befe0ea4aae0a4d5476134e561b4",
486
+ "size": 58200,
477
487
  "type": "md"
478
488
  },
479
489
  "package.json": {
@@ -857,8 +867,8 @@
857
867
  "type": "json"
858
868
  },
859
869
  "schemas/session.schema.json": {
860
- "hash": "553b5bf78761f8dd50f98b1e638d42c1bde473d1c0e562b087b3f26cc8c3585b",
861
- "size": 19979,
870
+ "hash": "3b2d8f7fa2576041cd64a00947e87db48c8d8b7965f82bdedb1108b97588e97b",
871
+ "size": 19999,
862
872
  "type": "json"
863
873
  },
864
874
  "schemas/task.schema.json": {
@@ -1077,28 +1087,28 @@
1077
1087
  "type": "md"
1078
1088
  },
1079
1089
  "tasks/orchestrator-deviation.md": {
1080
- "hash": "edf56d6692d6e98ffaf6913d91b8d4ed291175f6f881db2559d05d66922a240c",
1081
- "size": 7860,
1090
+ "hash": "43746b10ea6b86535453c51b331f8a2550ac8395c79b12f845c57f6b30fd134f",
1091
+ "size": 7864,
1082
1092
  "type": "md"
1083
1093
  },
1084
1094
  "tasks/orchestrator-escalate.md": {
1085
- "hash": "f1283368f60cd5cef6ceeda283efb1bd790badca1540f5883ef4e9eb9f22a984",
1086
- "size": 8285,
1095
+ "hash": "1da323bac4bc71d5571798530046b469123866ec675aa0ac0de50562a40c6a48",
1096
+ "size": 8289,
1087
1097
  "type": "md"
1088
1098
  },
1089
1099
  "tasks/orchestrator-handoff.md": {
1090
- "hash": "d4cb4532f6e9eb1cf5b9d9cb04edf80b2be5869dad84d7ca1de23b46cb31b931",
1091
- "size": 7610,
1100
+ "hash": "4ba402252b54f7f5a8ed3348357d5e7d0278cacfc948c8c145fc6f8dba54bba4",
1101
+ "size": 7785,
1092
1102
  "type": "md"
1093
1103
  },
1094
1104
  "tasks/orchestrator-health.md": {
1095
- "hash": "e269fd97786a714af5680ed52366334aeb3853fab1281589f99402fcff179344",
1096
- "size": 9158,
1105
+ "hash": "79eef147c4b67d4abcad1576158b15c1d63ac61ba0a931c4619810db794dce15",
1106
+ "size": 9265,
1097
1107
  "type": "md"
1098
1108
  },
1099
1109
  "tasks/orchestrator-mode-switch.md": {
1100
- "hash": "d878eedcd2d82c4374217ac458d8246a1946b8f606886618cc57c892b2a41143",
1101
- "size": 8179,
1110
+ "hash": "8d865f307cfecbd5e9687c3bbf9fb95f4e03f6f822709ab543689f7a1df25e1f",
1111
+ "size": 8336,
1102
1112
  "type": "md"
1103
1113
  },
1104
1114
  "tasks/orchestrator-preview.md": {
@@ -1107,28 +1117,28 @@
1107
1117
  "type": "md"
1108
1118
  },
1109
1119
  "tasks/orchestrator-resume.md": {
1110
- "hash": "2db1e02278346f78081ac7bf4686af075e05f45f2fcebcdde3ad5f49d1e03e67",
1111
- "size": 5593,
1120
+ "hash": "969673bf68d25868de31188c9dbddd54e4c5ffc8f833bf68841157252e9cc936",
1121
+ "size": 5752,
1112
1122
  "type": "md"
1113
1123
  },
1114
1124
  "tasks/orchestrator-route.md": {
1115
- "hash": "58af6893da740569437cf7dea32732a184a794d0b02e8b9e23d8e0dfc71c82e5",
1116
- "size": 4968,
1125
+ "hash": "eedf21cd6424a9b0e705a0d5061f254052e61bd6c3a3d8ee57e25c42de0cba59",
1126
+ "size": 5191,
1117
1127
  "type": "md"
1118
1128
  },
1119
1129
  "tasks/orchestrator-spawn-terminal.md": {
1120
- "hash": "f892410e5dcd6d872a55e1c30da9c2158201e1ca3bb075c9417e0edec4ae1675",
1121
- "size": 9685,
1130
+ "hash": "e48a0a4783a7640fcc0c57bae9c3d925664b67187266f7f583a88259d3ee2c8a",
1131
+ "size": 9689,
1122
1132
  "type": "md"
1123
1133
  },
1124
1134
  "tasks/orchestrator-status.md": {
1125
- "hash": "150070902896552c89b3dbe4184bfa94d04b4089d7131d9c27ccb76739ff9890",
1126
- "size": 7583,
1135
+ "hash": "28d91352dbd2063906e40fd0f028a9af2ee69191b0f8b61a2adf231623a2bc09",
1136
+ "size": 7916,
1127
1137
  "type": "md"
1128
1138
  },
1129
1139
  "tasks/orchestrator-suggest-mode.md": {
1130
- "hash": "1469c13a9ba4204251c889929e1fd621bf43b135abf44f6620ac2f2b89f0159e",
1131
- "size": 9678,
1140
+ "hash": "f2117b881b569a6f1da1c263cacdb4948f2547f15d383aa1ffec881a1bf6b5bb",
1141
+ "size": 9682,
1132
1142
  "type": "md"
1133
1143
  },
1134
1144
  "tasks/phases-breakdown.md": {
@@ -1147,58 +1157,58 @@
1147
1157
  "type": "md"
1148
1158
  },
1149
1159
  "tasks/qa-impl-consolidate.md": {
1150
- "hash": "11044731cab3d4f32d87f80fa268f39084cf7bbe35371b704f2b070b9bf72f4f",
1151
- "size": 14424,
1160
+ "hash": "98f7376e5240f3ad064ad1cbff77aa6dd25b0f2b9016b83f275214adc0b7e89c",
1161
+ "size": 14534,
1152
1162
  "type": "md"
1153
1163
  },
1154
1164
  "tasks/qa-impl-performance-test.md": {
1155
- "hash": "3a2d6fe29fc243493a9ddbb40ad72d7165fee2e65b5343bb0281767cdac9fe31",
1156
- "size": 14559,
1165
+ "hash": "44e0785592f6cdfabc5326dcbc3a8c037c538cb17c31ccabe78130b73e5bab26",
1166
+ "size": 14611,
1157
1167
  "type": "md"
1158
1168
  },
1159
1169
  "tasks/qa-impl-regression-check.md": {
1160
- "hash": "29bddd6213be40f584894d5ffadca3ced04fac4024a5d00d1430c16c8370d9e2",
1161
- "size": 15167,
1170
+ "hash": "4fabaf5064c71989e950f23a85cedc7c638c45c0681beed2df9b72220c2120c1",
1171
+ "size": 15221,
1162
1172
  "type": "md"
1163
1173
  },
1164
1174
  "tasks/qa-impl-sast-scan.md": {
1165
- "hash": "887ee22ec4a21af4a19ed664caa7c5d3cd2079f022a0e53082bf41edd949348f",
1166
- "size": 13273,
1175
+ "hash": "0f031a8e44076de7916af4b52c79489f98b18a269848cd4567f2f651b5988c2c",
1176
+ "size": 13330,
1167
1177
  "type": "md"
1168
1178
  },
1169
1179
  "tasks/qa-impl-test-execute.md": {
1170
- "hash": "75f0150d5a6b731dfd85c07cf5bf03bbadb83577a7ed23f41cbc8fc7e4fec46f",
1171
- "size": 11245,
1180
+ "hash": "b45ac18e9ef32eeade47b9b3074e72c9cc904b86b9ee4e71b09c87150c93105e",
1181
+ "size": 11300,
1172
1182
  "type": "md"
1173
1183
  },
1174
1184
  "tasks/qa-impl-verdict.md": {
1175
- "hash": "33c3bb55bca4cf457208e44450b24385a6b6344324bc911561a38cfd1dc5cff8",
1176
- "size": 11623,
1185
+ "hash": "16ac00cc5980022e2a029b906c651fa60af24cd6ad0d9ab9b63f289208a3386e",
1186
+ "size": 11733,
1177
1187
  "type": "md"
1178
1188
  },
1179
1189
  "tasks/qa-planning-consolidate.md": {
1180
- "hash": "c83dfac29a749bfabe605c58541b1cea2ea8006b58571eef312d52f197a57f3b",
1181
- "size": 11536,
1190
+ "hash": "911e719b0e3a11f530e54347f63c7be754ea3978601b3e355c3db229f024175d",
1191
+ "size": 11674,
1182
1192
  "type": "md"
1183
1193
  },
1184
1194
  "tasks/qa-planning-coverage-plan.md": {
1185
- "hash": "e3926a8f3b4f59329385237c9d0e30839dfcabc3153cf335bf363111cbf3c185",
1186
- "size": 12135,
1195
+ "hash": "e54e8f9757da9afb2fe1065599fd5208d4ffe84c404551e2636dece24fab6445",
1196
+ "size": 12157,
1187
1197
  "type": "md"
1188
1198
  },
1189
1199
  "tasks/qa-planning-gate-define.md": {
1190
- "hash": "c83a8fd5b4fae6c9834bf5efccb51adc4c78beb805f955427e029cb496e31ca7",
1191
- "size": 11909,
1200
+ "hash": "4d36b59eefb5b0f0c53c09bb29b8628485205fcdab3284c8964b7a37359323fc",
1201
+ "size": 12047,
1192
1202
  "type": "md"
1193
1203
  },
1194
1204
  "tasks/qa-planning-risk-matrix.md": {
1195
- "hash": "dba920f07a43459bb89c47689ba934f97321fe297397fbf56cef8da824eca07e",
1196
- "size": 20402,
1205
+ "hash": "979e87fb506058788e5d4490c45053d8dcf37ed5642286ffd8d98b2777ea26c8",
1206
+ "size": 20476,
1197
1207
  "type": "md"
1198
1208
  },
1199
1209
  "tasks/qa-planning-test-strategy.md": {
1200
- "hash": "8b29635accb1373a0918eaab36d4997073daebb2d859d1dd6e3b39dfa91a9c65",
1201
- "size": 6959,
1210
+ "hash": "3340a06916781bb23f13fad8a16502bf23e42c6eb4d97d3aa7be1126f6881640",
1211
+ "size": 7011,
1202
1212
  "type": "md"
1203
1213
  },
1204
1214
  "tasks/tasks-acceptance-write.md": {
@@ -1352,5 +1362,5 @@
1352
1362
  "type": "yaml"
1353
1363
  }
1354
1364
  },
1355
- "version": "4.5.16"
1365
+ "version": "4.5.27"
1356
1366
  }
@@ -1 +1 @@
1
- pn6mHfeHH1rfvjDzyoAh8karYWO61dtxogu3tZgcmrb8Q07rgK3jUK0AS4ThiCqIVDiyGOpp0df6GjiZ1meGAg==
1
+ /CTkMqcBnUnMTmrHUa1RxsV7m5SMCIPk1uFIDPmf+0wOFJjz+N86M8Ej0vg+WlKaVAWx0j48LsOrLOEUvN4yDg==