一键导入
mo-needs-to-review
// Check if uncommitted changes are important/risky/breaking to require a review before merge/production release.
// Check if uncommitted changes are important/risky/breaking to require a review before merge/production release.
| name | mo-needs-to-review? |
| description | Check if uncommitted changes are important/risky/breaking to require a review before merge/production release. |
| metadata | {"short-description":"Does this code need a review from Mo?"} |
Check if the changes in the current work tree require a second manual review and confirmation from a senior engineer (Mo) who has deep insight into the system or not.
If changes match any of the items below, they need a second check:
any?Dockerfiles we have across the project so our build will fail when deploying?Run applicable items from the static check list we have to confirm static behavior.
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.
Guide an in-progress rebase with conflicts by summarizing each conflict and offering 3 resolution options.