Install
$ agentstack add skill-amey-thakur-ai-skills-security-development-lifecycle ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
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.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: Amey-Thakur
- Source: Amey-Thakur/AI-SKILLS
- License: MIT
- Homepage: https://amey-thakur.github.io/AI-SKILLS/
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.