devsecops-supply-chain

devsecops-supply-chain is a skill for Claude Code, Codex from BuilderCed/agent-skills. It costs 34 tokens per session (762 once invoked), scanned A, original, MIT.

A software-supply-chain security guide for listing project components, checking how builds were produced, and spotting suspicious dependency behavior. It covers SBOM files, which are inventories of the libraries and tools in a project.

In plain words
What is it for?
Use it to create CycloneDX or SPDX component inventories, check SLSA build-provenance levels, audit dependency chains, investigate suspicious packages, and set security gates in CI/CD.
Why use it?
It helps teams understand what their software contains and investigate risks hidden in third-party packages or build processes. It also supports security checks in automated build and release pipelines.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/builderced/agent-skills/devsecops-supply-chain
Any agent
npx skills add BuilderCed/agent-skills --skill devsecops-supply-chain
Clone the repo
git clone --depth 1 https://github.com/BuilderCed/agent-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for devsecops-supply-chain

README.md
[![agentmods](https://agentmods.dev/badge/skills/builderced/agent-skills/devsecops-supply-chain.svg)](https://agentmods.dev/skills/builderced/agent-skills/devsecops-supply-chain)
Your own site
<a href="https://agentmods.dev/skills/builderced/agent-skills/devsecops-supply-chain"><img src="https://agentmods.dev/badge/skills/builderced/agent-skills/devsecops-supply-chain.svg" alt="Measured on agentmods" height="20"></a>
Per session 34 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 762 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00034 $0.00762
Opus 5 $0.00017 $0.00381
Sonnet 5 $0.00007 $0.00152
Haiku 4.5 $0.00003 $0.00076

Measured 3d ago against content hash f4e6f5740ba4, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

devsecops-supply-chain scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/devsecops/devsecops-supply-chain/SKILL.md · 96 lines

How it starts

The opening of the file, as written. The whole thing — 96 lines — stays where its author put it; the contents beside it link to each section on GitHub.

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?

Read the full file on GitHub · 96 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 96 lines · 34 tokens per session scan A f4e6f5740ba4

Subscribe to this mod's changes

devsecops-supply-chain is a skill published in the GitHub repository BuilderCed/agent-skills (2 stars, last pushed 4mo ago), licensed MIT. It adds 34 tokens to every session and 762 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

custom-builtin-functions

Create a custom builtin function to be used in the Rego policy engine.

chainloop-dev/chainloop · 19 tokens

dep-updates

Plan and apply Go dependency updates, including advisory-driven bumps, Trivy/govulncheck validation, and supply-chain review. Use when the user asks to update dependencies, refresh modules for security alerts, or run dependency vulnerability scans.

trufflesecurity/trufflehog · 51 tokens

git-workflow-helper

Automates git workflow tasks including status checks, branch creation, file staging, conventional commit message generation, and pull request creation with gh CLI. Use this skill when you need to commit changes, create PRs, check git status, create branches, push code, or generate commit messages. Ensures proper git…

davidmatousek/tachi · 71 tokens

ai-report

Reports a reproducible fault in this framework through ai-eng report issue: a payload closed to nine allow-listed fields, scanned for machine paths, personal data and secrets, written as a local gitignored draft, and shown as the exact bytes with their SHA-256 before anybody confirms anything. Trigger for "report this…

arcasilesgroup/ai-engineering · 132 tokens

ai-verify

Runs the gate and the security lane and ticks each production-ready box beside the command that ticked it, or walks a spec's examples and marks each one against a real command. Trigger for "verify this", "is it ready", "tick the boxes", "does it do what the spec said", "check the acceptance criteria". Not for judging…

arcasilesgroup/ai-engineering · 162 tokens

ai-ship

Lands the work: one commit per change, the changelog entry, a pull request that opens with what changed in plain words, the production-ready boxes ticked with the command that ticked each, the work item closed by a keyword in the body, and the branch cleaned up afterwards. Trigger for "ship it", "open a PR", "I'm…

arcasilesgroup/ai-engineering · 122 tokens