بنقرة واحدة
continue-rebase-interactively
// Guide an in-progress rebase with conflicts by summarizing each conflict and offering 3 resolution options.
// Guide an in-progress rebase with conflicts by summarizing each conflict and offering 3 resolution options.
Finalize work to prepare a commit. Clean up unnecessary debug logs, remove unused methods added, do a final review to ensure tight elegant implementation, etc.
Isolate a subset of changes from a dirty local worktree (usually on main) into a clean feature branch, then commit, push, and open a PR. Use when the user asks to "branch out", "isolate my changes", "move this work to a new branch", or create a clean PR from only selected files/hunks.
Safely sync local commits with remote by rebasing onto origin/main and then push, following a GitHub Desktop-style flow. Use when asked to push/sync a branch, reconcile local and remote state, resolve rebase conflicts, run targeted tests or typechecks, and push only if checks pass.
Explain and use the Inline CLI (`inline`) for authentication, chats, users, spaces, messages, search, bots, typing, notifications, tasks, schema, attachments, downloads, JSON output, and configuration. Use when asked how to use the Inline CLI or its commands, flags, outputs, or workflows.
Run static checks and high-level validation before a production push in the Inline repo. Use when asked to run checks, verify correctness, or do pre-push/pre-release validation across server/web/admin/apple/cli/proto changes.
Read changes, summarize spec and work done so far, and prepare for working on next steps.
| name | continue-rebase-interactively |
| description | Guide an in-progress rebase with conflicts by summarizing each conflict and offering 3 resolution options. |
| metadata | {"short-description":"Interactive rebase conflict helper"} |
Help continue an in-progress rebase (or similar conflict cleanup from a merge or stash apply) by iterating through conflicts, summarizing each conflict, and presenting 3 resolution options (keep A, keep B, keep both with a surgical refactor). Mark the best option as recommended, wait for user confirmation, apply the choice, and continue until the operation completes.
git status -sbgit diff --name-only --diff-filter=Ugit rebase --continuegit merge --continue (or commit if already staged)git stash (resolve + add + continue/commit as needed)git add <file>.git rebase --continue.git status -sb.