One command replaces the entire PR workflow.
Come back to a merged PR or a clear escalation.
Validates branch targets, reads repo config, detects base branch
Reviews code quality before submission
The heavy lifter: branch, commit, PR, CI, merge, cleanup
Some things need rules. Some things need judgment.
Can’t accidentally PR to forbidden branches
No debug artifacts, TODOs, or temp files
Matches project conventions and patterns
Required docs are present and updated
Learns from recent PRs in your repo
Watches, diagnoses, fixes (up to 3 attempts)
This is why it builds trust. It won’t blindly push through problems.
The recipe kept freezing, unable to proceed. Why?
Two steps gave contradictory signals:
safety-check: “has_uncommitted_changes: true”
workspace-cleanup: “nothing to commit”
The cleanup agent was dismissing untracked work files as “not production code” when they were the actual deliverables.
Clarified separation of concerns:
workspace-cleanup: Checks code quality only. Never assesses what to commit.
safety-check: Source of truth for git state. Determines what needs committing.
Lesson: In multi-agent systems, clear boundaries prevent analysis paralysis.
Data as of: February 20, 2026
Feature status: Active (Amplifier Workspaces)
Recipe version: v2.0.0
Research performed:
find across amplifier-bundle-recipes and .amplifier/cache for submit-pr filesPrimary contributor: Amplifier Workspaces team
Gaps: No dedicated recipe YAML file to analyze; step counts and quality gates are from the documented workflow design, not measured from code.
Note: The “Analysis Paralysis” bug story is from real-world usage, documented in the original deck.
Walk away. Come back to a merged PR
or a clear escalation.