-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathautonomous.conf.example
More file actions
43 lines (37 loc) · 1.12 KB
/
autonomous.conf.example
File metadata and controls
43 lines (37 loc) · 1.12 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
#!/bin/bash
# autonomous.conf — Configuration for the Autonomous Dev Team pipeline.
# Copy this file to autonomous.conf and fill in your project values.
# Values can also be overridden via environment variables.
# === Project Identity ===
PROJECT_ID="my-project"
REPO="owner/repo-name"
REPO_OWNER="owner"
REPO_NAME="repo-name"
PROJECT_DIR="/path/to/project"
# === Agent Configuration ===
AGENT_CMD="claude"
AGENT_DEV_MODEL=""
AGENT_REVIEW_MODEL="sonnet"
# WARNING: 'bypassPermissions' grants the agent unrestricted shell access.
# Only use in trusted, sandboxed environments (containers, dedicated VMs).
# For production on shared hosts, use 'auto' or 'plan'.
AGENT_PERMISSION_MODE="auto"
# === GitHub Authentication ===
GH_AUTH_MODE="token"
DEV_AGENT_APP_ID=""
DEV_AGENT_APP_PEM=""
REVIEW_AGENT_APP_ID=""
REVIEW_AGENT_APP_PEM=""
DISPATCHER_APP_ID=""
DISPATCHER_APP_PEM=""
# === Concurrency ===
MAX_CONCURRENT=5
MAX_RETRIES=3
# === Dev Agent ===
DEV_SKILL_CMD="/autonomous-dev"
# === E2E Verification (optional) ===
E2E_ENABLED="false"
E2E_PREVIEW_URL_PATTERN=""
E2E_TEST_USER_EMAIL=""
E2E_TEST_USER_PASSWORD=""
E2E_SCREENSHOT_UPLOAD="false"