| name | flutter-cherry-pick |
| description | How to land a formal cherry-pick of a merged PR for the flutter/flutter repo stable or beta channel. Only use for flutter/flutter landed pull requests. Only use when the cherry pick request is into "stable", "beta" or a branch that has the format with flutter-<major>.<minor>-candidate.0. |
Flutter Cherry-Pick Workflow
Constraints
This skill has the following strict constraints:
- Target Repository: Only use for the
flutter/flutter repository.
- Target Channels: Only use when the cherry-pick is targeted at
stable, beta, or a release candidate branch matching the format flutter-<major>.<minor>-candidate.<hotfix> (e.g., flutter-3.10-candidate.0).
- PR Status: Only use for pull requests that have already been successfully merged into
master.
Quick Start
Trigger this skill by providing a merged PR number or URL and optionally the target channel:
Workflows
Phase 1: Initialization and Channel Detection
- Identify Inputs:
- Original PR:
<ORIGINAL_PR> (number or URL provided by the user).
- Target Channel:
<CHANNEL> (either stable or beta).
- Determine Channel:
- Parse the user's request for the target channel.
- GATING STEP: If the target channel is not specified in the user's request, you MUST STOP CALLING TOOLS AND ASK the user: "Would you like to cherry-pick this to
stable or beta?" and wait for their response before proceeding.
- Verify you are in the root of the
flutter repository.
- Verify Environment: Ensure the repository is clean (no uncommitted changes). Run
git status --porcelain to check. If there are pending changes, stop and ask the user to resolve them or stash them.
Phase 2: Run Cherry-Pick Orchestrator
- Run the helper script to start the process:
<DART_EXECUTABLE> .agents/skills/flutter-cherry-pick/scripts/flutter_cp.dart --pr <ORIGINAL_PR> --channel <CHANNEL> --action start
- Evaluate Script Output:
- Exit Code 0 (Success):
- The output will end with
SUCCESS:AUTOMATED:<CP_PR> or SUCCESS:MANUAL:<CP_PR>.
- Extract the
<CP_PR> number.
- Proceed to Phase 4: Fill Template.
- Exit Code 2 (Conflicts):
- The cherry-pick encountered conflicts and the script checked out a local branch
cherry-pick-<ORIGINAL_PR>-to-<CHANNEL>.
- Proceed to Phase 3: Conflict Resolution.
- Exit Code 1 (Error):
- An unexpected error occurred. Report the failure to the user.
Phase 3: Conflict Resolution
- Analyze Conflicts:
- Identify the conflicted files from the script output (or run
git status --porcelain to see unmerged files).
- Document Conflicts: Articulate what conflicts were encountered and how they were resolved. You will need to include this information in the final PR description.
- Attempt Auto-Resolution:
- For each conflicted file, analyze the conflict markers (
<<<<<<<, =======, >>>>>>>).
- If the conflict is simple (e.g., import ordering, minor formatting, non-overlapping changes), resolve it.
- User Fallback:
- If you cannot resolve the conflicts automatically or the conflicts reflect a change in logic that impacts flutter users:
- Present the list of conflicted files to the user in the chat.
- Ask the user to resolve them in their editor.
- Stop calling tools and wait for the user to confirm resolution.
- Continue the Process:
Phase 4: Fill Template and Apply
- Retrieve Template:
- Read the local cherry-pick template (located at
[PULL_REQUEST_CP_TEMPLATE](../../../.github/PR_TEMPLATE/PULL_REQUEST_CP_TEMPLATE.md) relative to this skill).
- Gather Context:
- Parse the original PR description for linked issues (e.g., "Fixes #187322", "Closes #123").
- If found, fetch the issue details:
gh issue view <ISSUE_NUMBER> --json title,body.
- Fetch original PR details if needed.
- If conflicts were encountered and resolved in Phase 3, gather the documentation of those conflicts.
- Draft the Template:
- Fill in the retrieved template fields using LLM reasoning based on the issue and original PR context.
- If conflicts were resolved, clearly document them in the PR description (e.g., in the "Description" or "Changelog" section), explaining what was resolved and how.
- Keep the Markdown structure of the template intact.
- CRITICAL: Remove any instructional text or guidelines within the sections (e.g., "What is the impact...", "Explain this cherry pick...") when replacing them with your responses. Do NOT remove explanations around checkboxes or selection items (e.g., "What is the risk level...", "Are you confident...").
- Example of filling a text section (remove instructional text):
- Example of filling a checkbox/selection section (do NOT remove options):
- Before:
### Shared Engineering Cohort
Were any engineering cohorts (e.g. Flutter Tooling, Engine, Framework) consulted?
- [ ] Yes
- [ ] No
- After:
### Shared Engineering Cohort
Were any engineering cohorts (e.g. Flutter Tooling, Engine, Framework) consulted?
- [x] Yes
- [ ] No
- Review with User (GATING STEP):
- Present the drafted template to the user in the chat and ask for approval or edits.
- YOU MUST STOP CALLING TOOLS AND WAIT for the user's explicit approval in the chat before proceeding. Do not attempt to apply the template pre-emptively.
- Apply Template, Update Title, and Add Label: