-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathautoforge.example.yml
More file actions
66 lines (55 loc) · 1.68 KB
/
Copy pathautoforge.example.yml
File metadata and controls
66 lines (55 loc) · 1.68 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
# autoforge configuration
# Copy to autoforge.yml and customize for your project.
# Environment variables: ANTHROPIC_API_KEY, GITHUB_TOKEN
project_context: "My project — describe what your project does here"
work_dir: ".autoforge"
llm:
model: "claude-sonnet-4-20250514" # or claude-haiku-4-5-20251001 for cost savings
max_tokens: 8192
temperature: 0.3
survey:
arxiv_queries:
- "autonomous software development agent"
- "LLM code generation evaluation"
- "multi-agent software engineering"
arxiv_max_results: 10
github_topics:
- "ai-agent"
- "llm-agent"
- "code-generation"
github_days_lookback: 7
github_min_stars: 10
enable_llm_scoring: true
idea:
branch_factor: 3 # number of candidates per depth level
max_depth: 2 # tree search depth
implement:
max_files_per_cycle: 5
staging_enabled: true
test:
run_tests: true
timeout_seconds: 120
security:
max_file_chars: 8000
block_on_high: true
stage:
# deploy_command: "kubectl apply -f k8s/"
# smoke_test_commands:
# - "curl -f http://localhost:8080/health"
# - "pytest tests/smoke/ -v"
# health_check_command: "curl -f http://localhost:8080/ready"
# rollback_command: "kubectl rollout undo deployment/app"
strategy: "canary"
approval:
auto_approve_high_confidence: false # set true to skip human review for high-confidence changes
high_threshold: 0.85
medium_threshold: 0.60
loop:
interval_seconds: 1800 # 30 minutes between cycles
max_cycles: 100
max_consecutive_failures: 3
hooks:
enable_prompt_injection_check: true
enable_secret_leak_check: true
# blocked_patterns: # additional regex patterns to block
# - "custom-secret-pattern"