source-command-ff-reply-to-comments

Posts replies to GitHub PR comments after addressing review feedback.

1|1|Updated Feb 3, 2026
One-click install
npx skills add https://github.com/redblacktree/fastflow --skill source-command-ff-reply-to-comments-redblacktree
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: source-command-ff-reply-to-comments
Source: https://github.com/redblacktree/fastflow/tree/main/.agents/skills/source-command-ff-reply-to-comments
Command: npx skills add https://github.com/redblacktree/fastflow --skill source-command-ff-reply-to-comments-redblacktree

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? After implementing changes based on PR review feedback, developers need to manually reply to each comment to confirm it was addressed. This Skill automates that follow-up by posting structured replies to PR comments via the GitHub CLI and API. ## Core Features & Use Cases - Comment Discovery: Fetches both general PR comments and line-specific review comments using gh pr view and the GitHub REST API. - Duplicate Prevention: Checks for existing replies before posting to avoid spamming reviewers. - Templated Replies: Provides standardized reply formats for fixed, implemented, partially addressed, discussed, and clarification-needed outcomes. - Use Case: After pushing commits that address reviewer feedback on a pull request, run this Skill to post "Addressed" replies referencing the relevant commit SHAs on each resolved comment. ## Quick Start Ask the agent to reply to all PR comments that have been addressed by the latest commits on the current branch.

Frequently Asked Questions about source-command-ff-reply-to-comments

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I reply to GitHub PR review comments from the command line?▼

Use the GitHub CLI to fetch comments with `gh pr view --json comments`, then post replies via `gh api repos/{owner}/{repo}/pulls/{number}/comments` with the in_reply_to parameter set to the original comment ID.

How to reply to a specific line comment on a GitHub pull request?▼

Line-specific review comments require the pulls comments API endpoint with the commit_id, file path, line number, side, and in_reply_to fields. General PR comments use the issues comments replies endpoint instead.

Does this work without a pull request on the current branch?▼

No. The workflow first runs `gh pr view` to identify the PR for the current branch, and if no PR exists it reports that and stops without posting anything.

How do I avoid posting duplicate replies to PR comments?▼

Fetch each comment's existing replies before posting and skip any comment that already contains a reply from your account. The workflow explicitly checks reply history to prevent duplicates.

What are the limitations of replying to PR comments via the GitHub API?▼

Some comments may not be reply-able through the API, and rate limits apply when posting many replies. Errors should be handled gracefully and replies batched when there are numerous comments.