From aide
Post a comment on a pull request. Use when the user wants to add a comment to a PR, respond to feedback, request review, or document decisions.
How this skill is triggered — by the user, by Claude, or both
Slash command
/aide:pr-commentThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Post a comment on a pull request thread.
Post a comment on a pull request thread.
Run:
aide pr comment "comment text" [--pr <id>] [options]
| Flag | Description |
|---|---|
--pr | PR ID or URL (auto-detected from branch if omitted) |
--file | File path to attach comment to |
--line | Line number in file (requires --file) |
--end-line | End line for multi-line comment range |
# General PR comment (auto-detect PR from branch)
aide pr comment "Ready for re-review after addressing all feedback"
# Comment on specific PR
aide pr comment "LGTM!" --pr 24094
# Comment on specific file
aide pr comment "Consider refactoring this section" --pr 24094 --file src/auth.ts
# Comment on specific line
aide pr comment "Added null check as suggested" --pr 24094 --file src/utils/helpers.ts --line 127
| Purpose | Example |
|---|---|
| Request review | "Ready for re-review after addressing all feedback" |
| Acknowledge feedback | "Good point, I've updated the implementation" |
| Ask questions | "Should this use async/await or promises?" |
| Document decisions | "Using OAuth 2.0 with PKCE for enhanced security" |
| Mark completion | "All comments addressed, tests passing" |
After posting a comment:
npx claudepluginhub rlcurrall/aide --plugin aidePosts code review findings as line-bound PR comments via the GitHub CLI. Maps issues to specific lines and supports severity filtering.
Processes PR review feedback by analyzing comments, implementing fixes, committing, pushing, replying on GitHub, and resolving threads. Triggered by /pr-respond or relevant queries.
Guides GitHub PR comment workflows: drafts responses, creates pending reviews via gh CLI, resolves feedback by fixing code or replying per strict style rules.