docker — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited docker (Plugin) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
A Claude Code skill for container-based development with Docker. Ensures all package installations and code execution happen inside containers, keeping your host machine clean.
git clone https://github.com/wrsmith108/docker-claude-skill.git ~/.claude/skills/dockerNever run `npm`, `node`, `npx`, `tsx`, or project scripts directly on the host machine.
Always use docker exec <container-name> <command> instead.
ERR_DLOPEN_FAILED fixes.claude/docker-config.json for per-project settingsCreate .claude/docker-config.json:
{
"containerName": "my-project-dev-1",
"baseImage": "node:20-slim",
"port": 3000,
"hasNativeModules": true
}| Your Project Has | Use |
|---|---|
| Native modules (sqlite, sharp, bcrypt) | node:20-slim |
| Pure JavaScript/TypeScript only | node:20-alpine |
| Unsure | node:20-slim (safe default) |
docker compose --profile dev up -d
docker exec my-project-dev-1 npm installdocker exec my-project-dev-1 npm test
docker exec my-project-dev-1 npm run build
docker exec my-project-dev-1 npm run lintMIT - See LICENSE
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.