一键导入
jira
Jira integration for searching recent development context, tracking incidents, and managing issues during RCA
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Jira integration for searching recent development context, tracking incidents, and managing issues during RCA
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
GitHub code repository integration for investigating code changes, deployments, commits, PRs, and suggesting fixes during RCA
CloudBees CI integration for investigating builds, deployments, pipeline stages, and test results during RCA
CloudBees Operations Center integration for cross-controller deployment visibility and feature flag correlation during RCA
Bitbucket code repository integration for managing repos, branches, PRs, issues, and CI/CD pipelines
On-prem Kubernetes cluster integration for running kubectl commands via Aurora agent relay or uploaded kubeconfig
Fly.io integration for application monitoring, machine lifecycle management, metrics, logs, and incident remediation
基于 SOC 职业分类
| name | jira |
| id | jira |
| description | Jira integration for searching recent development context, tracking incidents, and managing issues during RCA |
| category | knowledge |
| connection_check | {"method":"get_token_data","provider_key":"jira","required_any_fields":["access_token","pat_token"],"feature_flag":"is_jira_enabled"} |
| tools | ["jira_search_issues","jira_get_issue","jira_add_comment","jira_create_issue","jira_update_issue","jira_link_issues"] |
| index | Knowledge -- search Jira for recent changes, open bugs, incidents; create/comment on issues |
| rca_priority | 1 |
| allowed-tools | jira_search_issues, jira_get_issue, jira_add_comment, jira_create_issue, jira_update_issue, jira_link_issues |
| metadata | {"author":"aurora","version":"1.0"} |
Jira integration for searching recent development context during Root Cause Analysis and tracking incidents afterward. Jira is a mandatory first step in any RCA investigation -- search here BEFORE infrastructure or CI/CD tools.
Jira operates in one of two modes based on user preference (jira_mode):
comment_only (default): Only jira_search_issues, jira_get_issue, and jira_add_comment are available.full: All six tools are available including create, update, and link.You MUST call Jira tools BEFORE any infrastructure or CI/CD investigation. Skipping this step is a failure of the investigation.
Your FIRST tool calls MUST be jira_search_issues.
Investigation tools (always available):
jira_search_issues(jql='...') -- Search Jira issues using JQL. Returns matching issues with key, summary, status, assignee, labels.jira_get_issue(issue_key='PROJ-123') -- Get full details of a Jira issue by key. Returns description, status, comments, linked PRs.jira_add_comment(issue_key='PROJ-123', comment='...') -- Add a comment to a Jira issue. Non-destructive operation.Write tools (full mode only):
jira_create_issue(project_key='PROJ', summary='...', description='...', issue_type='Bug') -- Create a new Jira issue in a project.jira_update_issue(issue_key='PROJ-123', ...) -- Update fields on an existing Jira issue.jira_link_issues(inward_issue='PROJ-123', outward_issue='PROJ-456', link_type='Relates') -- Create a link between two Jira issues (Relates, Blocks, Clones, etc.).jira_search_issues(jql='text ~ "SERVICE" AND updated >= -7d ORDER BY updated DESC') -- Recent tickets for this servicejira_search_issues(jql='type in (Bug, Incident) AND status != Done AND updated >= -14d ORDER BY updated DESC') -- Open bugs/incidentsjira_search_issues(jql='type in (Story, Task) AND status = Done AND updated >= -3d ORDER BY updated DESC') -- Recently completed work (likely deployed)jira_get_issue(issue_key='PROJ-123') -- Read the description, linked PRs, comments for context on what changedIf a ticket mentions a DB migration, focus on DB connectivity. If a ticket mentions a config change, check configs first.
jira_add_comment(issue_key='PROJ-123', comment='update') -- Add findings to existing issueurl field. Always share this link with the user as a markdown link so they can click through to Jira.jira_create_issue(project_key='PROJ', summary='title', description='details', issue_type='Bug') -- Create incident tracking issuejira_add_comment(issue_key='PROJ-123', comment='update') -- Add findings to existing issueurl field. Always share this link with the user as a markdown link so they can click through to Jira.You MUST call Jira tools BEFORE any infrastructure investigation.
jira_search_issues(jql='text ~ "{escaped_service}" AND updated >= -7d ORDER BY updated DESC') -- Recent ticketsjira_search_issues(jql='type in (Bug, Incident) AND status != Done AND updated >= -14d ORDER BY updated DESC') -- Open bugsjira_search_issues(jql='type in (Story, Task) AND status = Done AND updated >= -3d ORDER BY updated DESC') -- Recently completedjira_get_issue(issue_key='PROJ-123') -- Description, linked PRs, commentsUse findings to NARROW infrastructure investigation.
CRITICAL: During investigation, ONLY use jira_search_issues and jira_get_issue. Jira filing happens automatically after investigation completes.