67b48ee817
CI / benchmark-publish (push) Waiting to run
CI / lint (push) Successful in 25s
CI / build (push) Successful in 31s
CI / helm (push) Successful in 42s
CI / quality (push) Successful in 44s
CI / typecheck (push) Successful in 50s
CI / security (push) Successful in 1m0s
CI / benchmark-regression (push) Waiting to run
CI / unit_tests (push) Successful in 6m33s
CI / docker (push) Successful in 1m19s
CI / coverage (push) Successful in 10m19s
CI / e2e_tests (push) Successful in 17m25s
CI / integration_tests (push) Successful in 22m34s
CI / status-check (push) Successful in 1s
BREAKING CHANGE: This completely changes how PRs are handled in the system. Implementors now own their work from creation through merge, and reviewers focus solely on code quality assessment. Major changes: - issue-implementor: Adds absolute PR prioritization - no new issues until all PRs have workers. Dispatches workers in two modes: 'pr-fix' for existing PRs and 'issue-impl' for new issues. - ca-issue-worker: Now operates in dual mode. In 'pr-fix' mode, handles review feedback, CI fixes, and merging. In 'issue-impl' mode, no longer exits after PR creation - monitors the PR until merged. - ca-continuous-pr-reviewer: Simplified to ONLY dispatch code reviewers. Removed all fix, merge, and lifecycle management. Uses dynamic review focus areas to catch different types of issues. - ca-pr-self-reviewer: Removed ALL capabilities beyond code review. No longer fixes issues, merges PRs, or manages issue states. Provides actionable feedback using rotating focus areas. - ca-pr-checker: Clarified that it should only be invoked by ca-issue-worker, not by reviewers. Benefits: - No PR backlogs (absolute priority over new issues) - Full accountability (creator owns through merge) - Better reviews (focused on quality, not mechanics) - Context preservation (no handoffs between agents) - Cleaner history (amendments instead of fix commits) This ensures implementors are accountable for their work while reviewers provide high-quality, focused code reviews without operational overhead.