auditing-supply-chain

auditing-supply-chain is a skill for Claude Code, Codex from EvilFreelancer/secs. It costs 74 tokens per session (3,150 once invoked), scanned B, a copy of auditing-supply-chain, Apache-2.0.

A guide to checking the security of the software supply chain: the libraries, tools, build systems, and release steps used to create software. It covers direct and transitive dependencies, meaning packages required by other packages.

In plain words
What is it for?
Reviewing dependencies, lockfiles, software bills of materials, GitHub Actions, CI/CD pipelines, package compromises, build provenance, artifact signing, and dependency-related secrets.
Why use it?
It helps find attack paths through third-party code, automated builds, release workflows, package names, and exposed secrets before they affect software or signing keys.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

Good fit Reviewing dependencies, lockfiles, software bills of materials, GitHub Actions, CI/CD pipelines, package compromises, build provenance, artifact signing, and dependency-related secrets.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/evilfreelancer/secs/auditing-supply-chain
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.

Any agent
npx skills add EvilFreelancer/secs --skill auditing-supply-chain
Clone the repo
git clone --depth 1 https://github.com/EvilFreelancer/secs

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 auditing-supply-chain

README.md
[![agentmods](https://agentmods.dev/badge/skills/evilfreelancer/secs/auditing-supply-chain.svg)](https://agentmods.dev/skills/evilfreelancer/secs/auditing-supply-chain)
Your own site
<a href="https://agentmods.dev/skills/evilfreelancer/secs/auditing-supply-chain"><img src="https://agentmods.dev/badge/skills/evilfreelancer/secs/auditing-supply-chain.svg" alt="Measured on agentmods" height="20"></a>
Per session 74 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,150 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 3 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 100% copy Near-identical to another mod 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.1 $0.00074 $0.03150
Opus 5 $0.00037 $0.01575
Sonnet 5 $0.00015 $0.00630
Haiku 4.5 $0.00007 $0.00315

Measured 7d ago against content hash fe66440337da, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade B, and why

auditing-supply-chain scanned grade B with 3 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 7d 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.

Reaches for credential filesmediumPrivilege escalation

SSH keys, cloud credentials, git-credentials, .npmrc, /etc/shadow: reading these is how a config file becomes a credential leak.

| Environment and credential access | Reads of `~/.aws`, `.npmrc`, `.git-credentials`, `process.env` dumps |

Downgraded: this mod is about security review, or the phrase is quoted, so it is likely naming the pattern rather than instructing it.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

rg -n 'os\.system|subprocess|urllib|requests|__import__|exec\(' <pkg>/setup.py

Runs shell commandslowCapability

Expected in a hook, worth knowing in a rule or an instructions file.

npm pack <pkg> && tar -xzf <pkg>.tgz && rg -n 'child_process|eval\(|Buffer\.from\(.*base64|https?://' package/
Origin

This is a copy

100% identical to auditing-supply-chain — 2 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.agents/skills/auditing-supply-chain/SKILL.md · 301 lines

How it starts

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

Auditing Supply Chain

Your build pipeline runs more untrusted code than your application does. A single unpinned action, a postinstall script, or a workflow with a writable token is a path from a stranger's commit to your production artifacts and your signing keys.

When to Use

  • Assessing risk from third-party dependencies in an application
  • Reviewing CI/CD pipelines, GitHub Actions, and release automation
  • Investigating a suspicious or malicious package
  • Producing or reviewing an SBOM
  • Hardening build provenance and artifact signing
  • Responding to a disclosed upstream compromise

When NOT to Use

  • Vulnerabilities in first-party code — use auditing-code-for-vulnerabilities
  • Model and dataset provenance — use securing-ai-systems
  • Cloud infrastructure posture generally — use exploiting-cloud-platforms for offensive assessment
  • An in-progress compromise — use responding-to-incidents
  • Prioritizing which of many dependency CVEs to fix first — use managing-vulnerabilities; reachability analysis here feeds its ranking

Two Different Risks

Keep them separate; they need different responses.

Known-vulnerable dependency Malicious dependency
Detection CVE databases, npm audit, osv-scanner Behavioural review, install scripts, publisher anomalies
Signal Loud and well-tooled Quiet; scanners usually miss it
Response Patch, or justify the risk Incident — assume credentials on the build host are burned
Time pressure Days to weeks Hours

Most programs handle the first and are blind to the second. Give the second explicit attention.

Dependency Review

# Known vulnerabilities, ecosystem-agnostic
osv-scanner --lockfile=package-lock.json --lockfile=go.sum --lockfile=Cargo.lock
trivy fs --scanners vuln,secret,misconfig .
grype dir:.

# Ecosystem-native
npm audit --omit=dev && npm ls --all --depth=99 | wc -l   # count transitives
pip-audit -r requirements.txt
cargo audit
govulncheck ./...    # reachability-aware: only reports vulns you actually call
mvn dependency-check:check

Read the full file on GitHub · 301 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. 7d ago First seen · 301 lines · 74 tokens per session scan B fe66440337da

Subscribe to this mod's changes

auditing-supply-chain is a skill published in the GitHub repository EvilFreelancer/secs (10 stars, last pushed 29d ago), licensed Apache-2.0. It adds 74 tokens to every session and 3,150 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it B with 3 findings (reaches for credential files, makes network calls, runs shell commands). It is 100% identical to auditing-supply-chain, differing in 2 lines, and is treated as a copy.

Related

Other skills, from other repositories

Blue Team Defense & Hardening

System hardening, detection engineering, security baseline monitoring, patch management, defense-in-depth architecture, and security posture improvement.

Masriyan/Claude-Code-CyberSecurity-Skill · 30 tokens

analyzing-slack-space-and-file-system-artifacts

Examine file system slack space, MFT entries, USN journal, and alternate data streams to recover hidden data and reconstruct file activity on NTFS volumes.

26zl/cybersec-toolkit · 44 tokens

analyzing-ransomware-encryption-mechanisms

Analyzes encryption algorithms, key management, and file encryption routines used by ransomware families to assess decryption feasibility, identify implementation weaknesses, and support recovery efforts. Covers AES, RSA, ChaCha20, and hybrid encryption schemes. Activates for requests involving ransomware…

26zl/cybersec-toolkit · 79 tokens

analyzing-windows-event-logs-in-splunk

Analyzes Windows Security, System, and Sysmon event logs in Splunk to detect authentication attacks, privilege escalation, persistence mechanisms, and lateral movement using SPL queries mapped to MITRE ATT&CK techniques. Use when SOC analysts need to investigate Windows-based threats, build detection queries, or…

26zl/cybersec-toolkit · 81 tokens

building-incident-response-dashboard

Builds real-time incident response dashboards in Splunk, Elastic, or Grafana to provide SOC analysts and leadership with situational awareness during active incidents, tracking affected systems, containment status, IOC spread, and response timeline. Use when IR teams need unified visibility during incident…

26zl/cybersec-toolkit · 66 tokens

bypassing-authentication-with-forced-browsing

Discovering and accessing unprotected pages, APIs, and administrative interfaces by enumerating URLs and bypassing authentication controls during authorized security assessments.

26zl/cybersec-toolkit · 39 tokens