triage-alert
Triage a security alert or case. Use when given an ALERT_ID or CASE_ID to assess if it's a real threat. Enriches IOCs, searches SIEM for context, and determines if the alert should be closed (false positive) or escalated for investigation.
适合你,如果每天需要处理大量安全告警并决定是否升级
npx oh-my-skill add dandye/ai-runbooks/triage-alertcurl -fsSL https://oh-my-skill.com/install.sh | bash -s -- dandye/ai-runbooks/triage-alertnpx oh-my-skill verify dandye/ai-runbooks/triage-alert怎么用
商店整理自技能原文 · 版本 086cbf6 · 表述以原文为准当你提供告警ID或案件ID后,Claude会自动执行分诊流程:获取告警详情、搜索SIEM、丰富威胁情报,最终判断它是真实威胁(升级)还是误报(关闭),并输出证据摘要和后续步骤。
当你给出 ALERT_ID 或 CASE_ID 时触发。
技能原文 SKILL.md
Alert Triage Skill
Perform standardized initial assessment of security alerts to determine if they represent real threats requiring investigation or can be closed as false positives.
Inputs
You need one of these identifiers to begin:
ALERT_ID- The alert identifierCASE_ID- The case identifier
Workflow
Step 1: Gather Initial Context
Retrieve full details about the alert/case:
Use secops-soar tools: - get_case_full_details(case_id) - Get case metadata and context - list_alerts_by_case(case_id) - List all alerts in the case - list_events_by_alert(alert_id) - Get triggering events
Extract and note:
- Alert type and severity
- Key entities involved (IPs, domains, hashes, users, hostnames)
- Triggering events and timestamps
Note: Duplicate detection should be handled by invoking/check-duplicatesbefore this skill, or by using the/full-triage-alertworkflow which orchestrates both skills in the correct sequence.
Step 2: Find Related Open Cases
Search for other open cases involving the same entities:
Use secops-soar.list_cases with: - Search terms = key entities from Step 1 - Status filter = "Opened"
Note any related cases for correlation.
Step 3: Alert-Specific SIEM Search
Perform a targeted SIEM search based on the alert type:
Use secops-mcp.search_security_events with relevant query
By alert type:
- Suspicious Login: Search login events (success/failure) for user/source IP around alert time
- Malware Detection: Search process execution, file mods, network events for the hash/endpoint
- Network Alert: Search network flows, DNS lookups for source/destination IPs/domains
Step 4: Enrich Key Entities
For each key entity (IP, domain, hash, URL), gather threat intelligence:
GTI Enrichment (use gti-mcp tools):
get_ip_address_report(ip)- IP reputation and contextget_domain_report(domain)- Domain reputationget_file_report(hash)- File/hash analysisget_url_report(url)- URL reputation
SIEM Enrichment (use secops-mcp tools):
lookup_entity(entity)- Entity summary from SIEMget_ioc_matches(hours_back)- Check if IOC appears in threat feeds
Step 5: Make Assessment
Based on all gathered evidence, classify the alert:
| Classification | Criteria | Action | |---------------|----------|--------| | False Positive (FP) | No malicious indicators, known benign activity | Close | | Benign True Positive (BTP) | Real detection but authorized/expected activity | Close | | True Positive (TP) | Confirmed malicious indicators or suspicious behavior | Escalate | | Suspicious | Inconclusive but warrants investigation | Escalate |
Step 6: Take Action
If FP or BTP:
- Document findings in case comments explaining the rationale
- Close the case/alert:
- Use
secops-soar.siemplify_close_caseorsiemplify_close_alert - Closure reason:
NOT_MALICIOUS - Root cause: Use
get_case_settings_root_causesto get valid options (e.g., "Legit action", "Normal behavior")
If TP or Suspicious:
- Optionally adjust priority with
secops-soar.change_case_priority - Document initial findings and assessment in case comments
- Escalate to Tier 2 or trigger appropriate investigation runbook:
- Suspicious login →
suspicious_login_triage - Malware →
malware_triage - IOC-focused →
deep_dive_ioc_analysis
Output Requirements
After completing triage, provide:
- Alert Status: Closed (with reason) or Escalated
- Classification: FP, BTP, TP, or Suspicious
- Evidence Summary: Key findings from enrichment and SIEM searches
- Rationale: Why this classification was chosen
- Next Steps: What happens next (closed, assigned to whom, which runbook triggered)
Quick Reference
SOAR Tools:
get_case_full_details,list_alerts_by_case,list_events_by_alertpost_case_comment,change_case_prioritysiemplify_get_similar_cases,siemplify_close_case,siemplify_close_alert
SIEM Tools:
lookup_entity,get_ioc_matches,search_security_events
GTI Tools:
get_file_report,get_domain_report,get_ip_address_report,get_url_report
For detailed workflow diagrams, completion criteria, and evaluation rubric, see [reference.md](./reference.md).