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 skills add woohyun212/security-skill --skill siem-rulegit clone --depth 1 https://github.com/woohyun212/security-skillWrote 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/skills/woohyun212/security-skill/siem-rule)<a href="https://agentmods.dev/skills/woohyun212/security-skill/siem-rule"><img src="https://agentmods.dev/badge/skills/woohyun212/security-skill/siem-rule/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/woohyun212/security-skill/siem-rule"><img src="https://agentmods.dev/badge/skills/woohyun212/security-skill/siem-rule.svg" alt="Reviewed on agentmods" width="80" 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.1 | $0.00037 | $0.03346 |
| Opus 5 | $0.00018 | $0.01673 |
| Sonnet 5 | $0.00007 | $0.00669 |
| Haiku 4.5 | $0.00004 | $0.00335 |
Grade B, and why
siem-rule scanned grade B with 1 finding 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 9d 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.
Asks for rootmediumPrivilege escalation
A mod that escalates privileges can change anything on the machine, not only the project.
- `jq` for JSON manipulation: `sudo apt install jq` How it starts
The opening of the file, as written. The whole thing — 332 lines — stays where its author put it; the contents beside it link to each section on GitHub.
What this skill does
Guides the full lifecycle of a SIEM detection rule: define the threat objective, identify required log sources, write a platform-agnostic Sigma rule, convert it to Splunk SPL, Elastic KQL/EQL, and Microsoft Sentinel KQL, validate against test data, and document tuning recommendations. Covers endpoint, network, identity, and cloud detection categories.
When to use
- Building new detections from a threat model, IOC, or observed TTP
- Converting an existing Sigma rule to a platform-specific query
- Auditing existing rules for performance, fidelity, or coverage gaps
- Responding to a new CVE or threat actor report and needing a fast rule
- Reducing alert fatigue by tuning false-positive-heavy detections
Prerequisites
sigma-clifor rule conversion:pip install sigma-cli- Sigma backends:
sigma plugin install splunk elastic-lucene microsoft365defender python3for validation and formatting helpersjqfor JSON manipulation:sudo apt install jq- Access to at least one SIEM platform (Splunk / Elastic / Sentinel) or sample log data
Inputs
| Variable | Description | Example |
|---|---|---|
DETECTION_OBJECTIVE |
One-sentence description of what to detect | "Detect PowerShell downloading and executing in-memory payloads" |
LOG_SOURCE_TYPE |
Primary log source type | windows_process_creation |
MITRE_TECHNIQUE |
MITRE ATT&CK technique ID (optional) | T1059.001 |
SIGMA_RULE_FILE |
Existing Sigma YAML file to convert (optional) | /tmp/rule.yml |
TEST_LOG_FILE |
Sample log file for validation (optional) | /tmp/test_events.json |
Workflow
Step 1: Define the detection objective
echo "=== Step 1: Define Detection Objective ==="
DETECTION_OBJECTIVE="${DETECTION_OBJECTIVE:-}"
MITRE_TECHNIQUE="${MITRE_TECHNIQUE:-}"
if [ -z "$DETECTION_OBJECTIVE" ]; then
read -rp "What threat behavior do you want to detect? " DETECTION_OBJECTIVE
fi
if [ -z "$MITRE_TECHNIQUE" ]; then
read -rp "MITRE ATT&CK technique ID (leave blank to skip): " MITRE_TECHNIQUE
fi
echo ""
echo " Objective: $DETECTION_OBJECTIVE"
echo " MITRE technique: ${MITRE_TECHNIQUE:-N/A}"
echo ""
# Suggest detection category based on objective keywords
python3 - "$DETECTION_OBJECTIVE" <<'PYEOF'
import sys, re
obj = sys.argv[1].lower()
categories = {
'Endpoint – Process Creation': ['powershell', 'cmd', 'wscript', 'mshta', 'rundll32', 'regsvr32',
'process', 'spawn', 'execute', 'launch', 'child'],
'Endpoint – Registry': ['registry', 'regedit', 'hklm', 'hkcu', 'run key', 'persistence'],
'Endpoint – DLL / Code Injection':['inject', 'dll', 'reflective', 'shellcode', 'virtualalloc', 'writeprocessmemory'],
'Endpoint – PowerShell / Script': ['powershell', 'script', 'iex', 'invoke-expression', 'base64', 'bypass'],
'Network – DNS': ['dns', 'tunnel', 'dga', 'domain generation', 'exfil'],
'Network – Lateral Movement': ['smb', 'rdp', 'wmi', 'lateral', 'pass the hash', 'psexec'],
'Identity – Brute Force': ['brute', 'password spray', 'login failure', 'authentication'],
'Identity – Kerberos': ['kerberoast', 'dcsync', 'golden ticket', 'silver ticket', 'kerberos'],
'Cloud – IAM': ['iam', 'policy', 'privilege', 'assume role', 'access key'],
'Cloud – Storage': ['s3', 'blob', 'bucket', 'public access', 'storage'],
}
matched = []
for cat, keywords in categories.items():
if any(kw in obj for kw in keywords):
matched.append(cat)
if matched:
print(f" Suggested category: {matched[0]}")
if len(matched) > 1:
print(f" Also relevant: {', '.join(matched[1:])}")
else:
print(" Category: General endpoint/network (review log sources in Step 2)")
PYEOF
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 9d ago First seen · 332 lines · 37 tokens per session scan B 360786f2a7ff
siem-rule is a skill published in the GitHub repository woohyun212/security-skill (21 stars, last pushed 4mo ago), licensed MIT. It adds 37 tokens to every session and 3,346 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it B with 1 finding (asks for root). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
local-ai-agents
Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…
next-cache-components-adoption
Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…
next-cache-components-optimizer
Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components / PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next/playwright instant() e2e and work it to green, one verified route at a time; the shipped test then…
next-partial-prefetching-adoption
Turn on Partial Prefetching in a Next.js app and work through the insights it surfaces. Use when the user wants to enable or adopt Partial Prefetching, flip the partialPrefetching flag, opt routes in with export const prefetch = 'partial', audit Link prefetch={true} behavior, preserve existing prefetched UI with…
chronicle
Analyze Copilot session history for standup reports, usage tips, session search, and session reindexing. Use when the user asks for a standup, daily summary, usage tips, workflow recommendations, wants to search or find past sessions by keyword/file/PR, wants to reindex their session store, or asks about deleting…