mirror of
https://github.com/davila7/claude-code-templates.git
synced 2026-09-19 01:30:23 +08:00
990982ffa0
- Introduced settings for Amazon Bedrock, Google Vertex AI, and corporate proxy configurations. - Added custom headers support for API requests. - Implemented API key helper for dynamic authentication token generation. - Restricted login methods to Claude.ai and Anthropic Console accounts. - Configured bash command execution timeouts and performance optimizations. - Enhanced privacy settings by disabling telemetry and non-essential traffic. - Established AWS credential management for Bedrock integration. - Allowed additional directory access and common git operations. - Created comprehensive permissions for development and read-only modes. - Developed various status line configurations for improved user experience.
8 lines
350 B
JSON
8 lines
350 B
JSON
{
|
|
"description": "Configure timeout settings for bash command execution. Prevents long-running commands from hanging indefinitely while allowing sufficient time for complex operations like builds and deployments.",
|
|
"env": {
|
|
"BASH_DEFAULT_TIMEOUT_MS": "120000",
|
|
"BASH_MAX_TIMEOUT_MS": "600000",
|
|
"BASH_MAX_OUTPUT_LENGTH": "100000"
|
|
}
|
|
} |