Security development lifecycle
Skill Amey-Thakur/AI-SKILLS/skills/big-tech-processes/security-development-lifecycle
Plug-and-play skills and prompts for every AI coding agent
npx -y skills add Amey-Thakur/AI-SKILLS --skill security-development-lifecycleAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- 21 days oldThe repository was created 21 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
- 4 stars4 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
Apply Microsoft's Security Development Lifecycle so threat modeling, tooling, and sign-off are built into each phase instead of bolted on before ship. Use when building or shipping software that takes untrusted input or handles sensitive data and you need a repeatable security process, not a one-time audit.
SKILL.md
3.5 KB, 692 tokens by cl100k_base, as published. Nobody here has run it
Security development lifecycle
Microsoft's SDL exists because security defects found at release are the ones that were never designed against. The framework spreads specific obligations across the phases, from requirements to response, so each gate catches a class of flaw at the point where fixing it is cheap. Run it as a checklist at the end and it becomes paperwork; run it as gates and it changes what ships.
Method
- Set the bug bar and security requirements up front. Before design, define the SDL bug bar: the severity thresholds that block release, and which vulnerability classes are never acceptable. Add security and privacy requirements to the backlog as tracked, owned work, not aspirations.
- Threat model every design. Draw the data flow diagram, mark trust boundaries, and walk STRIDE (spoofing, tampering, repudiation, information disclosure, denial of service, elevation of privilege) against each element. Use the Microsoft Threat Modeling Tool or equivalent, record a mitigation per threat, and make the threat model a gate no design review passes without.
- Constrain the toolchain in implementation. Pin approved compiler and linker versions with hardening flags on (/GS, /DYNAMICBASE, control flow guard). Ban unsafe APIs (strcpy, sprintf, gets) with a checked banned-function list, and scan dependencies for known CVEs before they enter the build.
- Gate merges on static analysis. Run SAST on every pull request and fail the build on bug-bar findings rather than posting a warning someone can ignore. Route open-source components through software composition analysis with a license and vulnerability policy.
- Fuzz and dynamic-test at verification. Point a fuzzer at every parser and network-facing input, run DAST against the running service, and do an attack surface review: confirm what shipped matches the threat model and that no debug endpoint or default credential leaked in.
- Pass the Final Security Review before release. A security advisor outside the team confirms every bug-bar issue is closed, the threat model matches the build, and an incident response plan with named contacts exists. Record the FSR outcome (passed, passed with exceptions, or escalate) and archive the evidence.
- Keep the response loop open after release. Maintain the security contact and a triage path for externally reported vulnerabilities. A CVE against a shipped version reopens the lifecycle for that component.
Checks
- Does every design in this release carry a threat model with a mitigation recorded for each STRIDE threat?
- Would the build actually fail on a bug-bar SAST finding, or only warn?
- Can you produce the FSR sign-off and archived scans for the last release without reconstructing them after the fact?
Boundaries
SDL is Microsoft's framework and its phase names and bug bar are conventions: map them onto your own SDLC and compliance regime (SOC 2, ISO 27001) rather than importing the vocabulary wholesale. It sets process, not the fixes themselves, so the actual vulnerability review belongs to a security-review skill, and a novel design risk still needs a security engineer's judgment.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.