AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Security Development Lifecycle

skill-amey-thakur-ai-skills-security-development-lifecycle · by Amey-Thakur

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.

No reviews yet
0 installs
25 views
0.0% view→install

Install

$ agentstack add skill-amey-thakur-ai-skills-security-development-lifecycle

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-amey-thakur-ai-skills-security-development-lifecycle)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
22d ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Security Development Lifecycle? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

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

  1. 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.

  1. 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.

  1. 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.

  1. 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.

  1. 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.

  1. 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.

  1. 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.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.