Unify CLI UX and add PR description updates in fix loop#9
Merged
Conversation
- Extract _launch_in_tmux() shared helper for standardized post-start output (#5) - All commands (start, fix-ci, resume, restart) now print the same format: task ID, mode, branch, PR, tmux session name, and monitoring commands - Removes duplicated tmux launch + output code from 4 command handlers - Add PR description update instruction to fix_prompt (#2) - Agent-driven approach: fix_prompt now instructs the agent to update the PR title/description via gh pr edit if the implementation approach changed significantly during fixes - Keeps orchestrator simple (no new state or API calls needed) - 93 tests passing
This was referenced Mar 16, 2026
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.
Summary
This PR unifies the CLI user experience and adds agent-driven PR description updates.
1. Unified post-start experience (Closes #5)
autopilot startandautopilot fix-cihad different output formats after launching a session._launch_in_tmux()shared helper that all commands (start,fix-ci,resume,restart) use. Every launch now prints a standardized summary:2. Update PR description throughout the loop (Closes #2)
fix_prompt()now includes step 8 instructing the agent to update the PR title/description viagh pr editif the implementation approach changed significantly during fixes.Tests