-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
17 lines (14 loc) · 1011 Bytes
/
Copy path.env.example
File metadata and controls
17 lines (14 loc) · 1011 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# ─── AI KEYS ──────────────────────────────────────────
ANTHROPIC_API_KEY=your_anthropic_key_here
# ─── GITHUB (optional — for opening PRs) ──────────────
# Create a token at: https://github.com/settings/tokens
# Required scopes: repo, pull_requests
GITHUB_TOKEN=your_github_token_here
# ─── AGENT CONFIG ─────────────────────────────────────
MAX_FILES_PER_RUN=20 # max files to review in one run
MAX_FILE_SIZE_KB=100 # skip files larger than this
DRY_RUN=true # false = actually open GitHub PRs
SEVERITY_THRESHOLD=medium # low | medium | high — min severity to report
# ─── REVIEW FOCUS (comma-separated, or "all") ─────────
# Options: bugs, security, performance, style, documentation, refactor
REVIEW_FOCUS=bugs,security,performance