-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathenv.example
More file actions
39 lines (31 loc) · 1.69 KB
/
env.example
File metadata and controls
39 lines (31 loc) · 1.69 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
# SimulateDev Environment Configuration
# Copy this file to .env and fill in your actual API keys
# ===== LLM PROVIDER CONFIGURATION =====
# Choose your preferred LLM provider for running SimulateDev (generating PR messages, monitoring IDE status, etc.): "anthropic" or "openai"
# Default: anthropic
LLM_PROVIDER=anthropic
# Default model to use for each LLM provider
# all available models https://docs.litellm.ai/docs/models/models
ANTHROPIC_DEFAULT_MODEL=claude-sonnet-4-20250514
# ===== API KEYS =====
# Anthropic API Key for Claude models
# Get your key from: https://console.anthropic.com/
ANTHROPIC_API_KEY=your_anthropic_api_key_here
# Optional: GitHub Personal Access Token for pull request creation
# Create a token at: https://github.com/settings/tokens
# Required permissions: repo, pull_requests
# When provided, user name and email will be automatically fetched from GitHub
GITHUB_TOKEN=your_github_token_here
# Optional: Uncomment to configure git user for commits
# If both are provided: Uses your custom values (overrides GitHub account info)
# If only one is provided: Uses GitHub info for the missing value
# If neither is provided: Auto-detects from GitHub token (if available)
# GIT_USER_NAME="SimulateDev Bot"
# GIT_USER_EMAIL="simulatedev@example.com"
# Optional: Agent execution timeout in seconds (default: 600 = 10 minutes)
# This applies to all coding agents including CLI agents (Claude CLI, Gemini CLI) and GUI agents
# Increase for complex tasks, decrease for faster feedback
AGENT_TIMEOUT_SECONDS=600
# Optional: Save screenshots during agent execution for debugging (default: false)
# Set to true to save screenshots during IDE monitoring for troubleshooting
SAVE_SCREENSHOTS_FOR_DEBUG=false