What problem does it solve? AI coding agents can accidentally clobber pull request descriptions by writing delta-only bodies or calling update_pr directly, destroying existing summaries and follow-up notes. This Skill enforces a comment-only default and a cryptographically authorized append-only write path so PR bodies are never silently overwritten. ## Core Features & Use Cases - Layer 0 comment-only enforcement: Agents use post_comment or gh pr comment only; hooks block update_pr with body= and gh pr edit at preToolUse, beforeMCPExecution, and beforeShellExecution. - Operator grant v2 authorization: An HMAC-authenticated capability (operator-grant-v2) minted from an operator TTY binds a nonce, timestamp, and content digest to authorize exactly one append. - Append-only replay state machine: append-pr-body.sh runs verify, reconcile, reserve, READ, BACKUP, MERGE, gh pr edit, mark-applied, consume, with crash recovery and digest mismatch detection. - Use Case: After rebasing a stacked PR, an operator mints a grant for a follow-up note, and the agent appends a "Follow-up: harmonized onto #244" section without touching the original summary or CodeRabbit release notes. ## Quick Start Ask the agent to post a PR comment with your update, or after the operator mints a grant with grant-pr-body-human-override.sh, run append-pr-body.sh with the same follow-up file to append the note to the PR body.