security/auditing-dependencies/SKILL.md
Analyze third-party libraries and supply chain risks to ensure no compromised or vulnerable code enters the project.
npx skillsauth add 7a336e6e/skills auditing-dependenciesInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Maintain a "clean room" environment where every external package is verified, pinned, and free of known vulnerabilities (CVEs) or malicious maintainer practices.
Use ecosystem-specific tools to check against CVE databases.
npm audit or pnpm audit.pip-audit or safety.Before installing a package, check:
react vs raect).Never use loose version ranges in production.
"react": "18.2.0" (Exact version)"react": "^18.2.0" (Allows updates that might introduce bugs or malware)package-lock.json, pnpm-lock.yaml, or poetry.lock is committed.package.json / requirements.txt with pinned versions.AUDIT_LOG.md entry confirming the check.shared/environment-config/SKILL.mddevelopment
Implement features using the Red-Green-Refactor cycle to ensure testability and correctness from the start.
data-ai
Manage the `tasks.md` ledger with strict locking and collision avoidance protocols to allow multiple agents to work in parallel safely.
development
The git-workflow skill defines branching conventions, commit message formats, and pull request standards that all agents must follow for consistent version control.
development
The environment-config skill standardizes how agents manage environment variables, secrets, and application configuration across local development and deployed environments.