원클릭으로
opsgenie
OpsGenie / JSM Operations integration for querying alerts, incidents, services, on-call schedules, and teams during RCA investigations
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
OpsGenie / JSM Operations integration for querying alerts, incidents, services, on-call schedules, and teams during RCA investigations
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
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
| name | opsgenie |
| id | opsgenie |
| description | OpsGenie / JSM Operations integration for querying alerts, incidents, services, on-call schedules, and teams during RCA investigations |
| category | incident_management |
| connection_check | {"method":"get_token_data","provider_key":"opsgenie","required_field":"api_key"} |
| tools | ["query_opsgenie"] |
| index | Incident management -- query alerts, incidents, services, on-call schedules, teams |
| rca_priority | 2 |
| allowed-tools | query_opsgenie |
| metadata | {"author":"aurora","version":"1.0"} |
OpsGenie (or Jira Service Management Operations) integration for querying alert and incident data during Root Cause Analysis. Use ONLY the query_opsgenie tool. All data is accessed via a single unified tool with resource_type parameter.
query_opsgenie(resource_type=TYPE, query=QUERY, identifier=ID, time_from=START, time_to=END, limit=N)
'alerts' -- List alerts. query=OpsGenie query syntax e.g. "status=open AND priority=P1"'alert_details' -- Get full alert with logs and notes. identifier=alert ID (required)'incidents' -- List incidents. query=OpsGenie query syntax (optional)'incident_details' -- Get incident with timeline. identifier=incident ID (required)'services' -- List registered services'on_call' -- Get on-call participants. identifier=schedule ID (optional; omit to list all)'schedules' -- List on-call schedules'teams' -- List teamsstatus=openpriority=P1status=open AND priority=P1tag=productionresponders=team-namequery_opsgenie(resource_type='alerts', query='status=open AND priority=P1')query_opsgenie(resource_type='alert_details', identifier='alert-id-here')query_opsgenie(resource_type='incidents', time_from='-24h')query_opsgenie(resource_type='on_call')query_opsgenie(resource_type='services')Step 1 -- Check for related open alerts:
query_opsgenie(resource_type='alerts', query='status=open', time_from='-6h')
Step 2 -- Get details on the triggering alert (logs, notes, timeline):
query_opsgenie(resource_type='alert_details', identifier='ALERT_ID')
Step 3 -- Check for correlated incidents:
query_opsgenie(resource_type='incidents', time_from='-24h')
Step 4 -- Identify affected services:
query_opsgenie(resource_type='services')
Step 5 -- Check who is on-call for escalation:
query_opsgenie(resource_type='on_call')
Step 6 -- Review team ownership:
query_opsgenie(resource_type='teams')
query_opsgenie tool. Do not attempt direct API calls.resource_type parameter is required and must be one of: alerts, alert_details, incidents, incident_details, services, on_call, schedules, teams.alert_details, incident_details) require the identifier parameter.'-1h', '-24h') or ISO 8601 timestamps.