en un clic
en un clic
Execute a list of tasks as a stack of PRs using Graphite (`gt`). Each task becomes one branch, one commit, one PR. Use when the project uses stacked PRs via Graphite and you have multiple tasks to ship.
Stacked PRs with Graphite CLI (gt)
Expert guidance on Neovim configuration, plugin management, lazy.nvim, LSP setup, and editor workflow optimization
Walk a Graphite stack bottom-to-top, fixing PR review comments on each branch
Stacked PRs with Charcoal CLI (charcoal)
Distribute uncommitted changes across a Graphite stack using a backup branch
| name | gh-pr-comments |
| description | Fetch all comment types from a GitHub PR |
Fetch inline review comments, general discussion comments, and review summaries from a GitHub pull request.
GitHub stores PR feedback in three separate API endpoints. You must check all three to get complete feedback.
| Type | Endpoint | What it contains |
|---|---|---|
| Review comments | /pulls/{n}/comments | Inline comments on specific code lines |
| Discussion | /issues/{n}/comments | General PR discussion (not on code) |
| Review summaries | /pulls/{n}/reviews | Top-level review body (approve/reject) |
Common mistake: Only checking /pulls/{n}/comments and missing general
discussion or review summaries.
# Fetch all comments for a PR (filters bots by default)
~/.claude/skills/gh-pr-comments/scripts/fetch-pr-comments.sh <owner/repo> <pr_number>
# Include bot comments
~/.claude/skills/gh-pr-comments/scripts/fetch-pr-comments.sh <owner/repo> <pr_number> --include-bots
Returns JSON with three arrays: review_comments, discussion_comments, and
review_summaries. Each entry includes the commenter, body, and relevant
metadata (path/line for inline comments, state for reviews).
By default, comments from known bots are excluded:
graphite-app[bot]github-actions[bot][bot]Use --include-bots to see all comments.
After pushing fixes, old inline comments remain pointing at outdated line numbers. Before acting on an inline comment: