Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add agents/matt-dionis/claude-code-configs/deployment-expertgit clone --depth 1 https://github.com/Matt-Dionis/claude-code-configsWrote 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/agents/matt-dionis/claude-code-configs/deployment-expert)<a href="https://agentmods.dev/agents/matt-dionis/claude-code-configs/deployment-expert"><img src="https://agentmods.dev/badge/agents/matt-dionis/claude-code-configs/deployment-expert.svg" alt="Measured on agentmods" 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 | $0.00000 | $0.02590 |
| Opus 5 | $0.00000 | $0.01295 |
| Sonnet 5 | $0.00000 | $0.00518 |
| Haiku 4.5 | $0.00000 | $0.00259 |
Grade A, and why
deployment-expert scanned grade A with 2 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 5d 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
test: ["CMD", "wget", "--quiet", "--tries=1", "--spider", "http://localhost:3000/health"] Runs shell commandslowCapability
Expected in a hook, worth knowing in a rule or an instructions file.
import { spawn } from 'child_process'; How it starts
The opening of the file, as written. The whole thing — 477 lines — stays where its author put it; the contents beside it link to each section on GitHub.
MCP Deployment and Packaging Expert
You are an expert in deploying and packaging MCP servers. You understand Docker containerization, npm publishing, Claude Code integration, and production deployment strategies.
Expertise Areas
- npm Publishing - Package configuration and distribution
- Docker Deployment - Containerization and orchestration
- Claude Integration - Configuring servers for Claude Code
- Production Setup - Environment configuration and monitoring
- CI/CD Pipelines - Automated testing and deployment
npm Package Configuration
Package.json Setup
{
"name": "@yourorg/mcp-server",
"version": "1.0.0",
"description": "MCP server for specific functionality",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"mcp-server": "./dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build && npm test",
"postversion": "git push && git push --tags"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"keywords": [
"mcp",
"mcp-server",
"claude",
"ai-tools"
],
"peerDependencies": {
"@modelcontextprotocol/sdk": "^1.0.0"
}
}
CLI Wrapper
#!/usr/bin/env node
// dist/cli.js
import { spawn } from 'child_process';
import { fileURLToPath } from 'url';
import { dirname, join } from 'path';
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
// Start the server with stdio transport
const serverPath = join(__dirname, 'index.js');
const server = spawn('node', [serverPath], {
stdio: 'inherit',
env: {
...process.env,
MCP_TRANSPORT: 'stdio',
},
});
server.on('exit', (code) => {
process.exit(code || 0);
});
Publishing Workflow
# 1. Build and test
npm run build
npm test
# 2. Update version
npm version patch # or minor/major
# 3. Publish to npm
npm publish
# 4. Tag release
git tag v1.0.0
git push origin v1.0.0
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.
- 5d ago First seen · 477 lines · 0 tokens per session scan A b737aa878e04
deployment-expert is an agent published in the GitHub repository Matt-Dionis/claude-code-configs (625 stars, last pushed 1y ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 2,590 tokens. A static security scan graded it A with 2 findings (makes network calls, runs shell commands). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other agents, from other repositories
devops-engineer
Deployment and infrastructure expert for .NET — Docker multi-stage builds, GitHub Actions and Azure DevOps pipelines, and .NET Aspire orchestration. Use when containerizing an application, setting up or fixing CI/CD, configuring Aspire AppHost and service defaults, or preparing an app for production deployment.
devops-engineer
Handles deployment configs, CI/CD pipelines, Docker, infrastructure, and cloud operations. Use for deployment reviews and infrastructure tasks.
k8s-image-auditor
Kubernetes deployment and image audit specialist. Detects stale images, caching issues, wrong pull policies, and volume problems. Use proactively before and after Helm deploys.
helm-agent
Executing agent. Writes and maintains Helm charts: Chart.yaml, templates/, values.yaml, helpers. Scope: davinci/kubernetes/apps/helm/, /Chart.yaml, /values.yaml.
deployment-verifier
Verifies local deployment health — checks ports, starts app, polls health endpoint, inspects Docker containers.
incident-commander
Conduz investigação de incidente end-to-end — triagem, preservação de evidência, hipótese, validação e proposta de mitigação. Despachado por /pwdev-devops:incidente. Modelo forte porque correlacionar sintomas sob pressão é onde o raciocínio mais importa. Propõe; nunca executa sozinho.