bash: Shorten bash tool default timeout to 10s.
diff --git a/claudetool/bash_test.go b/claudetool/bash_test.go
index 5091e84..45dd4fe 100644
--- a/claudetool/bash_test.go
+++ b/claudetool/bash_test.go
@@ -394,7 +394,7 @@
 			Background: false,
 		}
 		fgTimeout := foreground.timeout()
-		expectedFg := 1 * time.Minute
+		expectedFg := 10 * time.Second
 		if fgTimeout != expectedFg {
 			t.Errorf("Expected foreground default timeout to be %v, got %v", expectedFg, fgTimeout)
 		}