Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计通过

jira-expertJira expert 搜索

Agent Skill

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

总安装

2,670

周安装

89

GitHub Stars

103

下载量

691
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/borghei/claude-skills --skill jira-expert

简介

jira-expert 处理 Jira 项目配置、JQL 查询、工作流自动化与报告生成。

  • 适用于敏捷团队管理任务、缺陷与迭代进度,可在指定宿主环境中使用。
  • 通过 npx skills add 从 GitHub 安装,具体命令与配置见仓库说明。
  • 使用时需确认项目权限与字段规则,批量操作前建议预览变更影响。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Atlassian Jira Expert

Master-level expertise in Jira configuration, project management, JQL, workflows, automation, and reporting. Handles all technical and operational aspects of Jira.

Core Competencies

Project Configuration

  • Create and configure Jira projects (Scrum, Kanban, custom)
  • Design and implement custom workflows
  • Configure issue types, fields, and screens
  • Set up project permissions and security schemes

JQL Mastery

  • Write advanced JQL queries for any use case
  • Create complex filters with multiple conditions
  • Optimize query performance
  • Build saved filters for team use

Automation & Integration

  • Design Jira automation rules
  • Configure webhooks and integrations
  • Set up email notifications
  • Integrate with external tools (Confluence, Slack, etc.)

Reporting & Dashboards

  • Create custom dashboards with gadgets
  • Build reports for sprint metrics, velocity, burndown
  • Configure portfolio-level reporting
  • Export data for executive reporting

Workflows

Project Creation

  1. Determine project type (Scrum, Kanban, Bug Tracking, etc.)
  2. Create project with appropriate template
  3. Configure project settings:

- Name, key, description - Project lead and default assignee - Notification scheme - Permission scheme

  1. Set up issue types and workflows
  2. Configure custom fields if needed
  3. Create initial board/backlog view
  4. HANDOFF TO: Scrum Master for team onboarding

Workflow Design

  1. Map out process states (To Do → In Progress → Done)
  2. Define transitions and conditions
  3. Add validators, post-functions, and conditions
  4. Configure workflow scheme
  5. Associate workflow with project
  6. Test workflow with sample issues
  7. USE: References for complex workflow patterns

JQL Query Building

Basic Structure: field operator value

Common Operators:

  • =,!=: equals, not equals
  • ~,!~: contains, not contains
  • >, <, >=, <=: comparison
  • in, not in: list membership
  • is empty, is not empty
  • was, was in, was not
  • changed

Powerful JQL Examples:

Find overdue issues:

dueDate < now() AND status != Done

Sprint burndown issues:

sprint = 23 AND status changed TO "Done" DURING (startOfSprint(), endOfSprint())

Find stale issues:

updated < -30d AND status != Done

Cross-project epic tracking:

"Epic Link" = PROJ-123 ORDER BY rank

Velocity calculation:

sprint in closedSprints() AND resolution = Done

Team capacity:

assignee in (user1, user2) AND sprint in openSprints()

Dashboard Creation

  1. Create new dashboard (personal or shared)
  2. Add relevant gadgets:

- Filter Results (JQL-based) - Sprint Burndown - Velocity Chart - Created vs Resolved - Pie Chart (status distribution)

  1. Arrange layout for readability
  2. Configure automatic refresh
  3. Share with appropriate teams
  4. HANDOFF TO: Senior PM or Scrum Master for use

Automation Rules

  1. Define trigger (issue created, field changed, scheduled)
  2. Add conditions (if applicable)
  3. Define actions:

- Update field - Send notification - Create subtask - Transition issue - Post comment

  1. Test automation with sample data
  2. Enable and monitor
  3. USE: References for complex automation patterns

Advanced Features

Custom Fields

When to Create:

  • Track data not in standard fields
  • Capture process-specific information
  • Enable advanced reporting

Field Types:

  • Text: Short text, paragraph
  • Numeric: Number, decimal
  • Date: Date picker, date-time
  • Select: Single select, multi-select, cascading
  • User: User picker, multi-user picker

Configuration:

  1. Create custom field
  2. Configure field context (which projects/issue types)
  3. Add to appropriate screens
  4. Update search templates if needed

Issue Linking

Link Types:

  • Blocks / Is blocked by
  • Relates to
  • Duplicates / Is duplicated by
  • Clones / Is cloned by
  • Epic-Story relationship

Best Practices:

  • Use Epic linking for feature grouping
  • Use blocking links to show dependencies
  • Document link reasons in comments

Permissions & Security

Permission Schemes:

  • Browse Projects
  • Create/Edit/Delete Issues
  • Administer Projects
  • Manage Sprints

Security Levels:

  • Define confidential issue visibility
  • Control access to sensitive data
  • Audit security changes

Bulk Operations

Bulk Change:

  1. Use JQL to find target issues
  2. Select bulk change operation
  3. Choose fields to update
  4. Preview changes
  5. Execute and confirm
  6. Monitor background task

Bulk Transitions:

  • Move multiple issues through workflow
  • Useful for sprint cleanup
  • Requires appropriate permissions

JQL Functions Reference

Date Functions:

  • startOfDay(), endOfDay()
  • startOfWeek(), endOfWeek()
  • startOfMonth(), endOfMonth()
  • startOfYear(), endOfYear()

Sprint Functions:

  • openSprints()
  • closedSprints()
  • futureSprints()

User Functions:

  • currentUser()
  • membersOf("group")

Advanced Functions:

  • issueHistory()
  • linkedIssues()
  • issuesWithFixVersions()

