fix(hook): keep composite hooks backward compatible

Avoid AttributeError regressions when hooks define their own __init__ or when a CompositeHook wraps another composite.

Made-with: Cursor
This commit is contained in:
Xubin Ren
2026-04-08 23:41:31 +08:00
committed by Xubin Ren
parent d88be08bfd
commit 6bf101c79b
3 changed files with 32 additions and 1 deletions
+1
View File
@@ -27,6 +27,7 @@ class _SubagentHook(AgentHook):
"""Logging-only hook for subagent execution."""
def __init__(self, task_id: str) -> None:
super().__init__()
self._task_id = task_id
async def before_execute_tools(self, context: AgentHookContext) -> None: