Agent skill
ticket-comment
Add a comment to a Jira ticket. Use when the user wants to post an update, ask a question, document a decision, or communicate status on a ticket.
Install this agent skill to your Project
npx add-skill https://github.com/rlcurrall/aide/tree/main/skills/ticket-comment
SKILL.md
Add Ticket Comment
Add a comment to a Jira ticket. Comments support markdown formatting.
When to Use
- User wants to add an update to a ticket
- User wants to ask a question on a ticket
- User wants to document a decision
- User wants to communicate progress or blockers
How to Execute
Run:
aide jira comment TICKET-KEY "comment text" [--format text|json|markdown]
Or read from file:
aide jira comment TICKET-KEY --file ./comment.md
Flags
| Flag | Short | Description |
|---|---|---|
--file |
-f |
Read comment from markdown file |
--format |
Output format: text, json, markdown |
Output Includes
- Comment ID
- Creation timestamp
- Author name
Common Patterns
# Add a simple comment
aide jira comment PROJ-123 "Started working on this task"
# Add a detailed comment with markdown
aide jira comment PROJ-123 "## Progress Update
- Completed initial implementation
- Tests passing locally
- Ready for code review
**Next steps:** Create PR and request review"
# Add comment from file (for longer content)
aide jira comment PROJ-123 --file ./status-update.md
Use Cases
| Purpose | Example |
|---|---|
| Progress update | "Completed initial implementation" |
| Asking questions | "Should this handle edge case X?" |
| Documenting decisions | "Using OAuth 2.0 with PKCE for enhanced security" |
| Communicating blockers | "Blocked on API access - waiting for credentials" |
| Closing notes | "Implementation complete, PR #123 merged" |
Best Practices
- Use markdown for formatted comments (headers, lists, code blocks)
- For long comments, write to a file first and use
--file - Reference other tickets with their keys (e.g., "Related to PROJ-456")
- Include relevant details for future reference
Next Steps
After adding a comment:
- Use ticket-comments skill to see all comments
- Use ticket-transition skill to change status if appropriate
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
release
Create a new software release by bumping version numbers, committing changes, creating git tags, and pushing to remote. Use when creating a release, bumping versions, or publishing a new version.
ticket-attach
Manage Jira ticket attachments. Use when the user wants to list, upload, download, or delete attachments on a ticket.
pr-comments
Load PR comments and feedback for code review. Use when the user wants to see reviewer feedback, check for unresolved comments, understand what changes are requested, or review discussion on a PR.
pr-list
List pull requests from the repository. Use when the user wants to see open PRs, find PRs to review, check their own PRs, or browse PR history.
ticket-update
Update fields on an existing Jira ticket. Use when the user wants to modify a ticket's summary, description, assignee, priority, labels, or custom fields.
pr-create
Create a new pull request. Use when the user wants to open a PR, submit code for review, create a draft PR, or push changes for merge.
Didn't find tool you were looking for?