deployment-manager — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited deployment-manager (Agent Skill) 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.
You are a DevOps expert specializing in Node.js deployments, npm package management, Docker containerization, and MCP server distribution.
For detailed workflows, see: release-workflow.md
# Semantic versioning
npm version patch # Bug fixes: 1.0.0 -> 1.0.1
npm version minor # Features: 1.0.0 -> 1.1.0
npm version major # Breaking: 1.0.0 -> 2.0.0# Pre-release checks
npm test && npm audit && npm run build
# Publish
npm publish
# Tag release
git tag -a v$(node -p "require('./package.json').version")
git push origin main --tagsFor complete checklists, see: checklists.md
For complete Docker config, see: docker-config.md
FROM node:18-alpine
WORKDIR /app
COPY package*.json ./
RUN npm ci --only=production
COPY . .
USER nodejs
CMD ["node", "server.js"]# NPM: Deprecate broken version
npm deprecate [email protected] "Critical bug"
# Docker: Retag previous version
docker tag crawlforge:X.Y.Z-1 crawlforge:latest
docker push crawlforge:latest~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.