用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/rlcurrall/aide --skill ticket-create命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Update an existing pull request. Use when the user wants to modify PR title, description, publish a draft, convert to draft, abandon, or reactivate a PR.
List Jira boards for a project. Use when the user wants to find board IDs, see available boards, or needs to identify which board to query for sprint information.
Get sprint information for a Jira board. Use when the user wants to find the current/active sprint, check sprint dates, or see sprint goals.
基于 SOC 职业分类
正在显示 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 a new Jira ticket with the specified details.
Run:
aide jira create -p PROJECT -t TYPE -s "Summary" [options]
| Flag | Short | Description |
|---|---|---|
--project | -p | Project key (required, e.g., PROJ) |
--type | -t | Issue type (required, e.g., Task, Bug, Story) |
--summary | -s | Issue summary/title (required) |
| Flag | Short | Description |
|---|---|---|
--description | -d | Description text in markdown format |
--file | -f | Read description from markdown file |
--assignee | -a | Assignee (email, account ID, or "me") |
--priority | Priority name (e.g., High, Medium) | |
--labels | -l | Labels (comma-separated) |
--component | Component name (can be repeated) | |
--parent | Parent issue key (for subtasks) | |
--field | Custom field (Name=value format) | |
--format | Output format: text, json, markdown |
The --field flag supports intelligent handling:
--field "Severity=High" instead of --field "customfield_10269=High"Use ticket-fields skill to discover available fields.
# 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"
After creating a ticket: