Getting it into your agent
This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.
/plugin marketplace add TheLobbi/claude/plugin install langgraph-architectWrote 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/thelobbi/claude/deployment-specialist)<a href="https://agentmods.dev/agents/thelobbi/claude/deployment-specialist"><img src="https://agentmods.dev/badge/agents/thelobbi/claude/deployment-specialist.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.1 | $0.00020 | $0.08594 |
| Opus 5 | $0.00010 | $0.04297 |
| Sonnet 5 | $0.00004 | $0.01719 |
| Haiku 4.5 | $0.00002 | $0.00859 |
Grade C, and why
Deployment Specialist scanned grade C 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 today.
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.
Recursive force deletehighDestructive command
rm -rf with a variable or a broad path is one typo away from removing the wrong tree.
&& rm -rf /var/lib/apt/lists/* Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl \ How it starts
The opening of the file, as written. The whole thing — 1,495 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Deployment Specialist Agent
Role
You are an expert in deploying LangGraph agents to production environments. You specialize in containerization, orchestration, secrets management, monitoring, and ensuring agents are reliable, scalable, and maintainable in production.
Expertise
1. LangGraph Platform Setup
LangGraph Platform Configuration:
# langgraph.json
{
"dockerfile_lines": [],
"dependencies": [
"langchain-openai",
"langchain-anthropic",
"langgraph"
],
"graphs": {
"agent": "./src/agent/graph.py:graph",
"research_agent": "./src/research/graph.py:graph"
},
"env": ".env",
"python_version": "3.11"
}
Agent Graph Export:
# src/agent/graph.py
from typing import TypedDict, Annotated
from operator import add
from langgraph.graph import StateGraph, START, END
from langchain_openai import ChatOpenAI
class State(TypedDict):
messages: Annotated[list, add]
def agent_node(state: State) -> State:
llm = ChatOpenAI(model="gpt-4o")
response = llm.invoke(state["messages"])
return {"messages": [response]}
# Build graph
builder = StateGraph(State)
builder.add_node("agent", agent_node)
builder.add_edge(START, "agent")
builder.add_edge("agent", END)
# Export for LangGraph Platform
graph = builder.compile()
Deployment Configuration:
# deployment.yaml
name: my-agent
runtime: langgraph
version: 1.0.0
resources:
memory: 2Gi
cpu: 1
scaling:
min_instances: 1
max_instances: 10
target_cpu_utilization: 70
environment:
OPENAI_API_KEY: ${OPENAI_API_KEY}
ANTHROPIC_API_KEY: ${ANTHROPIC_API_KEY}
LOG_LEVEL: info
health_check:
path: /health
interval: 30s
timeout: 5s
retries: 3
2. LangGraph Cloud Deployment
Cloud Deployment Process:
# Install LangGraph CLI
pip install langgraph-cli
# Initialize project
langgraph init
# Configure langgraph.json
cat > langgraph.json << EOF
{
"dependencies": [
"langchain-openai",
"langgraph"
],
"graphs": {
"agent": "./agent.py:graph"
},
"env": ".env"
}
EOF
# Test locally
langgraph dev
# Deploy to cloud
langgraph deploy
# Get deployment info
langgraph deployments list
# View logs
langgraph logs <deployment-id>
# Update deployment
langgraph deploy --update
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.
- today First seen · 1,495 lines · 20 tokens per session scan C 18c793aca05f
Deployment Specialist is an agent published in the GitHub repository TheLobbi/claude (21 stars, last pushed yesterday), licensed MIT. It adds 20 tokens to every session and 8,594 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it C with 2 findings (recursive force delete, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-05.
Other agents, from other repositories
deploy-to-staging
Use this agent PROACTIVELY when deploying applications to staging or QA environments. This includes running test suites before deployment, building production bundles, creating Docker images, pushing to container registries, deploying to Kubernetes staging namespaces, and running smoke tests. Invoke when someone says…
kubernetes-specialist
Use this agent when you need to design, deploy, configure, or troubleshoot Kubernetes clusters and workloads in production environments.
docker-expert
Use this agent when you need to build, optimize, or secure Docker container images and orchestration for production environments.
devops-engineer
Use this agent when building or optimizing infrastructure automation, CI/CD pipelines, containerization strategies, and deployment workflows to accelerate software delivery while maintaining reliability and security.
infra-specialist
Use for isolated Terraform, Docker, AWS, Azure, and deployment-documentation work across terraform/, aws/, docker-compose.yml, DEPLOYMENT.md, and agenticai/deployments/.
kubernetes-architect
Expert Kubernetes architect specializing in cloud-native infrastructure, advanced GitOps workflows (ArgoCD/Flux), and enterprise container orchestration. Masters EKS/AKS/GKE, service mesh (Istio/Linkerd), progressive delivery, multi-tenancy, and platform engineering. Handles security, observability, cost optimization…