feat(kanban): wire dispatcher to dispatch review agents from review column (#23772)#28449
Merged
Conversation
…olumn Salvages #23772 by @thewillhuang. Adds 'review' as a valid kanban task status and extends dispatch_once to monitor the review column as a second dispatch source (in addition to the existing ready column). - Adds 'review' to VALID_STATUSES - Adds claim_review_task() — atomically transitions review → running - Adds has_spawnable_review() — health telemetry mirror - Extends dispatch_once with a review column dispatch loop - Review agents get 'sdlc-review' skill auto-loaded Resolved 2 conflicts (VALID_STATUSES merge with main's 'scheduled' state, test file additions). Adapted claim_review_task to main's ttl_seconds: Optional[int] = None convention (matches claim_task).
Contributor
🔎 Lint report:
|
1 task
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Salvages #23772 by @thewillhuang.
Adds
reviewas a valid kanban task status and extendsdispatch_onceto monitor the review column as a second dispatch source (after the existingreadycolumn). Review agents get thesdlc-reviewskill auto-loaded.reviewtoVALID_STATUSES(combined with main'sscheduledstate)claim_review_task()— atomically transitionsreview → runninghas_spawnable_review()— health telemetry mirrordispatch_oncewith a review column dispatch loop after the ready loopResolved 2 stale-base conflicts. Adapted
claim_review_tasksignature to main'sttl_seconds: Optional[int] = Noneconvention so it composes cleanly with main's_resolve_claim_ttl_secondshelper. Authorship preserved via rebase merge.Validation