43. **Read comment history before closing any PR** — stagehand#2026 教训:pirate 明确说 "please stop closing this, I'm leaving it open as a placeholder",但 stale-close 逻辑直接关了 PR 没检查最近评论。被 maintainer 当面纠正后道歉。原则:**关闭任何 PR 前(包括自己的),先读最近 5 条 comment**。如果有 maintainer 说 "keep open" / "placeholder" / "don't close" → 绝对不碰。流程:(1) `gh pr view OWNER/REPO#N --json comments --jq '.comments[-5:] | .[].body'` 快速扫最近评论 (2) 搜索 "keep open", "placeholder", "don't close", "leave this" 等关键词 (3) 有 maintainer 明确要求保留 → 跳过,不关。判断方法:如果你上次关了被 maintainer 要求 reopen → 那个 PR 永久 hands-off。推广:自动化/批量操作(stale close、bulk rebase、批量 ping)都应该先检查每个 target 的最近 context,不要盲目执行
0 commit comments