Ask me what skills you need
What are you building?
Tell me what you're working on and I'll find the best agent skills for you.
Running Suricata against PCAPs offline and validating results via eve.json
This skill covers running Suricata against PCAPs offline and validating results via eve.json.
Typical offline invocation:
suricata -c /root/suricata.yaml -S /root/local.rules -k none -r /root/sample.pcap -l /tmp/suri
Flags:
-r <pcap>: replay a PCAP offline-S <rules>: load only the specified rules file-l <dir>: log directory (will contain eve.json)-k none: ignore checksum issuesCount alerts:
jq -r 'select(.event_type=="alert") | .alert.signature_id' /tmp/suri/eve.json | wc -l
See alert ids and messages:
jq -r 'select(.event_type=="alert") | [.alert.signature_id,.alert.signature] | @tsv' /tmp/suri/eve.json
-l directory per run to avoid mixing logs.When iterating on /root/local.rules, use this loop:
# 1) Validate rule syntax
suricata -T -c /root/suricata.yaml -S /root/local.rules
npx skills add benchflow-ai/skillsbench --skill suricata-offline-evejsonHow clear and easy to understand the SKILL.md instructions are, rated from 1 to 5.
Very clear and well structured, with almost no room for misunderstanding.
How directly an agent can act on the SKILL.md instructions, rated from 1 to 5.
Highly actionable with clear, concrete steps that an agent can follow directly.