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.
npx agentmods add agents/willwebster5/agent-skills/alert-formattergit clone --depth 1 https://github.com/willwebster5/agent-skillsWrote 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.
[](https://agentmods.dev/agents/willwebster5/agent-skills/alert-formatter)<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>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.
| Model | Per session | Once 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 |
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.
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:
- Environmental context — org baselines (inline text from
environmental-context.md) - Fast-track patterns — bulk-close patterns (inline text from
memory/fast-track-patterns.md) - Filter parameters:
product: one ofngsiem,endpoint,cloud_security,identity,thirdparty, orALLseverity: defaultALLtime_range: default1dstatus: defaultnew
Process
- Call
mcp__crowdstrike__get_alertswith the provided filter parameters. If product isALL, make separate calls per product type:ngsiem,endpoint,cloud_security,identity,thirdparty. - For each alert, extract: composite detection ID, detection name, severity, product, timestamp.
- 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
- 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
}
}
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.
- 4d ago First seen · 84 lines · 0 tokens per session scan A 2277df4e1e3d
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.
Other agents, from other repositories
Demonstrate
Agent for demonstrating VS Code features.
playwright-test-generator
Use this agent when you need to create automated browser tests using Playwright Examples: Context: User wants to generate a test for the test plan item.
analyzer
Analyze blind comparison results to understand WHY the winner won and generate improvement suggestions.
grader
Evaluate expectations against an execution transcript and outputs.
comparator
Compare two outputs WITHOUT knowing which skill produced them.
.NET-Notebook-Migration-Agent
Expert .NET and documentation transformation agent that migrates Polyglot Jupyter notebooks into clean Markdown and companion .NET sample code.