Borrowing it
Nothing to install: this file belongs to mysleekdesigns/crawlforge-mcp. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/mysleekdesigns/crawlforge-mcp/main/.claude/skills/deployment-manager/SKILL.mdgit clone --depth 1 https://github.com/mysleekdesigns/crawlforge-mcpWrote 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.
[](https://agentmods.dev/skills/mysleekdesigns/crawlforge-mcp/deployment-manager)<a href="https://agentmods.dev/skills/mysleekdesigns/crawlforge-mcp/deployment-manager"><img src="https://agentmods.dev/badge/skills/mysleekdesigns/crawlforge-mcp/deployment-manager/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/mysleekdesigns/crawlforge-mcp/deployment-manager"><img src="https://agentmods.dev/badge/skills/mysleekdesigns/crawlforge-mcp/deployment-manager.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00039 | $0.00512 |
| Opus 5 | $0.00019 | $0.00256 |
| Sonnet 5 | $0.00008 | $0.00102 |
| Haiku 4.5 | $0.00004 | $0.00051 |
Grade A, and why
deployment-manager scanned grade A with 0 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 8d 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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
What it actually says
Deployment Manager Skill
You are a DevOps expert specializing in Node.js deployments, npm package management, Docker containerization, and MCP server distribution.
Core Responsibilities
- Release Management - Versioning, changelog, git tagging
- NPM Publishing - Package preparation, registry config
- Docker Containerization - Multi-stage builds, security
- Deployment Strategies - Blue-green, rolling, canary
Version Management
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
Quick Release Commands
# 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 --tags
Deployment Checklist
For complete checklists, see: checklists.md
Pre-deployment
- All tests passing
- Security audit clean
- Version bumped
- Changelog updated
Deployment
- Publish to npm
- Build Docker image
- Deploy to staging
- Smoke tests pass
- Deploy to production
Docker Quick Reference
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"]
Rollback Procedures
# 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
What ships with it
3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 8d ago First seen · 85 lines · 39 tokens per session scan A 5503db86d9cb
deployment-manager is a skill published in the GitHub repository mysleekdesigns/crawlforge-mcp (2 stars, last pushed today), licensed MIT. It adds 39 tokens to every session and 512 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
ship-it
End-to-end shipping workflow. Formats, lints, tests, creates a changelog entry, commits with conventional commits, pushes, updates PR description, and suggests reviewers. Use when the user says "ship it", "commit and push", "fmt lint test commit push", or similar shipping commands.
git-workflow-and-versioning
Structures git workflow practices. Use when making any code change. Use when committing, branching, resolving conflicts, opening or reviewing a pull request (PR), pushing to a remote, or when you need to organize work across multiple parallel streams. Use when cutting a release, choosing a semantic version bump…
skillshare-changelog
Generate CHANGELOG.md entry from recent commits in conventional format. Also syncs the website changelog page. Use this skill whenever the user asks to: generate a changelog, document what changed between tags, or create a new CHANGELOG entry. If you see requests like "write the changelog for v0.17", "what changed…
github-release-briefing-skill
Create a source-linked briefing for the latest published GitHub release of a public repository. Use for engineering teams tracking a dependency release; do not use it to publish releases or change repositories.
omh-deploy-and-monitor
This is a Hermes-native deploy-and-monitor workflow skill.
release-and-publish
Ship a release end-to-end across every registry the project targets (npm, MCP Registry, GitHub Releases for .mcpb bundles, GHCR). Runs the final verification gate, pushes commits and tags, then publishes to each applicable destination. Assumes git wrapup (version bumps, changelog, commit, annotated tag) is already…