agent-launcher-orchest…
Use when a user wants to build, launch, grade, or schedule a Claude Managed Agent (CMA) in their own Anthropic account — "build me an agent", "launch this as a…
Use when planning or executing authorized red team engagements, attack path analysis, or offensive security simulations. Covers MITRE ATT&CK kill-chain planning, technique scoring, choke point identification, OPSEC risk assessment, and crown jewel targeting.
$ npx -y skills add alirezarezvani/claude-skills --skill red-team --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/red-teamContext preview
The summary Claude sees to decide when to auto-load this skill.
Use when planning or executing authorized red team engagements, attack path analysis, or offensive security simulations. Covers MITRE ATT&CK kill-chain planning, technique scoring, choke point identification, OPSEC risk assessment, and crown jewel targeting.
name: "red-team" description: "Use when planning or executing authorized red team engagements, attack path analysis, or offensive security simulations. Covers MITRE ATT&CK kill-chain planning, technique scoring, choke point identification, OPSEC risk assessment, and crown jewel targeting."
Red team engagement planning and attack path analysis skill for authorized offensive security simulations. This is NOT vulnerability scanning (see security-pen-testing) or incident response (see incident-response) — this is about structured adversary simulation to test detection, response, and control effectiveness.
---
---
This skill provides the methodology and tooling for **red team engagement planning** — building structured attack plans from MITRE ATT&CK technique selection, access level, and crown jewel targets. It scores techniques by effort and detection risk, assembles kill-chain phases, identifies choke points, and flags OPSEC risks.
| Skill | Focus | Approach | |-------|-------|----------| | **red-team** (this) | Adversary simulation | Offensive — structured attack planning and execution | | security-pen-testing | Vulnerability discovery | Offensive — systematic exploitation of specific weaknesses | | threat-detection | Finding attacker activity | Proactive — detect TTPs in telemetry | | incident-response | Active incident management | Reactive — contain and investigate confirmed incidents |
**All red team activities described here require written authorization.** This includes a signed Rules of Engagement (RoE) document, defined scope, and explicit executive approval. The `engagement_planner.py` tool will not generate output without the `--authorized` flag. Unauthorized use of these techniques is illegal under the CFAA, Computer Misuse Act, and equivalent laws worldwide.
---
The `engagement_planner.py` tool builds a scored, kill-chain-ordered attack plan from technique selection, access level, and crown jewel targets.
# Basic engagement plan — external access, specific techniques python3 scripts/engagement_planner.py \ --techniques T1059,T1078,T1003 \ --access-level external \ --authorized --json # Internal network access with crown jewel targeting python3 scripts/engagement_planner.py \ --techniques T1059,T1078,T1021,T1550,T1003 \ --access-level internal \ --crown-jewels "Database,Active Directory,Payment Systems" \ --authorized --json # Credentialed (assumed breach) scenario with scale python3 scripts/engagement_planner.py \ --techniques T1059,T1078,T1021,T1550,T1003,T1486,T1048 \ --access-level credentialed \ --crown-jewels "Domain Controller,S3 Data Lake" \ --target-count 50 \ --authorized --json # List all 29 supported MITRE ATT&CK techniques python3 scripts/engagement_planner.py --list-techniques
| Level | Starting Position | Techniques Available | |-------|------------------|----------------------| | external | No internal access — internet only | External-facing techniques only (T1190, T1566, etc.) | | internal | Network foothold — no credentials | Internal recon + lateral movement prep | | credentialed | Valid credentials obtained | Full kill chain including priv-esc, lateral movement, impact |
| Code | Meaning | |------|---------| | 0 | Engagement plan generated successfully | | 1 | Missing authorization or invalid technique | | 2 | Scope violation — technique outside access-level constraints |
---
The engagement planner organizes techniques into eight kill-chain phases and orders the execution plan accordingly.
| Phase | Order | MITRE Tactic | Examples | |-------|-------|--------------|----------| | Reconnaissance | 1 | TA0043 | T1595, T1596, T1598 | | Resource Development | 2 | TA0042 | T1583, T1588 | | Initial Access | 3 | TA0001 | T1190, T1566, T1078 | | Execution | 4 | TA0002 | T1059, T1047, T1204 | | Persistence | 5 | TA0003 | T1053, T1543, T1136 | | Privilege Escalation | 6 | TA0004 | T1055, T1548, T1134 | | Credential Access | 7 | TA0006 | T1003, T1110, T1558 | | Lateral Movement | 8 | TA0008 | T1021, T1550, T1534 | | Collection | 9 | TA0009 | T1074, T1560, T1114 | | Exfiltration | 10 | TA0010 | T1048, T1041, T1567 | | Impact | 11 | TA0040 | T1486, T1491, T1498 |
Each phase must be completed before advancing to the next unless the engagement scope specifies assumed breach (skip to a later phase). Do not skip persistence before attempting lateral movement — persistence ensures operational continuity if a single foothold is detected and removed.
---
Techniques are scored by effort (how hard to execute without detection) and prioritized in the engagement plan.
effort_score = detection_risk × (len(prerequisites) + 1)
Lower effort score = easier to execute without triggering detection.
| Technique | Detection Risk | Prerequisites | Effort Score | MITRE ID | |-----------|---------------|---------------|-------------|---------| | PowerShell execution | 0.7 | initial_access | 1.4 | T1059.001 | | Scheduled task persistence | 0.5 | execution | 1.0 | T1053.005 | | Pass-the-Hash | 0.6 | cr
388 production-ready Claude Code skills, plugins, and agent skills for 13 AI coding tools. The most comprehensive open-source library of Claude Code skills and agent plugins — also works with OpenAI Codex, Gemini CLI, Cursor, and 9 more coding agents.
Repo: alirezarezvani/claude-skills
Use when a user wants to build, launch, grade, or schedule a Claude Managed Agent (CMA) in their own Anthropic account — "build me an agent", "launch this as a…
Phase 3 of building a Claude Managed Agent — the bounded grade→iterate loop. Define a CMA outcome (a required markdown rubric graded by an isolated grader),…
Phase 1 of building a Claude Managed Agent — interview the founder about the one job the agent should do, then produce a build sheet (CMA primitives table +…
Phase 4 of building a Claude Managed Agent — make it run without you. Turn a graded agent into a recurring scheduled deployment (POSIX-cron), an event-driven…
Phase 2 of building a Claude Managed Agent — turn a validated build sheet into exact API payloads and a resumable BYOK curl launch script, then launch…
Close out a launched Claude Managed Agent — recap every primitive the founder now owns, regenerate the single-file overview page, and suggest the next 1-2…