researching-jira-issues

작성자: bitwarden

Use whenever the user mentions a Jira issue key and wants more than a surface-level lookup — "Read PROJ-123", "What's PROJ-123 about?", "Give me context on…

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

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
  2. 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.
  3. 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
  2. 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
  3. 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
  4. 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
  2. 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
  3. 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.

bitwarden의 다른 스킬

analyzing-git-sessions
bitwarden
특정 기간이나 커밋 범위 내의 Git 커밋과 변경 사항을 분석하여 코드 리뷰, 회고, 작업 로그 또는 세션을 위한 구조화된 요약을 제공합니다.
official
figma-to-angular
bitwarden
이 스킬은 Figma 디자인 스펙을 Bitwarden Clients 모노레포 내에서 Storybook 스토리와 함께 완전히 구현된 Angular 컴포넌트로 변환합니다. 출력물은 모든 코드베이스 규칙을 따르면서 시각적으로 디자인과 일치해야 합니다.
official
agent-access
bitwarden
Retrieve login credentials, API keys, and secrets (username, password, TOTP) from the user's Bitwarden vault via aac. Use when you need credentials to sign…
official
action-audit
bitwarden
조직 전반의 GitHub Actions 사용을 감사합니다. 특정 액션을 검색하거나(인시던트 모드) 모든 워크플로 파일을 스캔하여 비준수 액션을 찾습니다…
official
action-remediate
bitwarden
Remediate GitHub Actions action findings identified by the action-audit skill. Applies the appropriate fix per action type — `@main` ref for internal…
official
analyzing-code-security
bitwarden
이 스킬은 사용자가 "코드의 보안 문제를 분석"하거나, "OWASP 취약점을 확인"하거나, "CWE Top 25에 대해 코드를 검토"하도록 요청할 때 사용해야 합니다. "찾…
official
applying-bitwarden-branding
bitwarden
Apply Bitwarden brand standards — logo usage, color palette, typography, iconography, and capitalization rules — grounded in bitwarden.com/brand and the…
official
architecting-solutions
bitwarden
Architecting solutions at the team level while staying coherent with Bitwarden's holistic architecture. Covers security mindset, architectural judgment,…
official