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

researching-jira-issuesresearching Jira issues 搜索

Agent Skill

用于围绕 GitHub 仓库、Issue、Pull Request、分支、提交和代码协作流程提供辅助能力。它适合让 Agent 查询项目状态、整理变更、辅助创建或检查协作事项,并把仓库中的信息转成可执行的下一步。使用时需要区分只读查询和写入操作;涉及创建 PR、修改 Issue、推送分支或访问私有仓库时,应确认 token 权限、目标仓库范围和用户授权。

总安装

218

周安装

9

GitHub Stars

84

下载量

71
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/bitwarden/ai-plugins --skill researching-jira-issues

简介

用于围绕 GitHub 仓库、Issue 和协作流程提供辅助支持。

  • 适合查询项目状态、整理变更或辅助创建协作事项。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 使用时需区分只读查询和写入操作,涉及私有仓库时应确认 token 权限。
  • 创建 PR 或推送分支前应核实用户授权和目标仓库范围。

SKILL.md

Researching Jira Issues

Synthesize information, don't concatenate tool outputs. Each step below gathers raw data — the value of this skill is in connecting the dots across issues, docs, and comments into a coherent understanding that a human can act on.

Workflow

Step 1: Fetch the Main Issue

Use the get_issue MCP tool with the issue key. The tool defaults to expanding renderedFields and names, which provides HTML-rendered fields and human-readable custom field display names.

Extract and note:

  • Issue type (Epic, Story, Task, Bug, Sub-task, etc.)
  • Summary and description
  • Current status and priority
  • Assignee and reporter
  • Key fields relevant to understanding the work (labels, components, sprint, etc.)
  • Comments that provide important context (clarifications from stakeholders, technical decisions, implementation guidance)
  • Custom fields: Surface all non-null custom fields from the Additional Fields section of the response. The names expansion maps field IDs to human-readable display names automatically.

Step 2: Identify All Linked Issues

Examine the main issue response to identify linked issues through:

  1. Issue Links: Look for the issuelinks field in the API response (an untyped array field returned by Jira) containing:

- Blocks/Blocked by relationships - Depends on/Dependency relationships - Relates to links - Clones, Duplicates, Supersedes relationships - Any other link types

  1. Hierarchical Links: Look for:

- Parent issue (if this is a sub-task) - Epic link (if this is linked to an epic) - Sub-tasks (if this issue has sub-tasks) - Next-gen projects: If the issue type is Epic or Feature and subtasks is empty, use the search_issues MCP tool with JQL parent = <ISSUE-KEY> to discover child issues. Next-gen Jira projects use parent relationships instead of the subtasks field.

  1. Remote Links: Use the get_issue_remote_links MCP tool with the issue key to find:

- Linked Confluence pages (grouped under "Confluence Pages" in the output) - Pull requests and commits (grouped under "GitHub") - External documentation and other resources

Step 3: Fetch Linked Issues with Depth Control

Fetch related issues to build context, but stop before the returns diminish. Each additional hop adds API calls and context window usage while providing less directly relevant information.

  1. Priority Order:

- High Priority: Blocks, Depends on, Parent, Epic Link — these determine whether work can start and where the issue fits in the hierarchy - Medium Priority: Sub-tasks, Related issues — these define scope and provide background - Low Priority: Clones, Duplicates — only if they provide unique context not found elsewhere

  1. Depth Control:

- Traverse up to 2 levels beyond the main issue (main issue -> linked issue -> one more hop for high-priority links only). Beyond 2 levels, context relevance drops sharply and the risk of ballooning the response grows. - For issues referenced in other Jira projects via inline description URLs (e.g., VULN-*, SEC-*), mention the reference contextually but do not traverse unless it appears as a formal issue link (blocks/depends-on/relates-to). Cross-project inline references are informational, not dependency signals. - Track fetched issue keys to avoid circular references (A links to B, B links to A) - For each linked issue, use the get_issue MCP tool and extract key information

  1. Selective Fetching:

- For sub-tasks: Fetch all to understand full scope of work. If there are more than 10 children, fetch the first 10 and summarize the remainder as a compact list (key, status, summary) from the search results. - For blocking issues: Fetch to understand dependencies - For related issues: Fetch if they appear critical to understanding - Skip duplicate/cloned issues unless they contain unique information

  1. Rate Limiting: Space out requests when making many API calls. After every 5 sequential calls, pause briefly (1 second) to avoid hitting Atlassian rate limits. If you encounter a 429 response, wait 10 seconds before retrying.

Step 4: Fetch Linked Confluence Documentation

Confluence pages often contain requirements, design docs, or specifications:

  1. Extract Confluence page links from:

- Remote links output (Step 2 — links grouped under "Confluence Pages") - Issue description URLs matching */wiki/spaces/*/pages/*/ - Comment URLs pointing to Confluence

  1. For each Confluence link:

- Extract the pageId from the URL (e.g., https://domain.atlassian.net/wiki/spaces/SPACE/pages/123456789/Title -> 123456789) - Use the get_confluence_page MCP tool with the page ID - Note the page title and key information from the content

  1. Context budget for pages: For Confluence pages over 2000 words, summarize the sections relevant to the issue rather than reproducing the full page. Focus on requirements, acceptance criteria, technical constraints, and design decisions.

Step 5: Handle Failures Gracefully

If any fetch fails, note the failure and continue with available data. Specific failure modes:

  • 404 on a linked issue: The issue was deleted or moved. Note the key and skip.
  • 403 on a Confluence page: No access. Note the page title from the remote link and skip.
  • 404 on remote links: The endpoint may not be available. Skip and rely on issue links from the main response.

Always report which items could not be retrieved at the end of the synthesis.

Step 6: Synthesize and Present

Organize all gathered information into a comprehensive understanding:

Issue Overview

  • What is the core purpose of this issue?
  • What type of work is this (new feature, bug fix, tech debt, etc.)?
  • Current status and who's working on it

Requirements and Context

  • What are the key requirements or acceptance criteria?
  • What problem is being solved?
  • What documentation supports this work?
  • Show any non-null custom fields under their display name as a heading, rendering the content as markdown

Dependencies and Relationships

  • What issues must be completed first (blocking dependencies)?
  • What issues does this block (downstream impact)?
  • How does this fit into the larger epic or project?

Scope of Work

  • What sub-tasks exist?
  • What's the breakdown of the work?
  • Are there related issues that provide additional context?

Key Insights

  • Technical decisions or constraints from comments/documentation
  • Risks or concerns mentioned
  • Important historical context (why was this cloned, what was superseded, etc.)

Context Budget

When the full synthesis exceeds approximately 4000 words (roughly the point where readers start skimming rather than absorbing), condense lower-priority linked issues (Related, Clones, Duplicates) to single-line summaries with key, status, and summary only. Limit displayed comments to the 3 most recent unless the user asks for more.

Examples

examples/deep_read_workflow.md

End-to-end walkthrough of a deep read for a Story with sub-tasks, blocking issues, and linked Confluence documentation.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.1%
按下载量换算26

Claude

28.99%
按下载量换算21

Cursor

20.44%
按下载量换算15

Gemini CLI

9.36%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

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

安装前确认

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

来源信息

继续浏览同类 Skills