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

jira-agile-managementJira agile management 搜索

Agent Skill

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

总安装

240

周安装

10

GitHub Stars

20

下载量

80
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/grandcamel/jira-assistant-skills --skill jira-agile-management

简介

用于处理 Jira 项目、任务、缺陷、Sprint、负责人和状态流转,适合辅助查询工单、汇总迭代进展或创建任务。

  • 适用于敏捷开发管理、迭代规划和团队进度跟踪等研究检索类场景。
  • 支持按项目、状态、负责人等维度查询和整理工单信息。
  • 使用时需确认项目权限和工作流规则,批量操作前应预览变更内容。
  • jira-agile-management 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

jira-agile

Agile and Scrum workflow management for JIRA - epics, sprints, backlogs, and story points.

Risk Levels

OperationRiskNotes
List sprints/epics-Read-only
Get backlog/velocity-Read-only
Create epic-Easily reversible (can delete)
Create subtask-Easily reversible (can delete)
Create sprint-Easily reversible (can delete)
Add issues to epic!Can move to different epic or remove
Move issues to sprint!Can move back to backlog
Set story points!Can update estimate
Start sprint!Sprint state change
Close sprint!Cannot undo - issues move to next sprint
Rank issues!Can re-rank

Risk Legend: - Safe, read-only | ! Caution, modifiable | !! Warning, destructive but recoverable | !!! Danger, irreversible

When to use this skill

Use this skill when you need to:

  • Create and manage epics for organizing large features
  • Link issues to epics for hierarchical planning
  • Create subtasks under parent issues
  • Track epic progress and story point completion
  • Create and manage sprints on Scrum boards
  • Move issues between sprints and backlog
  • Prioritize and rank backlog issues
  • Estimate issues with story points
  • Calculate team velocity from completed sprints

Do not use this skill when:

  • Creating individual stories/tasks without epic context (use jira-issue)
  • Searching issues by JQL (use jira-search)
  • Transitioning issues through workflow (use jira-lifecycle)
  • Managing time tracking/worklogs (use jira-time)
  • Discovering field configurations (use jira-fields)

See Skill Selection Guide for detailed guidance.

What this skill does

IMPORTANT: Always use the jira-as CLI. Never run Python scripts directly.

1. Epic Management

Create epics with Epic Name and Color fields, link stories/tasks to epics, and track epic progress with story point calculations.

See epic examples for detailed usage.

2. Subtask Management

Create subtasks linked to parent issues with automatic project inheritance and time estimate support.

3. Sprint Management

List and discover sprints for a project, create sprints with dates and goals, manage sprint lifecycle (start/close), move issues to sprints or backlog, and track sprint progress.

See sprint examples for detailed usage.

4. Backlog Management

View board backlog with epic grouping, rank issues by priority (before/after/top/bottom).

See backlog examples for detailed usage.

5. Story Points and Estimation

Set story points on single or bulk issues, validate against Fibonacci sequence, get estimation summaries grouped by status or assignee.

See estimation examples for detailed usage.

6. Velocity Tracking

Calculate team velocity from completed sprints. Shows average story points per sprint, trends, and historical data for planning.

Available Commands

Epic Management

jira-as agile epic create --project PROJ --summary "Mobile App MVP"
jira-as agile epic create --project PROJ --summary "MVP" --epic-name "Mobile MVP" --color blue
jira-as agile epic get PROJ-100 --with-children
jira-as agile epic add-issues --epic PROJ-100 --issues PROJ-101,PROJ-102
jira-as agile epic add-issues --epic PROJ-100 --jql "project = PROJ AND type = Story AND status = Open"
jira-as agile epic add-issues --epic PROJ-100 --issues PROJ-101 --dry-run  # Preview changes

Note: To remove issues from an epic, move them to a different epic or use jira-as issue update PROJ-103 --epic none to clear the epic link.

Subtask Management

jira-as agile subtask --parent PROJ-101 --summary "Implement login API"
jira-as agile subtask --parent PROJ-101 --summary "Task" --assignee self --estimate 4h

Sprint Management

jira-as agile sprint list --project DEMO                    # List all sprints for project
jira-as agile sprint list --project DEMO --state active     # Find active sprint
jira-as agile sprint list --board 123 --state closed        # List closed sprints
jira-as agile sprint list --board 123 --max-results 50      # Limit results
jira-as agile sprint get --board 123 --active               # Get active sprint details
jira-as agile sprint get 456 --include-issues               # Get sprint with issues
jira-as agile sprint create --board 123 --name "Sprint 42" --goal "Launch MVP"
jira-as agile sprint create --board 123 --name "Sprint 42" --start-date 2026-02-01 --end-date 2026-02-14
jira-as agile sprint move-issues --sprint 456 --issues PROJ-101,PROJ-102
jira-as agile sprint move-issues --sprint 456 --jql "project = PROJ AND sprint IS EMPTY"
jira-as agile sprint move-issues --backlog --issues PROJ-101,PROJ-102  # Move to backlog
jira-as agile sprint manage --sprint 456 --start
jira-as agile sprint manage --sprint 456 --close --move-incomplete-to 457
jira-as agile sprint manage --sprint 456 --name "Sprint 42 - Revised" --goal "Updated goal"

Backlog Management

jira-as agile backlog --board 123
jira-as agile backlog --board 123 --group-by epic
jira-as agile backlog --project PROJ                        # Use project instead of board
jira-as agile rank PROJ-101 --before PROJ-100
jira-as agile rank PROJ-101 --after PROJ-102
jira-as agile rank PROJ-101 --top --board 123               # Move to top (requires --board)
jira-as agile rank PROJ-101 --bottom --board 123            # Move to bottom (requires --board)

Story Points and Estimation

jira-as agile estimate PROJ-101 --points 5
jira-as agile estimates --project PROJ
jira-as agile estimates --sprint 456 --group-by assignee
jira-as agile estimates --epic "Mobile MVP" --group-by status  # Filter by epic name

Velocity Tracking

jira-as agile velocity --project PROJ                     # Last 3 sprints
jira-as agile velocity --project PROJ -n 5                # Last 5 sprints (-n is short for --sprints)
jira-as agile velocity --project PROJ --sprints 5         # Last 5 sprints
jira-as agile velocity --board 123 --output json          # JSON output

All commands support --help for full documentation.

Common options

All commands support:

  • --help - Show usage and examples

Most commands also support:

  • --output json - Output as JSON (query and creation commands)
  • --dry-run - Preview changes (where applicable)

See Options Reference for details.

Exit codes

CodeMeaning
0Success
1Error (validation, API, etc.)
130Cancelled (Ctrl+C)

Integration with other skills

SkillIntegration
jira-issueCreate stories/tasks, then add to epics
jira-searchFind issues by JQL for bulk operations
jira-lifecycleTransition epic children through workflow
jira-fieldsDiscover custom field IDs for your instance

Custom field IDs

Default Agile field IDs may vary by instance. See Field Reference for configuration.

Troubleshooting

See Troubleshooting Guide for common issues and solutions.

Best practices

For comprehensive guidance on sprint planning, estimation, and Agile workflows, see Best Practices Guide.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.06%
按下载量换算28

Claude

31.26%
按下载量换算25

Cursor

19.99%
按下载量换算16

Gemini CLI

9.91%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills