diff --git a/src/AGENTS.md b/src/AGENTS.md index 61400acd9..2c839aa22 100644 --- a/src/AGENTS.md +++ b/src/AGENTS.md @@ -32,10 +32,10 @@ loadPluginConfig(directory, ctx) ``` createHooks() - ├─→ createCoreHooks() # 37 hooks + ├─→ createCoreHooks() # 39 hooks │ ├─ createSessionHooks() # 23: contextWindowMonitor, thinkMode, ralphLoop, modelFallback, runtimeFallback, noSisyphusGpt, noHephaestusNonGpt, anthropicEffort, intentGate... - │ ├─ createToolGuardHooks() # 10: commentChecker, rulesInjector, writeExistingFileGuard, jsonErrorRecovery, hashlineReadEnhancer... + │ ├─ createToolGuardHooks() # 12: commentChecker, rulesInjector, writeExistingFileGuard, jsonErrorRecovery, hashlineReadEnhancer... │ └─ createTransformHooks() # 4: claudeCodeHooks, keywordDetector, contextInjector, thinkingBlockValidator - ├─→ createContinuationHooks() # 7: todoContinuationEnforcer, atlas, stopContinuationGuard, ralphLoopActivator... + ├─→ createContinuationHooks() # 7: todoContinuationEnforcer, atlas, stopContinuationGuard, compactionContextInjector... └─→ createSkillHooks() # 2: categorySkillReminder, autoSlashCommand ``` diff --git a/src/plugin/AGENTS.md b/src/plugin/AGENTS.md index e1a3e69f6..805a8f621 100644 --- a/src/plugin/AGENTS.md +++ b/src/plugin/AGENTS.md @@ -27,7 +27,7 @@ Core glue layer. 20 source files assembling the 8 OpenCode hook handlers and com | `create-session-hooks.ts` | Session | 23 | | `create-tool-guard-hooks.ts` | Tool Guard | 12 | | `create-skill-hooks.ts` | Skill | 2 | -| `create-core-hooks.ts` | Aggregator | Session + Guard + Transform = 37 | +| `create-core-hooks.ts` | Aggregator | Session + Guard + Transform = 39 | ## SUPPORT FILES