Token导航 LogoToken导航TokenDH.com
开发只读github未标认证来源可访问许可证需确认审计通过

executing-jira-taskexecuting Jira task 开发

Agent Skill

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

总安装

734

周安装

30

GitHub Stars

公开资料未说明

下载量

238
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

executing-jira-task 协调 Jira 工作流的任务执行与状态流转。

  • 适用于工单创建、Sprint 进度跟踪与负责人指派。
  • 首次执行 mutation 前需获得用户明确批准。
  • 通过 GitHub 安装,需配置 Jira API token 与项目权限。
  • 不同团队的 Issue 类型与字段配置可能差异较大。

SKILL.md

Executing Jira Task

This skill is the per-task execution orchestrator for the Jira workflow. It does exactly three things: validate that the selected task is ready, dispatch the right specialist for each phase, and decide whether to advance, run a targeted fix cycle, or escalate.

Execution kickoff is the first point at which the workflow may mutate Jira state or otherwise cross from critique-only work into active execution. Everything before kickoff remains critique and planning on disk; kickoff is the first execution mutation boundary after the user approves implementation. The orchestrator running this skill keeps only concise summaries in memory; subagents do the heavy work in isolation.

Inputs

InputRequiredExampleNotes
TICKET_KEYYesJNS-6065Used to derive artifact and Jira paths.
TASK_NUMBERYes3Exactly one task per invocation.

Required artifacts

ArtifactPhaseRequiredPurpose
docs/<TICKET_KEY>.md1YesTicket snapshot and Jira context.
docs/<TICKET_KEY>-tasks.md2–4YesTask plan, ## Jira Subtasks, statuses.
docs/<TICKET_KEY>-task-<N>-brief.md5YesScope, DoD, and execution constraints.
docs/<TICKET_KEY>-task-<N>-execution-plan.md5YesApproved implementation approach.
docs/<TICKET_KEY>-task-<N>-test-spec.md5YesRequired behavior coverage.
docs/<TICKET_KEY>-task-<N>-refactoring-plan.md5YesApproved structural prep and cleanup.
docs/<TICKET_KEY>-task-<N>-critique.md6YesTask-level critique record.
docs/<TICKET_KEY>-task-<N>-decisions.md6YesCritique outcomes and confirmed decisions.

Read ./references/contracts.md when validating task readiness or artifact shape.

Workflow Overview

These are the execution skill's ordered internal stages. Read ./references/pipeline.md for the full run -> check -> fix -> re-check order and ./references/contracts.md for readiness and handoff contracts.

Internal stageGoalPrimary result
0. ReadinessValidate prerequisites and task readinessReady-to-run task or explicit blocker
1. KickoffApply first side effects and establish active execution stateKICKOFF_REPORT
2. ExecutionImplement the planned changeEXECUTION_REPORT
3. DocumentationAdd in-code docs, commit Category B work, and update trackingDOCUMENTATION_REPORT
4. Requirements VerificationConfirm Definition of Done coverage before review gatesVERIFICATION_RESULT
5. Quality GatesRun clean-code, architecture, and security review in orderReview verdicts and actionable feedback
6. Targeted Fix CycleRe-run only the failing verification or review pathRe-validated task or escalation
7. Final ReportReport the selected task's final outcomeOne concise task completion summary

Requirements gaps are resolved after internal step 4 and before internal step 5. Quality-gate fix cycles happen after internal step 5.

Subagent Registry

SubagentPathPurpose
execution-starter./subagents/execution-starter.mdExecution kickoff: readiness, workspace checks, and first Jira-side startup updates (transition, comments) when appropriate.
task-executor./subagents/task-executor.mdImplements the scoped change and tests from the approved planning artifacts.
documentation-writer./subagents/documentation-writer.mdAdds in-code documentation, commits Category B files, updates docs/<TICKET_KEY>-tasks.md, and performs optional Jira completion updates on the subtask.
requirements-verifier./subagents/requirements-verifier.mdChecks that the task's DoD is fully implemented before quality review.
clean-code-reviewer./subagents/clean-code-reviewer.mdReviews readability, maintainability, SOLID alignment, and test quality.
architecture-reviewer./subagents/architecture-reviewer.mdReviews domain boundaries, composition, and architectural fit.
security-auditor./subagents/security-auditor.mdAudits the committed change set for exploitable security weaknesses.

Use this registry as a lookup table. Read exactly one subagent definition per dispatch, then pass only the inputs that subagent needs.

How This Skill Works

