clawdstrike-plugin/skills/threat-hunt/SKILL.md
Threat hunting and security event investigation
npx skillsauth add backbay-labs/clawdstrike clawdstrike-plugin/skills/threat-huntInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Follow this structured approach when investigating security events:
Call clawdstrike_timeline to get a chronological view of recent events:
Use clawdstrike_query to drill into specific criteria:
Run clawdstrike_correlate to detect patterns across events:
Use clawdstrike_ioc to check indicators against threat intelligence:
Call clawdstrike_report to produce a structured investigation summary:
Common techniques to look for in agent security events:
| Technique | ID | Indicators | |-----------|------|------------| | Command and Scripting Interpreter | T1059 | Shell commands with encoded payloads, eval/exec usage | | File and Directory Discovery | T1083 | Enumeration of sensitive directories | | Exfiltration Over Web Service | T1567 | Egress to uncommon domains after file reads | | Credential Access | T1552 | Access to .env, .ssh, credential files | | Defense Evasion | T1562 | Attempts to modify security config or disable guards | | Persistence | T1546 | Modifications to shell profiles, cron, startup files | | Privilege Escalation | T1548 | sudo/chmod/chown commands, setuid changes |
Use this table to select the right investigation tool for each technique:
| MITRE Technique | ID | Primary MCP Tool | Investigation Approach |
|-----------------|----|------------------|----------------------|
| Command and Scripting Interpreter | T1059 | clawdstrike_query | Filter by action_type=shell, look for encoded payloads or eval/exec |
| File and Directory Discovery | T1083 | clawdstrike_timeline | Broad timeline scan for sequential file reads across sensitive dirs |
| Exfiltration Over Web Service | T1567 | clawdstrike_correlate | Correlate file reads followed by egress to uncommon domains |
| Credential Access | T1552 | clawdstrike_query | Filter by action_type=file targeting .env, .ssh, credential paths |
| Defense Evasion | T1562 | clawdstrike_query | Filter for policy modification attempts or guard config changes |
| Persistence | T1546 | clawdstrike_ioc | Check shell profile, cron, and startup file modifications |
| Privilege Escalation | T1548 | clawdstrike_query | Filter by action_type=shell for sudo, chmod, chown, setuid |
Classify incidents using these severity levels:
| Classification | Criteria | Response | |---------------|----------|----------| | P1 - Critical | Active exploitation, data exfiltration confirmed, credential compromise | Immediate remediation, revoke credentials, isolate affected sessions | | P2 - High | Blocked exploit attempt, repeated policy violations, suspicious lateral movement | Investigate within current session, tighten policy, monitor for recurrence | | P3 - Medium | Single denied action matching known TTP, anomalous but unconfirmed activity | Log for review, verify policy coverage, check for related events | | P4 - Low | Informational anomaly, policy audit events, benign tool misuse | Document in report, no immediate action required |
When this skill is active:
testing
A simple skill demonstrating clawdstrike security
tools
# Hello Skill A simple greeting skill that demonstrates secure agent operation. ## Description This skill allows the agent to greet users and perform basic file operations within the allowed workspace. ## Capabilities - Generate personalized greetings - Read files from the workspace - Write greeting logs to the output directory ## Usage Ask the agent: - "Say hello to Alice" - "Read the welcome message from data/welcome.txt" - "Log a greeting for Bob" ## Examples ### Basic Greeting **Us
testing
# bb-edr: Triage Skill Use this skill to turn clawdstrike audit logs into an incident report and a minimal response plan. ## Inputs - `.hush/audit.jsonl` (JSONL) — clawdstrike audit events (allowed/denied, guard, reason). - `policy.yaml` — the active security policy. ## Task 1. Read and summarize the last ~50 audit events. 2. Focus on **denied** events first: - Group by `guard` (e.g., `forbidden_path`, `egress`, `patch_integrity`) - Identify likely intent (misconfiguration vs. suspici
tools
Threat hunting and security event investigation