-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.claude_code_config
More file actions
73 lines (63 loc) · 1.55 KB
/
.claude_code_config
File metadata and controls
73 lines (63 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# Claude Code Configuration for FuzeAgent Project
# AI Team Orchestration Platform
[project]
name = "FuzeAgent"
type = "ai_orchestration"
description = "AI team orchestration platform using Claude Code SDK and CrewAI"
[architecture]
style = "microservices"
containerization = "docker"
orchestration = "docker-compose"
production_orchestration = "kubernetes"
[languages]
primary = ["python", "typescript", "javascript"]
secondary = ["sql", "yaml", "dockerfile", "bash"]
[frameworks]
backend = "fastapi"
frontend = "react"
ai_framework = "crewai"
database = "postgresql"
message_queue = "rabbitmq"
cache = "redis"
vector_db = "pgvector"
[ai_specific]
# AI/ML development settings
default_model = "claude-3-5-sonnet-20241022"
agent_temperature = 0.7
enable_agent_memory = true
context_window = 8192
enable_claude_code_wrapper = true
[services]
# Service-specific configurations
orchestrator_port = 8000
ui_port = 3000
database_port = 5432
rabbitmq_port = 5672
redis_port = 6379
[development]
# Development workflow
auto_test = true
test_framework_python = "pytest"
test_framework_js = "jest"
linting = true
formatting = true
type_checking = true
[docker]
# Container preferences
base_python_image = "python:3.11-slim"
base_node_image = "node:18-alpine"
network_name = "ai-team-network"
use_multi_stage = true
non_root_user = true
[monitoring]
# Observability stack
metrics = "prometheus"
logging = "loki"
dashboards = "grafana"
tracing = "jaeger"
[security]
# Security configurations
jwt_auth = true
secrets_management = "environment"
api_rate_limiting = true
container_security = true