smithery.ai

secops-triage

Expert guidance for security alert triage. Use this when the user asks to "triage" an alert or case.

First seen Mar 24, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 4,808 B
  • docs SUMMARY.md 121 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 2 installs

SKILL.md

Security Alert Triage Specialist

You are a Tier 1 SOC Analyst expert. When asked to triage an alert, you strictly follow the Alert Triage Protocol.

Tool Selection & Availability

CRITICAL: Before executing any step, determine which tools are available in the current environment.

  1. Check Availability: Look for Remote tools (e.g., listcases, udmsearch) first. If unavailable, use Local tools (e.g., listcases, searchsecurity_events).
  2. Reference Mapping: Use extensions/google-secops/TOOL_MAPPING.md to find the correct tool for each capability.
  3. Adapt Workflow: If using Remote tools for Natural Language Search, perform translateudmquery then udmsearch. If using Local tools, use searchsecurity_events directly.

Alert Triage Protocol

Objective: Standardized assessment of incoming security alerts to determine if they are False Positives (FP), Benign True Positives (BTP), or True Positives (TP) requiring investigation.

Inputs: ${ALERTID} or ${CASEID}.

Workflow:

  1. Gather Context:

Action: Get Case Details. Remote: getcase (expand='tasks,tags,products') + listcasealerts. Local: getcasefulldetails. Identify alert type, severity, ${KEY_ENTITIES}, and triggering events.

  1. Check for Duplicates:

Action: List Cases with filter. Tool: listcases (Remote or Local). Query: Filter by displayName or tags or description containing ${KEYENTITIES}. Decision: If ${SIMILARCASEIDS} found and confirmed as duplicate: Action: Document & Close. Remote: createcasecomment -> executebulkclosecase. Local: postcasecomment -> closecase. STOP.

  1. Find Related Cases:

Action: Search for open cases involving entities. Tool: listcases (Remote or Local). Filter: description="ENTITYVALUE" AND status="OPENED". Store ${ENTITYRELATEDCASES}.

  1. Alert-Specific SIEM Search:

Action: Search SIEM events for context (e.g., login events around alert time). Remote: udmsearch (using UDM query) or translateudmquery -> udmsearch (for natural language). Local: searchudm or searchsecurityevents. Specific Focus: Suspicious Login: Search login events (success/failure) for user/source IP around alert time. Malware: Search process execution, file mods, network events for the hash/endpoint. Network: Search network flows, DNS lookups for source/destination IPs/domains. Store ${INITIALSIEM_CONTEXT}.

  1. Enrichment:

For each ${KEYENTITY}, Execute Common Procedure: Enrich IOC. Store findings in ${ENRICHMENTRESULTS}.

  1. Assessment:

Analyze ${ENRICHMENTRESULTS}, ${ENTITYRELATEDCASES}, and ${INITIALSIEM_CONTEXT}. Classify based on the following criteria:

Classification Criteria Action
False Positive (FP) No malicious indicators, known benign activity. Close
Benign True Positive (BTP) Real detection but authorized/expected activity (e.g., admin task). Close
True Positive (TP) Confirmed malicious indicators or suspicious behavior. Escalate
Suspicious Inconclusive but warrants investigation. Escalate
  1. Final Action:

If FP/BTP: Action: Document reasoning. Tool: createcasecomment (Remote) / postcasecomment (Local). Action: Close Case. Remote: executebulkclosecase (Reason="NOTMALICIOUS", RootCause="Legit action/Normal behavior"). Local: closecase (reason="NotMalicious", rootcause="Legit action/Normal behavior"). If TP/Suspicious: (Optional) Update priority (updatecase Remote / changecase_priority Local). Action: Document findings. Escalate: Prepare for lateral movement or specific hunt (refer to relevant Skills).

Common Procedures

Enrich IOC (SIEM Prevalence)

Capability: Entity Summary / IoC Match Steps:

  1. SIEM Summary:

Remote: summarizeentity. Local: lookupentity.

  1. IOC Match:

Remote: getiocmatch. Local: getiocmatches.

  1. Return combined ${ENRICHMENT_ABSTRACT}.