forza 0.1.0

Autonomous GitHub issue runner — turns issues into pull requests
Documentation
[global]
repo = "joshrotenberg/claude-wrapper"
max_concurrency = 3
model = "claude-sonnet-4-6"
gate_label = "runner:ready"
branch_pattern = "automation/{issue}-{slug}"

[security]
authorization_level = "contributor"

[validation]
commands = [
    "cargo fmt --all -- --check",
    "cargo clippy --all-targets -- -D warnings",
    "cargo test --lib",
]

[routes.bugfix]
type = "issue"
label = "bug"
workflow = "bug"
concurrency = 1
poll_interval = 60

[routes.features]
type = "issue"
label = "enhancement"
workflow = "feature"
concurrency = 2
poll_interval = 300