a2a-security-review
Review agent-to-agent (A2A) / multi-agent-system trust: peer identity and authentication, message integrity, capability-negotiation trust, and delegation-chain…
Review third-party dependencies for supply-chain trust risk — typosquatting, dependency confusion, maintainer/abandonment risk, unpinned versions, and malicious install scripts — not just known-CVE counts. Use when assessing how much a project trusts code it didn't write, or
$ npx -y skills add jassics/awesome-claude-security --skill dependency-supply-chain-review --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/dependency-supply-chain-reviewContext preview
The summary Claude sees to decide when to auto-load this skill.
Review third-party dependencies for supply-chain trust risk — typosquatting, dependency confusion, maintainer/abandonment risk, unpinned versions, and malicious install scripts — not just known-CVE counts. Use when assessing how much a project trusts code it didn't write, or
name: dependency-supply-chain-review description: >- Review third-party dependencies for supply-chain trust risk — typosquatting, dependency confusion, maintainer/abandonment risk, unpinned versions, and malicious install scripts — not just known-CVE counts. Use when assessing how much a project trusts code it didn't write, or vetting a new dependency.
A trust assessment of the dependency graph: which packages could become an attack path, and the controls (pinning, allowlists, verification) that close them. This is about **provenance and trust**, complementing the known-CVE scanning in `sast-sca`.
or impersonating an internal/well-known library.
registries; scoping/namespace not reserved; public takes precedence over private.
abandoned/unmaintained, sudden new maintainer before a release, low download trust.
build steps that run arbitrary code on `install`.
enforced; hash/integrity verification on install.
level one.
1. Inventory direct + transitive dependencies (ingest an SBOM or generate one — CycloneDX/SPDX). 2. Screen each against the risk patterns above; flag the install-script and confusion/typosquat cases first — those are active attack paths, not hygiene. 3. Check registry/namespace controls: are internal names reserved on public registries? Is a private-first resolver / allowlist enforced? 4. Recommend controls: pin + lockfile + integrity hashes, internal proxy/registry with allowlisting, scoped namespaces, and review gates for new dependencies.
A ranked findings list (package · risk type · evidence · blast radius · fix) plus recommended org-level controls. Route CVE/version remediation to `vulnerability-management`; formalize with `security-reporting`.
The dangerous supply-chain attacks aren't "old CVE in a lib" — they're malicious code shipped in a *legitimate* package (compromised maintainer, confusion, typo). `sast-sca` answers "is this dependency vulnerable?"; this skill answers "should I trust this dependency at all?"
A Claude Code plugin marketplace for the full cybersecurity & GenAI-security lifecycle — from recon and threat modeling to detection engineering, GRC, and CISO-level strategy. A pentester knows which OWASP test bends a broken-access-control endpoint.
Repo: jassics/awesome-claude-security
Review agent-to-agent (A2A) / multi-agent-system trust: peer identity and authentication, message integrity, capability-negotiation trust, and delegation-chain…
Test the agent execution harness/runtime itself — LangChain/LangGraph, AutoGen, CrewAI, custom ReAct-style loops, or computer-use/browser-use agents — for…
Assess an autonomous / tool-using AI agent for security end-to-end: tool privileges, autonomy and approval boundaries, excessive agency, memory/state…
Test what an AI agent will actually do without human confirmation, including under injected-goal / prompt-injection scenarios, to validate its autonomy and…
Review the security of MCP (Model Context Protocol) servers/clients an agent uses: server trust tier, tool/resource description and result poisoning,…
Inventory the tools/functions an AI agent can call and audit their privileges, side effects, and approval requirements to find excessive-agency and…