Fix Remix Issue
Fix the issue reported in the following GitHub issue: $ARGUMENTS
Branching
Bug fixes should start from a clean working tree. If there are changes, prompt me to resolve them before continuing.
Bugs should be fixed from main in a new branch using the format {author}/{semantic-branch-name} (i.e., brophdawg11/fix-route-pattern):
git fetch origin main
git branch {author}/{semantic-branch-name} origin/main
git checkout {author}/{semantic-branch-name}
Workflow
1. Fetch and Understand the Issue
Use gh issue view <number> --repo remix-run/remix or WebFetch to read the full issue.
Extract:
- Bug description and expected vs actual behavior
- Remix version and which package(s) are involved (e.g.,
remix/router,remix/route-pattern,remix/cli) - Any code snippets in the issue
- Links to reproductions (StackBlitz, CodeSandbox, GitHub repo, etc.)
- Any implementation-plan checkboxes and the merged PRs already linked from them
If the issue contains implementation-plan checkboxes, treat it as a tracking issue and its checklist as the durable progress record:
- Do not redo checked work. Confirm linked PRs with `gh pr view <number> --re…