The orchestrator uses direct reads only to load this skill, the reference file for the current phase, and the specific subagent it is about to dispatch. Everything else is delegated. Pass file paths and short summaries between subagents instead of raw file contents or command output.

In practice, the orchestrator does only three kinds of work directly: load the current instructions, dispatch the next specialist, and carry forward the smallest summary needed for the next decision. Execution, mutation, analysis, and artifact updates stay inside the specialist subagents.

Every task run follows the same validation loop: confirm readiness, cross the kickoff mutation boundary deliberately after critique approval, verify Definition of Done coverage before the review gates, and re-run only the failing phase when a targeted fix is needed.

Treat artifacts in two categories:

  • Category A: docs/<TICKET_KEY>*.md, progress files, briefs, plans, test specs, refactoring plans, critique, and decisions. Stay on disk, never committed, never deleted.
  • Category B: source code, tests, config, in-code documentation. Committed normally.

If a selected task is already complete, blocked by unmet prerequisites, or produces a repeated unresolved blocker, stop and report that state instead of forcing the pipeline forward.

Output Contract

After a successful run, this skill leaves behind these deliverables:

  • Category B implementation artifacts: committed source code, tests, config changes, and in-code documentation.
  • Category A orchestration artifacts: updated on disk but left uncommitted, including task status, implementation summary, file list, and optional Jira tracking.
  • Kickoff summary: a returned KICKOFF_REPORT covering readiness, workspace state, and Jira kickoff actions (or documented skips).
  • Task-only completion report: a concise user-facing report summarising the selected task's execution, commits, and gate verdicts.

Phase Guide

When you need...Read...
Artifact contracts and task readiness checks./references/contracts.md
Normal execution flow, kickoff, fix-loop order./references/pipeline.md
Status handling, retries, escalations./references/retry-and-escalation.md
Shared reviewer expectations./references/review-gate-policy.md

Execution Steps

  1. Read ./references/contracts.md and confirm the task is ready to cross the execution boundary.
  2. Read ./references/pipeline.md and follow its normal run order exactly.
  3. Dispatch only the next required subagent, passing explicit inputs and keeping only structured summaries in orchestration context.
  4. When a blocker, missing prerequisite, or failing gate appears, read the relevant recovery reference from ## Phase Guide and run only the targeted retry or escalation path.
  5. Report the selected task's outcome once the pipeline finishes or stops. Do not auto-continue to the next task.

Operating Constraints

  • Execute one task per invocation, then stop and wait for a new invocation for the next task.
  • Keep the task plan as the source of truth. If execution reveals a plan change is needed, escalate instead of silently rewriting the plan.
  • Preserve Category A artifacts on disk and out of git history.
  • Keep fix cycles targeted. Re-run only the failing verification or review steps, not the entire pipeline.
  • Treat missing required skills, missing tracker capability, or unresolved ambiguity as orchestration decisions. Surface them clearly and stop.

Example

Input:

  • TICKET_KEY=JNS-6065
  • TASK_NUMBER=3
  1. Validate the required per-task artifacts exist; Task 3 is not already complete.
  2. Dispatch execution-starter for kickoff (first Jira-side mutations after critique).

- KICKOFF_REPORT -> READY

  1. Dispatch task-executor with the artifact paths.

- EXECUTION_REPORT -> COMPLETE

  1. Dispatch documentation-writer with EXECUTION_REPORT, TICKET_KEY, and TASK_NUMBER.
  2. Dispatch requirements-verifier.

- VERIFICATION_RESULT -> PASS

  1. Run clean-code-reviewer, then architecture-reviewer, then security-auditor.

- All gates return a pass variant

  1. Report the kickoff outcome, final verdicts, commits, files changed, and any skipped Jira updates.

Input:

  • TICKET_KEY=JNS-6065
  • TASK_NUMBER=3
  1. execution-starter returns READY.
  2. task-executor returns COMPLETE.
  3. documentation-writer returns COMPLETE.
  4. requirements-verifier returns FAIL because one DoD item is still untested.
  5. Re-dispatch task-executor with only the verifier gap summary.
  6. Re-dispatch documentation-writer for the new Category B delta.
  7. Re-run requirements-verifier.

- VERIFICATION_RESULT -> PASS

  1. Continue into the review gates, and if one gate returns NEEDS FIXES, re-run only that gate's targeted fix cycle instead of the whole pipeline.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.34%
按下载量换算89

Claude

31.49%
按下载量换算75

Cursor

16.54%
按下载量换算39

Gemini CLI

9.52%
按下载量换算23

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills