Security
Security skills for agentic SaaS apps
npx -y skills add Adversis/skills --skill securityAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Entry point for the Adversis security plugin. Asks what you are trying to accomplish and routes you to the right skill: lint-baseline, threat-model, or security-persona. Start here.
SKILL.md
1.9 KB, as published. Nobody here has run it
security
Ask the user:
"What are you trying to do?
- Audit an existing codebase against known security gaps
- Build a structural threat model of the system
- Prepare a security posture document for a prospect or customer review
- Not sure — help me pick"
Wait for the user's answer. Then respond as follows.
If option 1 — audit existing codebase:
"Run
/lint-baseline. It reads your codebase and audits against 8 ship-blocking security items, producingdocs/lint-baseline-report.mdwith PASS/GAP verdicts and file-level citations. Takes 5–10 minutes.After that, run
/threat-modelto model structural attack paths using what the audit found."
If option 2 — threat model:
"Run
/threat-model. It guides you through a structured threat model of your agentic codebase — asset discovery, data flow mapping, attack paths, and a STRIDE sweep — producingdocs/threat-model.md. Always interactive; plan for 30–60 minutes.Run
/lint-baselinefirst if you haven't — the threat model uses its output."
If option 3 — security posture for prospect or customer review:
"Run
/security-persona. It reads your codebase and any prior skill output, asks 3–5 targeted questions, and producesdocs/security-posture.md— a factual, evidence-tiered posture document with an engineering roadmap.Run
/lint-baselineand/threat-modelfirst for the richest output, but it works standalone."
If option 4 — not sure:
Ask:
"Are you working on an existing codebase or starting fresh?"
- If existing codebase: respond with the option 1 text above
- If greenfield / starting fresh: respond with the option 2 text above