Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

jira-plan-ticketJira 计划 ticket

Agent Skill

用于处理 Jira 项目、任务、缺陷、Sprint、负责人和状态流转。它适合让 Agent 辅助查询工单、汇总迭代进展、创建任务或整理需求和缺陷信息。使用时要确认项目权限、字段配置和工作流规则,不同团队的 Issue 类型、状态和必填字段可能不同;涉及批量改状态、改负责人或创建工单时,应先预览变更内容再执行。

总安装

665

周安装

28

GitHub Stars

2,281

下载量

233
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:jira-plan-ticket(Jira 计划 ticket)
来源仓库:https://github.com/checkmk/checkmk
仓库路径:skills/jira-plan-ticket
安装命令:
npx skills add https://github.com/checkmk/checkmk --skill jira-plan-ticket
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/checkmk/checkmk --skill jira-plan-ticket

简介

用于处理 Jira 项目、任务、缺陷、Sprint、负责人和状态流转。

  • 适合辅助查询工单、汇总迭代进展、创建任务或整理需求和缺陷信息。
  • 使用时需确认项目权限、字段配置和工作流规则,不同团队配置可能不同。
  • 涉及批量改状态、改负责人或创建工单时,应先预览变更内容再执行。
  • 安装方式:github,支持 Codex、Claude、Cursor、Gemini CLI。

SKILL.md

Jira Ticket Workflow

This skill automates the "start working on a Jira ticket" workflow.

Note: This skill is limited to the CMK project to avoid interfering with sensitive customer data. Only CMK- prefixed tickets are supported.

Arguments

The user provides a Jira ticket key as the argument (e.g., /jira-plan-ticket CMK-12345).

Workflow

1. Fetch ticket context

Run the shared ticket reader script to retrieve the full ticket context:

.venv/bin/python .github/skills/jira-read-ticket/read_ticket.py <TICKET_KEY>

This fetches the ticket's description, comments, linked tickets, and metadata from Jira.

If the script fails, report the error to the user and stop.

2. Check for uncommitted changes

Before switching branches, check whether the working tree is dirty:

git status --porcelain

If there are uncommitted changes, warn the user and ask whether to:

  • Stash them (git stash push -m "auto-stash before <TICKET_KEY>")
  • Commit them first
  • Abort the workflow

Do not proceed to branch creation until the working tree is clean or the user has chosen an option.

3. Create a working branch

Derive a short branch name from the ticket key and summary: <TICKET_KEY>-<very_short_summary> (e.g., CMK-12345-fix-login-crash). Use lowercase, hyphens, and at most 3-4 words for the summary part.

Determine the base branch from the ticket's "Affects Versions" field:

  • If the script output contains an "Affects Versions" section, use it to determine the base branch:

- Version 2.4.0bX / 2.4.0pX / 2.4.0 → base branch 2.4.0 - Version 2.5.0bX / 2.5.0pX / 2.5.0 → base branch 2.5.0 - If multiple versions are listed, use the oldest (lowest) version branch.

  • If no affects version is set, ask the user which base branch to use. Present curated choices via AskUserQuestion:

- master (development branch) - 2.5.0 (latest stable) - 2.4.0 (previous stable)

Create and switch to the branch based on the determined base branch:

git fetch origin <BASE_BRANCH> && git checkout -b <TICKET_KEY>-<very_short_summary> origin/<BASE_BRANCH>

If the branch already exists, switch to it instead:

git checkout <TICKET_KEY>-<very_short_summary>

4. Review attachments

Skip this step entirely if the script output contains no attachment sections.

If there are attachments, launch at most 2 Task agents (subagent_type: general-purpose) in parallel:

  • Images agent (only if there are image attachments): One agent receives ALL image file paths. It should read each image with the Read tool and describe what it shows (UI state, error messages, annotations, etc.). Return a concise summary per image.
  • Other files agent (only if there are non-image attachments): One agent receives ALL other file paths. For text-based files (logs, configs, CSVs), read and summarize key findings. For archives (tar, zip, gz), extract via Bash and summarize structure. Return a concise summary per file.

Incorporate the returned summaries into your understanding of the ticket.

5. Clarify uncertainties

Before planning, review the gathered context (ticket description, comments, attachments, linked tickets) and identify any uncertainties or gaps:

  • Ambiguous requirements: If the ticket description is vague, contradictory, or open to multiple interpretations, ask the user to clarify the intended behavior.
  • Missing context: If the ticket lacks sufficient detail to determine the scope, affected components, or expected outcome, ask the user for the missing information.
  • Conflicting information: If comments or linked tickets contradict the description, surface the conflict and ask which version is correct.
  • Implementation choices: If there are multiple reasonable approaches and the ticket doesn't indicate a preference, present the options to the user.

Use the AskUserQuestion tool to present your questions. Only proceed to planning once the uncertainties are resolved or the user explicitly tells you to proceed with your best judgment.

Skip this step if the ticket context is clear and complete.

6. Draft an implementation plan

Enter plan mode and create an implementation plan based on the Jira ticket context. The plan should:

  • Summarize the ticket's requirements from the description and comments
  • Identify relevant files and components in the codebase
  • Outline the implementation steps
  • Note any open questions or blockers from linked tickets
  • If the ticket is a bug: Explore options for easily reproducing the bug using unit tests. This helps verify the fix and prevents regressions.
  • If the ticket is a feature: Explore adding sufficient unit test coverage for the new functionality.

Present the plan for user approval before proceeding with implementation.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.73%
按下载量换算79

Claude

30.84%
按下载量换算72

Cursor

17.76%
按下载量换算41

Gemini CLI

9.86%
按下载量换算23

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills