attack-flow
Generate SITF-compliant attack flow JSON files from attack descriptions or incident reports. Use when analyzing supply chain attacks, breaches, or security…
Generate SITF-compliant attack flow JSON from red team or pentest reports. Accepts report files, URLs, or pasted findings. Use when documenting offensive security engagements.
$ npx -y skills add wiz-sec-public/SITF --skill red-team-flow --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/red-team-flowContext preview
The summary Claude sees to decide when to auto-load this skill.
Generate SITF-compliant attack flow JSON from red team or pentest reports. Accepts report files, URLs, or pasted findings. Use when documenting offensive security engagements.
name: red-team-flow description: Generate SITF-compliant attack flow JSON from red team or pentest reports. Accepts report files, URLs, or pasted findings. Use when documenting offensive security engagements. argument-hint: <engagement-name> [--file path | --url url | paste report text] tools: Read, Grep, Glob, WebFetch, Write, Bash
Generate SITF-compliant attack flow JSON files from red team or penetration testing reports.
/red-team-flow <engagement-name> [source]
Arguments: $ARGUMENTS
The skill accepts red team and pentest reports in various formats:
The skill looks for these common report patterns:
When this skill is invoked:
1. **If `--file` specified:**
2. **If `--url` specified:**
3. **If no source specified:**
4. **Normalize the input:**
1. Read `techniques.json` to get the full SITF technique library.
2. For each finding/attack step, find the best matching technique:
3. If no matching SITF technique exists:
4. For pentest reports with isolated findings (not chained):
Apply these layout rules (consistent with `/attack-flow`):
Generate attack flow JSON with this structure (identical to `/attack-flow` output):
{
"metadata": {
"name": "Engagement Name",
"title": "Canvas Display Title",
"created": "ISO-8601 timestamp",
"version": "1.0",
"framework": "SITF",
"source": "red-team-report",
"description": "Brief engagement description"
},
"nodes": [],
"edges": []
}**Metadata field guidelines:**
**Node types** (same as /attack-flow):
**Special metadata for red team flows:**
A comprehensive framework for analyzing and defending against attacks targeting Software Development Lifecycle infrastructure.
Generate SITF-compliant attack flow JSON files from attack descriptions or incident reports. Use when analyzing supply chain attacks, breaches, or security…
Generate a PR-ready technique proposal when an attack step doesn't map to existing SITF techniques. Use after /attack-flow identifies technique gaps.