Custom Skills
A skill is a Markdown file of reusable methodology the agent can pull in on demand. Skills are discovered by filename β every skill lives in a file named SKILL.md.
πΈ SCREENSHOT: custom-skills.png
Custom skill layout
File & Location
The file must be named SKILL.md. Cyberstrike scans for **/SKILL.md under a skill/ or skills/ directory inside .cyberstrike/, and under skills/ (Claude Code layout):
.cyberstrike/βββ skills/ βββ sql-injection/ βββ SKILL.mdFrontmatter
Only name and description are required. The rest are optional metadata used for categorization and kill-chain linking:
---name: sql-injectiondescription: Methodology for testing SQL injectionversion: "1.0.0"author: youtags: [injection, database]category: injectionowasp_id: WSTG-INPV-05tech_stack: [postgres, mysql]cwe_ids: [CWE-89]chains_with: [auth-bypass]prerequisites: [request-capture]---
Walk the tester through boolean-, error-, time-, and union-based SQLi:1. Identify injectable parameters β¦2. β¦Caution
The body is plain Markdown β there is no templating (no {{target}}, {% if %}, {% for %}, or $ARGUMENTS). Frontmatter does not support args, model, agent, or permission fields, and the file must be literally named SKILL.md (arbitrary names like my-skill.md are not loaded).
The name in frontmatter must match the skillβs identity β a mismatch is reported as an error.
Using Skills
Loaded skills are available to the agent and can be browsed with the /skills command. The agent pulls a skillβs methodology into context when itβs relevant to the task.
Related Documentation
- Slash Commands - Built-in commands
- Agents - Agents that use skills