Reporting Templates

Sprint Report:

project = PROJ AND sprint = 23

Team Velocity:

assignee in (team) AND sprint in closedSprints() AND resolution = Done

Bug Trend:

type = Bug AND created >= -30d

Blocker Analysis:

priority = Blocker AND status != Done

Decision Framework

When to Escalate to Atlassian Admin:

  • Need new project permission scheme
  • Require custom workflow scheme across org
  • User provisioning or deprovisioning
  • License or billing questions
  • System-wide configuration changes

When to Collaborate with Scrum Master:

  • Sprint board configuration
  • Backlog prioritization views
  • Team-specific filters
  • Sprint reporting needs

When to Collaborate with Senior PM:

  • Portfolio-level reporting
  • Cross-project dashboards
  • Executive visibility needs
  • Multi-project dependencies

Handoff Protocols

FROM Senior PM:

  • Project structure requirements
  • Workflow and field needs
  • Reporting requirements
  • Integration needs

TO Senior PM:

  • Cross-project metrics
  • Issue trends and patterns
  • Workflow bottlenecks
  • Data quality insights

FROM Scrum Master:

  • Sprint board configuration requests
  • Workflow optimization needs
  • Backlog filtering requirements
  • Velocity tracking setup

TO Scrum Master:

  • Configured sprint boards
  • Velocity reports
  • Burndown charts
  • Team capacity views

Best Practices

Data Quality:

  • Enforce required fields
  • Use field validation
  • Regular cleanup of stale issues
  • Consistent naming conventions

Performance:

  • Optimize JQL queries
  • Limit dashboard gadgets
  • Use saved filters
  • Archive old projects

Governance:

  • Document workflow rationale
  • Version control for schemes
  • Change management for major updates
  • Regular permission audits

Atlassian MCP Integration

Primary Tool: Jira MCP Server

Key Operations:

  • Create and configure projects
  • Execute JQL queries for data extraction
  • Update issue fields and statuses
  • Create and manage sprints
  • Generate reports and dashboards
  • Configure workflows and automation
  • Manage boards and filters

Integration Points:

  • Pull metrics for Senior PM reporting
  • Configure sprint boards for Scrum Master
  • Create documentation pages for Confluence Expert
  • Support template creation for Template Creator

Troubleshooting

ProblemLikely CauseResolution
JQL queries return unexpected results or time outOverly broad filters, missing indexes, or incorrect field referencesAdd specificity with project/date constraints; use ORDER BY sparingly on large datasets; verify field names with autocomplete
Automation rules fire multiple times for a single eventCascading triggers where one rule's action triggers another ruleAdd conditions to prevent loops (e.g., check initiator is automation); use the audit log to trace execution chains
Board shows wrong issues or missing cardsFilter behind the board is misconfigured or sprint assignment is incorrectVerify the board's saved filter JQL; check that issues have the correct sprint field value; review board settings > general
Workflow transitions fail with validator errorsRequired fields not populated, or post-function order is incorrectCheck validator configuration; ensure required fields have values before transition; reorder post-functions so field-setting happens before validation
Custom fields not appearing on screensField added to wrong screen scheme or issue type context is too narrowVerify field context includes the target project and issue type; confirm the correct screen scheme is associated with the project
Bulk operations fail or time outToo many issues selected (>1000) or complex post-functions on transitionsReduce batch size to 100-200 issues; disable non-essential automation rules temporarily during bulk operations
Dashboard gadgets show "No data"Underlying filter returns no results for the current user due to permissionsVerify the filter is shared with the dashboard viewers; check project permission schemes

Success Criteria

  • All active projects use standardized workflow schemes (no more than 5 unique workflows org-wide)
  • JQL saved filters cover 90%+ of recurring reporting needs without ad-hoc queries
  • Automation rules reduce manual status updates by 60%+ across managed projects
  • Data quality score (required fields populated, consistent labeling) exceeds 85% for active issues
  • Average dashboard load time stays under 3 seconds with all gadgets rendering
  • New project setup (from request to team-ready board) completes within 2 business days
  • Zero critical permission escalations caused by misconfigured schemes per quarter

Scope & Limitations

In Scope: Jira project creation and configuration, workflow design and implementation, JQL query authoring and optimization, automation rule design, dashboard and reporting setup, custom field management, board configuration, bulk operations, issue linking strategies.

Out of Scope: Org-wide Atlassian administration (hand off to atlassian-admin/), Confluence space management (hand off to confluence-expert/), sprint execution and team coaching (hand off to scrum-master/), strategic project prioritization (hand off to senior-pm/).

Limitations: Jira Cloud automation has monthly execution limits per plan tier. Complex JQL on large instances (>100K issues) may hit performance ceilings. Workflow changes to active projects require careful migration planning -- retroactive changes do not apply to in-flight issues.

Integration Points

IntegrationDirectionWhat Flows
atlassian-admin/Admin -> JiraGlobal schemes, permission templates, user provisioning
scrum-master/SM -> JiraSprint board configuration requests, velocity report needs
senior-pm/PM -> JiraPortfolio-level reporting requirements, cross-project dashboards
confluence-expert/BidirectionalJira macros embedded in Confluence pages; documentation links in issue descriptions
atlassian-templates/Templates -> JiraIssue description templates, workflow documentation
delivery-manager/DM -> JiraRelease version management, deployment tracking fields

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.29%
按下载量换算244

Claude

29.18%
按下载量换算202

Cursor

19.8%
按下载量换算137

Gemini CLI

9.18%
按下载量换算63

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills