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

Devsecops Supply Chain

skill-builderced-agent-skills-devsecops-supply-chain · by BuilderCed

Generate SBOM (CycloneDX/SPDX), verify SLSA provenance, audit dependency chains, and detect supply chain attack patterns.

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

Install

$ agentstack add skill-builderced-agent-skills-devsecops-supply-chain

✓ 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-builderced-agent-skills-devsecops-supply-chain)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo 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 Devsecops Supply Chain? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

DevSecOps Supply Chain Security

When to Use

  • Setting up dependency security for a new project
  • Generating SBOM for compliance or audit
  • Investigating a suspicious dependency
  • Responding to a supply chain incident
  • Configuring CI/CD security gates

SBOM Generation

Formats

| Format | Standard | Best For | |--------|----------|---------| | CycloneDX | OWASP | Security-focused, VEX support | | SPDX | Linux Foundation | License compliance, legal |

Generation Commands

If a terminal is available, use these commands. Otherwise, describe what fields to include manually.

Node.js/npm:

npx @cyclonedx/cyclonedx-npm --output-file sbom.json

Python/pip:

pip install cyclonedx-bom
cyclonedx-py requirements -i requirements.txt -o sbom.json

Go:

cyclonedx-gomod mod -json -output sbom.json

SLSA Compliance Levels

| Level | Requirement | How | |-------|-------------|-----| | SLSA 1 | Documentation of build process | Document build steps | | SLSA 2 | Hosted build platform, signed provenance | Use GitHub Actions, sign with Sigstore | | SLSA 3 | Hardened build platform, non-falsifiable provenance | Isolated builders, hermetic builds |

Supply Chain Attack Patterns

| Pattern | Detection | Prevention | |---------|-----------|------------| | Typosquatting | Compare package name to known packages | Pin exact versions | | Dependency confusion | Check if internal name exists on public registry | Scope packages, configure registry priority | | Compromised maintainer | Monitor for unusual releases, new maintainers | Pin versions + hashes, delayed adoption | | Malicious post-install | Audit install scripts | --ignore-scripts flag, review before install | | Star-jacking | Verify GitHub URL matches npm/PyPI metadata | Cross-reference package metadata |

Dependency Audit Checklist

  1. Are all dependencies pinned to exact versions?
  2. Are lockfiles committed and reviewed in PRs?
  3. Are dependency hashes verified (pip --require-hashes, npm --package-lock-only)?
  4. Is there a delay before adopting new package versions (7+ days)?
  5. Are transitive dependencies audited (not just direct)?
  6. Are install scripts reviewed for new dependencies?
  7. Is there automated vulnerability scanning in CI?

What This Skill Does NOT Do

  • Does not patch vulnerabilities automatically
  • Does not detect zero-day exploits
  • Does not replace tools like Snyk, Dependabot, or pip-audit (complements them)
  • Does not manage secrets rotation

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.