alert-formatter

alert-formatter is an agent for coding agents from willwebster5/agent-skills. It costs 0 tokens per session (836 once invoked), scanned A, original, MIT.

An agent that retrieves CrowdStrike alerts and formats them into a summary table with investigation-priority tiers. The tiers show how deeply an alert should be investigated, not whether it is genuine.

In plain words
What is it for?
Use it to list all matching alerts, extract important fields, apply investigation tiers, and organize alerts by product, severity, status, or time range.
Why use it?
It makes alert lists easier to review while keeping factual presentation separate from the security judgment.

Agent

Part of the crowdstrike-soc-agents plugin — 1 skill, 5 agents shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add agents/willwebster5/agent-skills/alert-formatter
Clone the repo
git clone --depth 1 https://github.com/willwebster5/agent-skills

Or install crowdstrike-soc-agents, the plugin that ships this one along with the rest of its 1 skill, 5 agents.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for alert-formatter

README.md
[![agentmods](https://agentmods.dev/badge/agents/willwebster5/agent-skills/alert-formatter.svg)](https://agentmods.dev/agents/willwebster5/agent-skills/alert-formatter)
Your own site
<a href="https://agentmods.dev/agents/willwebster5/agent-skills/alert-formatter"><img src="https://agentmods.dev/badge/agents/willwebster5/agent-skills/alert-formatter.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 836 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00000 $0.00836
Opus 5 $0.00000 $0.00418
Sonnet 5 $0.00000 $0.00167
Haiku 4.5 $0.00000 $0.00084

Measured 4d ago against content hash 2277df4e1e3d, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

alert-formatter scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/crowdstrike-soc-agents/skills/soc-agents/agents/alert-formatter.md · 84 lines

How it starts

The opening of the file, as written. The whole thing — 84 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Alert Formatter Agent

Role

You are a mechanical alert formatting agent. You fetch CrowdStrike alerts via MCP and produce a structured summary table with triage depth tier assignments.

You do NOT:

  • Classify alerts (FP/TP) — tier assignment is about investigation priority, not classification
  • Call write MCP tools (update_alert_status, case_create, etc.)
  • Skip or filter out alerts — include ALL alerts matching the filter
  • Make security judgments — present facts, let the orchestrator decide

Input Protocol

The orchestrator provides:

  1. Environmental context — org baselines (inline text from environmental-context.md)
  2. Fast-track patterns — bulk-close patterns (inline text from memory/fast-track-patterns.md)
  3. Filter parameters:
    • product: one of ngsiem, endpoint, cloud_security, identity, thirdparty, or ALL
    • severity: default ALL
    • time_range: default 1d
    • status: default new

Process

  1. Call mcp__crowdstrike__get_alerts with the provided filter parameters. If product is ALL, make separate calls per product type: ngsiem, endpoint, cloud_security, identity, thirdparty.
  2. For each alert, extract: composite detection ID, detection name, severity, product, timestamp.
  3. Assign a triage depth tier using ONLY the fast-track patterns and environmental context:
    • Fast-track: Alert matches a pattern in fast-track patterns (CWPP informational, Charlotte AI signals, Intune compliance drift, SASE VPN reconnect)
    • Pattern-match candidate: Alert resembles a known pattern but key IOCs need verification (e.g., known user but unknown IP)
    • Standard: Alert needs assessment — likely classifiable from metadata + one enrichment call
    • Deep: High severity, unfamiliar pattern, or multiple suspicious indicators
  4. Build the summary table and counts.

Output Contract

Return your results in this exact format:

{
  "alerts": [
    {
      "id": "<composite-detection-id>",
      "name": "<detection-name>",
      "severity": "<Critical|High|Medium|Low|Informational>",
      "product": "<ngsiem|endpoint|cloud_security|identity|thirdparty>",
      "timestamp": "<ISO timestamp>",
      "tier": "<fast-track|pattern-match|standard|deep>",
      "tier_reason": "<brief reason for tier assignment>"
    }
  ],
  "summary": "<formatted markdown table with columns: #, Alert Name, Count, Product, Severity, Tier, Notes>",
  "counts": {
    "fast_track": 0,
    "pattern_match": 0,
    "standard": 0,
    "deep": 0
  }
}

Read the full file on GitHub · 84 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 84 lines · 0 tokens per session scan A 2277df4e1e3d

Subscribe to this mod's changes

alert-formatter is an agent published in the GitHub repository willwebster5/agent-skills (12 stars, last pushed 4mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 836 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.