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

creating-jira-subtaskscreating Jira subtasks 搜索

Agent Skill

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

总安装

1,063

周安装

43

GitHub Stars

公开资料未说明

下载量

334
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/b-mendoza/agent-skills --skill creating-jira-subtasks

简介

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

  • 适合让 Agent 辅助查询工单、汇总迭代进展、创建任务或整理需求和缺陷信息。
  • 使用时需确认项目权限、字段配置和工作流规则,不同团队的 Issue 类型、状态和必填字段可能不同。
  • 涉及批量改状态、改负责人或创建工单时应先预览变更内容再执行。
  • creating-jira-subtasks 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Creating Jira Subtasks

Create or reconcile Jira subtasks for a clarified task plan at docs/<TICKET_KEY>-tasks.md. This skill coordinates Phase 4 by dispatching one specialist subagent, keeping only its structured summary, and reporting the outcome the parent workflow needs for progress tracking.

The orchestrator does four things directly: read its bundled files, derive identifiers from JIRA_URL, dispatch subtask-creator, and relay the subagent's summary. Plan parsing, Jira operations, and plan-file edits all stay inside subtask-creator after dispatch.

Inputs

InputRequiredExample
JIRA_URLYeshttps://workspace.atlassian.net/browse/PROJ-123

Derive these values from the URL when you need to describe the ticket:

  • Workspace: subdomain before .atlassian.net
  • Project: prefix before the dash in the ticket key
  • Ticket key: full path segment, such as PROJ-123

Prefer passing the full JIRA_URL downstream rather than only TICKET_KEY. The URL carries the workspace context needed for Jira reads and writes.

Workflow Overview

1. Read the subtask-creator definition
2. Dispatch it with JIRA_URL
3. Interpret its structured result
4. Report only the concise phase summary to the caller

Subagent Registry

Read a subagent definition only when you are about to dispatch it.

SubagentPathPurpose
subtask-creator./subagents/subtask-creator.mdReconcile the clarified plan with Jira and return a structured Phase 4 summary

How This Skill Works

This skill is intentionally narrow. The parent workflow is responsible for Phase 4 gating and progress tracking; this skill assumes the Phase 3 approval step has already happened before Jira writes begin.

Inside Phase 4, keep only the routing verdicts plus the caller-facing rollup. For Jira, that means the parent / artifact identifiers, creation totals, warnings or failures, and the linkage rollup the caller needs for progress tracking. Jira stays on the single native subtask path, so no write-model or capability metadata is expected in the summary.

Relay only the structured fields the subagent returns. Raw Jira payloads, full API responses, raw file contents, and intermediate parse details stay inside subtask-creator unless the user explicitly asks for them.

Phase 4 Contract

Primary artifact:

docs/<TICKET_KEY>-tasks.md

For the complete standalone input contract, output contract, and summary-field definitions, read ./references/phase-4-io-contracts.md.

That bundled reference file is the only normative Phase 4 contract source for this skill. SKILL.md covers dispatch, routing, and reporting only. The subagent defines how to achieve the contract but does not replace it.

Execution Steps

1. Dispatch subtask-creator

Read ./subagents/subtask-creator.md, then dispatch it with:

  • JIRA_URL

The subagent owns plan parsing, Jira-capable tool discovery, parent lookup, idempotent reuse of existing subtask links, sequential creation of missing subtasks, plan-file updates, and post-write validation.

2. Interpret the structured result

Handle the returned summary this way:

  • SUBTASKS: PASS with Validation: PASS: report success and proceed.
  • SUBTASKS: WARN with Validation: PASS: report partial success or degraded input clearly. Phase 4 may still be usable if the plan file now satisfies the local Phase 4 output contract, but make failed tasks visible so the user can retry before executing them.
  • SUBTASKS: BLOCKED: stop and relay the artifact or data-shape problem. This usually means the plan is missing, malformed, or contains unsafe existing Jira links that need manual correction.
  • SUBTASKS: FAIL: stop and relay the fatal Jira or validation failure.
  • SUBTASKS: ERROR: stop and relay the unexpected failure.
  • Any result paired with Validation: FAIL: treat the phase as incomplete even if some Jira writes succeeded, because the local plan contract is not trustworthy yet.
  • Any result paired with Validation: NOT_RUN: treat the phase as incomplete; no trustworthy local post-write artifact was produced for downstream use.

3. Report only the summary

Using only the subagent's structured summary, tell the caller:

  • Use the subagent summary as routing input; do not rewrite its contract schema inside SKILL.md.
  • Surface the caller-facing rollup: parent reference, explicit TICKET_KEY, updated plan-file path, creation totals, warnings or failures, and the reminder that no implementation has started.
  • Do not add GitHub-style write-model or capability lines to the Jira report.

Dispatch subtask-creator as a subagent. If the environment cannot invoke subagents, report the skill as blocked rather than reproducing the subagent inline.

Example

  1. Read ./subagents/subtask-creator.md
  2. Dispatch subtask-creator with JIRA_URL
  3. Subagent returns the contract-defined summary from ./references/phase-4-io-contracts.md, for example: SUBTASKS: PASS Validation: PASS Parent: PROJ-123 TICKET_KEY: PROJ-123 Plan file: docs/PROJ-123-tasks.md...
  4. Route on that summary, then relay only the caller-facing rollup. Do not add GitHub-style write-path metadata to the Jira report.

Escalation

Use the subagent's structured verdict as the only routing input:

Summary stateOrchestrator action
SUBTASKS: PASS with Validation: PASSReport success and proceed
SUBTASKS: WARN with Validation: PASSReport usable output with warnings and make failed or skipped linkage visible
SUBTASKS: BLOCKEDStop and surface the plan-shape or unsafe-linkage issue
SUBTASKS: FAILStop and surface the fatal Jira or validation failure
SUBTASKS: ERROR or Validation: FAILStop and surface the unexpected failure or local contract failure

Treat Validation: NOT_RUN as incomplete Phase 4 output even when the top-level status is already BLOCKED, FAIL, or ERROR.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

39.32%
按下载量换算131

Claude

31.51%
按下载量换算105

Cursor

16.92%
按下载量换算57

Gemini CLI

9.89%
按下载量换算33

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills