chore: import upstream snapshot with attribution
Component Security Validation / Security Audit (push) Has been cancelled
Deploy to Cloudflare Pages / deploy (push) Has been cancelled

This commit is contained in:
wehub-resource-sync
2026-07-13 12:38:58 +08:00
commit bb5c75ce05
8824 changed files with 1946442 additions and 0 deletions
@@ -0,0 +1,7 @@
{
"description": "Configure Claude Code to use Amazon Bedrock for AI model access. Enables enterprise-grade deployment with AWS billing and compliance features, ideal for organizations already using AWS infrastructure.",
"env": {
"CLAUDE_CODE_USE_BEDROCK": "1",
"AWS_BEARER_TOKEN_BEDROCK": "your-bedrock-api-key"
}
}
@@ -0,0 +1,7 @@
{
"description": "Configure proxy settings for corporate network environments. Allows Claude Code to work behind corporate firewalls and proxy servers while maintaining security compliance with enterprise network policies.",
"env": {
"HTTP_PROXY": "http://proxy.company.com:8080",
"HTTPS_PROXY": "https://proxy.company.com:8080"
}
}
@@ -0,0 +1,6 @@
{
"description": "Add custom headers to API requests for specialized authentication or routing requirements. Useful for enterprise deployments with custom authentication systems or API gateways that require additional metadata.",
"env": {
"ANTHROPIC_CUSTOM_HEADERS": "X-Company-ID: your-company-id\\nX-Environment: production\\nX-API-Version: v1"
}
}
@@ -0,0 +1,17 @@
{
"description": "Connect Claude Code with Google Vertex AI to access Anthropic's Claude models through Google Cloud Platform. Automatically configures all available Claude models (Sonnet, Haiku, Opus) with enterprise-grade infrastructure, billing, and security. Requires: GCP project with Vertex AI API enabled, authenticated gcloud CLI, and model access approval in Model Garden.",
"env": {
"CLAUDE_CODE_USE_VERTEX": "1",
"CLOUD_ML_REGION": "global",
"ANTHROPIC_VERTEX_PROJECT_ID": "your-gcp-project-id",
"VERTEX_REGION_CLAUDE_3_5_SONNET": "global",
"VERTEX_REGION_CLAUDE_3_5_HAIKU": "global",
"VERTEX_REGION_CLAUDE_3_7_SONNET": "global",
"VERTEX_REGION_CLAUDE_4_0_OPUS": "global",
"VERTEX_REGION_CLAUDE_4_0_SONNET": "global",
"VERTEX_REGION_CLAUDE_4_1_OPUS": "global",
"VERTEX_REGION_CLAUDE_4_5_SONNET": "global",
"ANTHROPIC_MODEL": "claude-sonnet-4-5@20250929",
"ANTHROPIC_SMALL_FAST_MODEL": "claude-3-5-haiku@20241022"
}
}