phabricator_revision_inline_comment
Create a draft inline comment on a specific line of a Phabricator Differential diff. Publish it later using a revision edit call.
Instructions
Create an inline comment on a specific line of a Differential diff. The comment will appear as a draft — publish it by calling phabricator_revision_edit with a comment on the same revision.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| revisionID | Yes | Numeric revision ID (e.g., 123). Do not include the "D" prefix. | |
| diffID | Yes | Diff ID to comment on. Use phabricator_diff_search to find this. | |
| filePath | Yes | Path to the file being commented on | |
| lineNumber | Yes | Line number in the file | |
| lineLength | No | Number of lines the comment spans (default: 0 for single line) | |
| content | Yes | Comment text (supports Remarkup) | |
| isNewFile | No | Whether the line number refers to the new file (true) or old file (false). Default: true |