From 94cfe8a5b6394571fe93ddd5a853add3a02f831e Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 21 Jan 2026 18:00:34 +0000 Subject: [PATCH] Add 5-second timeout to SessionStart hook Prevents the deepwork install command from hanging indefinitely during session startup. --- .claude/settings.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.claude/settings.json b/.claude/settings.json index 252c0209..6d481e13 100644 --- a/.claude/settings.json +++ b/.claude/settings.json @@ -104,7 +104,8 @@ "hooks": [ { "type": "command", - "command": "uv run deepwork install" + "command": "uv run deepwork install", + "timeout": 5000 } ] }