Review and accept external modifications to the working tree (Codex, linters, collaborators). Diff, assess, flag issues. Trigger: "review changes", "review external", "check what changed".
التثبيت
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
Review and accept external modifications to the working tree (Codex, linters, collaborators). Diff, assess, flag issues. Trigger: "review changes", "review external", "check what changed".
Review External Changes
Review uncommitted modifications made by external tools (Codex, linters, collaborators) to the working tree. Read-first, then assess.
Steps
Diff — Run git diff (unstaged) and git diff --cached (staged). If both empty, report "no changes" and stop.
Fix — If issues are found, ask the user whether to fix them. Do not auto-fix.
Rules
Do NOT revert external changes unless they introduce bugs or rule violations.
If the external tool removed code you previously added, check whether the removal was an improvement (redundant method, simpler approach) or a regression (lost functionality).
Treat the external modification as intentional unless evidence says otherwise.