Post comment on PR
Posts comments on pull requests with optional file and line targeting.
/plugin marketplace add rlcurrall/aide/plugin install aide@aide-marketplacePost a comment on a pull request thread.
/aide:pr-comment "comment text" - Auto-detect PR from current branch
/aide:pr-comment "comment text" --pr <id> - Comment on specific PR
/aide:pr-comment "comment" --file src/app.ts --line 42 - Comment on a specific file/line
Run the following command with the provided arguments:
aide pr comment $ARGUMENTS
| 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) |
Displays the posted comment details including:
Use comments to:
# 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 line
aide pr comment "Added null check as suggested" --pr 24094 --file src/utils/helpers.ts --line 127