End-to-end group orchestration (tracer bullet) - #86
Open
hsubra89 wants to merge 4 commits into
Open
Conversation
- Orchestrator checks for in-progress group before fetching new tasks - Groups create shared worktree, process one sub-issue per iteration - Sub-issues marked done (new TaskSource::mark_done) after each commit - Single PR submitted after all sub-issues complete with multi-resolve body - Review pipeline runs once after all sub-issues, not after each one - Parent label transitions: in-progress → in-review - Sub-issue label transitions: in-progress → done - Implement prompt includes parent_issue_body for group context - Standalone issues continue through existing flow unchanged - Integration tests: group lifecycle, label transitions, PR body, state resume, parent body in prompt, standalone regression Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Owner
Author
Review SummaryOverall the implementation is solid — security review is clean and the core group orchestration logic is correct. Two warnings and a handful of style/info items. Warnings
Info
|
…cleanup - Restore DependencyGraph filtering for standalone tasks in run_iteration - Remove .rlph/config.toml from tracking and restore it in .gitignore - Distinguish all-complete vs externally-blocked in group resume (no premature finalization) - Make group finalization idempotent by checking for existing PR before submission - Clean up imports: add HashSet, DependencyGraph, CurrentGroupState; remove fully-qualified paths - Set current_task during group review and clean up worktree mapping in finalize_group Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
…cleanup 1. done_ids now includes externally closed issues at both group-start and group-resume sites, so external deps are recognized and sub-issues that depend on them become unblocked. 2. finalize_group removes worktree mappings for each sub-issue (not just the parent group mapping). 3. Simplified copied().cloned() to iter().map(|t| (*t).clone()). 4. Restored auto-select for single candidate — skips the choose agent when only one eligible task/group exists. 5. Updated 4 integration tests to account for auto-select behavior. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Owner
Author
|
The comment about "auto-select optimization removed" (L508) is inaccurate. Auto-select for single-candidate is present at L486: |
…cleanup Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
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.
Resolves #78
Automated implementation by rlph.