Back to list
rlcurrall

ticket-edit-comment

by rlcurrall

tools i give to agents

2🍴 0📅 Jan 20, 2026

SKILL.md


name: ticket-edit-comment description: Edit an existing comment on a Jira ticket. Use when the user wants to update, correct, or improve a comment they previously added. allowed-tools: Bash(aide:*)

Edit Ticket Comment

Edit an existing comment on a Jira ticket. Comments support markdown formatting.

When to Use

  • User wants to fix a typo or error in a comment
  • User wants to add more information to an existing comment
  • User wants to update status information in a comment
  • User wants to correct inaccurate information

How to Execute

Run:

aide jira edit-comment TICKET-KEY COMMENT-ID "new content" [--format text|json|markdown]

Or read from file:

aide jira edit-comment TICKET-KEY COMMENT-ID --file ./updated-comment.md

Arguments

ArgumentRequiredDescription
TICKET-KEYYesJira ticket key (e.g., PROJ-123)
COMMENT-IDYesID of the comment to edit
commentNo*New comment text in markdown format

*Either inline comment or --file must be provided.

Flags

FlagShortDescription
--file-fRead new comment from markdown file
--formatOutput format: text, json, markdown

Finding Comment IDs

To find the comment ID you want to edit, first list comments:

aide jira comments PROJ-123 --format json

Each comment in the output will have an id field.

Output Includes

  1. Comment ID
  2. Updated timestamp
  3. Author name

Common Patterns

# Edit with inline text
aide jira edit-comment PROJ-123 10001 "Updated comment text"

# Edit with markdown formatting
aide jira edit-comment PROJ-123 10001 "## Updated Status

- Fixed the bug
- Added unit tests
- Ready for review"

# Edit from file (for longer content)
aide jira edit-comment PROJ-123 10001 --file ./updated-comment.md

# Get JSON output
aide jira edit-comment PROJ-123 10001 "Updated" --format json

Use Cases

PurposeExample
Fix typoCorrect spelling or grammar mistake
Add informationInclude details that were initially missed
Update statusChange "in progress" to "completed"
Correct inaccuracyFix incorrect technical information
Improve formattingAdd markdown headers, lists, or code blocks

Best Practices

  • Use markdown for formatted comments (headers, lists, code blocks)
  • For significant changes, write to a file first and use --file
  • The entire comment is replaced - include all content you want to keep
  • Consider adding an "Updated:" note to indicate the comment was edited

Important Notes

  • The edit replaces the entire comment content
  • You can only edit comments you have permission to edit
  • The comment ID is required (use aide jira comments to find it)

Next Steps

After editing a comment:

  • Use ticket-comments skill to verify the edit
  • Use ticket-delete-comment skill if you need to remove it instead

Score

Total Score

50/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon