スキル一覧に戻る
rlcurrall

ticket-update

by rlcurrall

tools i give to agents

2🍴 0📅 2026年1月20日
GitHubで見るManusで実行

SKILL.md


name: ticket-update description: 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. allowed-tools: Bash(aide:*),Read

Update Jira Ticket

Update fields on an existing Jira ticket.

When to Use

  • User wants to change ticket title or description
  • User wants to assign/reassign a ticket
  • User wants to change priority or labels
  • User wants to update custom fields

How to Execute

First, view the current ticket to see existing values:

aide jira view TICKET-KEY

Then update desired fields:

aide jira update TICKET-KEY [options]

Flags

FlagShortDescription
--summary-sUpdate summary/title
--description-dUpdate description (markdown format)
--file-fRead description from markdown file
--assignee-aUpdate assignee (email, "me", or "none")
--priorityUpdate priority (e.g., High, Medium, Low)
--labelsSet labels (comma-separated, replaces existing)
--add-labelsAdd labels (keeps existing)
--remove-labelsRemove specific labels
--componentSet components (can be repeated, replaces existing)
--fieldCustom field (Name=value format)
--formatOutput format: text, json, markdown

Custom Fields

The --field flag supports intelligent handling:

  • Name resolution: Use --field "Severity=High" instead of internal IDs
  • Auto-formatting: Values are formatted based on field type
  • Validation: Invalid values show helpful errors

Use ticket-fields skill to discover available fields.

Common Patterns

# Update title
aide jira update PROJ-123 --summary "Updated feature title"

# Update description
aide jira update PROJ-123 --description "New description with **markdown**"

# Update from file
aide jira update PROJ-123 --file ./new-description.md

# Assign to yourself
aide jira update PROJ-123 --assignee me

# Unassign
aide jira update PROJ-123 --assignee none

# Change priority
aide jira update PROJ-123 --priority High

# Add labels without removing existing
aide jira update PROJ-123 --add-labels "needs-review"

# Remove specific labels
aide jira update PROJ-123 --remove-labels "wip,draft"

# Multiple updates at once
aide jira update PROJ-123 --summary "New title" --assignee me --priority High

# Update custom field
aide jira update PROJ-123 --field "Severity=High"

Important Notes

  • Description replacement: --description replaces the entire description
  • Description format: Use Markdown - automatically converted to Jira format
  • Labels: Use --labels to replace all, --add-labels to add, --remove-labels to remove
  • Assignee options: Use "me" for yourself, "none" to unassign, or provide email

Best Practices

  • Read the ticket first to preserve existing content when updating description
  • Use --add-labels instead of --labels to avoid removing existing labels
  • When updating descriptions, preserve important existing content

Next Steps

After updating:

  • Use ticket skill to verify changes
  • Use ticket-comment skill to note the update

スコア

総合スコア

50/100

リポジトリの品質指標に基づく評価

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

レビュー

💬

レビュー機能は近日公開予定です