security-alert-triage
Interactive workflow for investigating and triaging security alerts — from alert review through enrichment, investigation, and resolution.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Interactive workflow for investigating and triaging security alerts — from alert review through enrichment, investigation, and resolution.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Debug and analyze LLM eval runs — view traces, compare runs, investigate failures, track costs. Use when debugging @kbn/evals failures, comparing eval runs, or analyzing LLM performance.
Start your security session with a personalized briefing — attacks, alerts, cases, rules, threat intel. Use as the first thing when starting security work.
Guide users from zero to a working Elastic cluster — Cloud or on-prem, connection config, first queries, and next steps.
Interactive guide for creating an APM service overview dashboard — discovers service data, presents metrics, and creates a tailored dashboard.
Interactive guide for creating SLOs from discovered APM and metric data — identifies candidates, lets user configure targets, and creates SLOs.
Create, configure, and manage Elasticsearch indices — mappings, settings, templates, data streams, and lifecycle policies.
基于 SOC 职业分类
| name | security-alert-triage |
| description | Interactive workflow for investigating and triaging security alerts — from alert review through enrichment, investigation, and resolution. |
Guide the user through investigating and resolving security alerts in their Elastic Security deployment.
Use when the user asks to:
Also activates on keywords: "alert triage", "alert investigation", "SOC workflow", "alert queue", "security alerts", "alert review"
Do NOT use when:
security-full-setup)security-detection-engineering)Call get_cluster_context to get cached cluster awareness — version, health, installed features, and alerting capabilities.
Call triage_alerts with operation: "list" to get the current alert queue.
Present the alert overview:
Ask the user which alerts to investigate:
Call triage_alerts with operation: "get" and the alert ID to retrieve full alert details.
Present the alert context:
Gather additional context around the alert:
Host context:
Call esql_query to find recent activity on the affected host:
FROM logs-endpoint* | WHERE host.name == "<host>" AND @timestamp >= NOW() - 1h | STATS count = COUNT(*) BY event.action | SORT count DESC | LIMIT 20
User context:
Call esql_query to find the user's recent authentication activity:
FROM logs-* | WHERE user.name == "<user>" AND event.category == "authentication" AND @timestamp >= NOW() - 24h | STATS count = COUNT(*) BY event.outcome, source.ip | SORT count DESC
Process tree (for endpoint alerts):
Call elasticsearch_api to query the process tree using process.entity_id.
Present the enrichment findings and highlight anomalies.
Ask the user for their assessment:
Call manage_cases with operation: "create" to create a case:
Call triage_alerts with operation: "update_status" to set the alert to acknowledged.
Call kibana_api with POST /api/detection_engine/rules/<rule_id>/exceptions to create an exception:
Call triage_alerts with operation: "update_status" to set the alert to closed.
Suggest additional investigative queries:
Present:
get_cluster_context — cached cluster awareness (version, health, capabilities)triage_alerts — list, view, and update alert statusmanage_cases — create and manage investigation casesesql_query — run investigative queries for enrichmentelasticsearch_api — deep queries for process trees, network activitykibana_api — create exceptions, manage rule configurationelastic://docs/api/kibana — Detection Engine, Alerting, and Exception APIselastic://docs/api/security — Cases, Timeline, and Investigation APIsES_URL and ES_API_KEY configuredKIBANA_URL configured for alert and case managementInteractive Dashboard: When using Claude Desktop or other ext-apps hosts,
security_inboxserves as the entry point for triage andtriage_alertsrenders an interactive alert triage dashboard with severity filters, AI verdict cards, and acknowledge workflows. In Cursor/CLI, it returns markdown.
security-case-management — escalate triaged alerts into investigation casessecurity-detection-engineering — tune or create rules based on triage findings