スキル一覧に戻る
rlcurrall

ticket-create

by rlcurrall

tools i give to agents

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

SKILL.md


name: ticket-create description: Create a new Jira ticket. Use when the user wants to create a task, bug, story, or any other issue type in Jira. allowed-tools: Bash(aide:*)

Create Jira Ticket

Create a new Jira ticket with the specified details.

When to Use

  • User says "create a ticket" or "make a new issue"
  • User wants to log a bug or create a task
  • User needs to track new work in Jira

How to Execute

Run:

aide jira create -p PROJECT -t TYPE -s "Summary" [options]

Required Flags

FlagShortDescription
--project-pProject key (required, e.g., PROJ)
--type-tIssue type (required, e.g., Task, Bug, Story)
--summary-sIssue summary/title (required)

Optional Flags

FlagShortDescription
--description-dDescription text in markdown format
--file-fRead description from markdown file
--assignee-aAssignee (email, account ID, or "me")
--priorityPriority name (e.g., High, Medium)
--labels-lLabels (comma-separated)
--componentComponent name (can be repeated)
--parentParent issue key (for subtasks)
--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 --field "customfield_10269=High"
  • Auto-formatting: Values are formatted based on field type
  • Validation: Invalid values show helpful errors with allowed options

Use ticket-fields skill to discover available fields.

Common Patterns

# Create a simple task
aide jira create -p PROJ -t Task -s "Implement login feature"

# Create a bug with description
aide jira create -p PROJ -t Bug -s "Login fails on Safari" -d "Users report 500 error when logging in"

# Create and assign to yourself with priority
aide jira create -p PROJ -t Task -s "Review PR comments" --assignee me --priority High

# Create with labels and components
aide jira create -p PROJ -t Story -s "User dashboard" --labels "frontend,ux" --component UI

# Create subtask under parent
aide jira create -p PROJ -t Sub-task -s "Write unit tests" --parent PROJ-100

# Create with custom fields
aide jira create -p PROJ -t Bug -s "Critical bug" --field "Severity=Critical"

Output Includes

  1. Ticket key (e.g., PROJ-123)
  2. URL to view the ticket

Best Practices

  • Use descriptive summaries
  • Include enough description for context
  • Set appropriate priority
  • Use labels for categorization
  • Write descriptions in Markdown format

Next Steps

After creating a ticket:

  • Use ticket skill to verify details
  • Use ticket-update skill to modify fields
  • Use ticket-transition skill to change status

スコア

総合スコア

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

レビュー

💬

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