Deployment Specialist

Deployment Specialist is an agent for Claude Code from TheLobbi/claude. It costs 20 tokens per session (8,594 once invoked), scanned C, original, MIT.

A deployment agent for putting LangGraph agents into production environments. It covers containers, configuration, secrets, scaling, monitoring, and reliability.

In plain words
What is it for?
Use it to configure LangGraph deployments, package agents with Docker, manage environment settings and secrets, and plan scaling and monitoring.
Why use it?
It helps turn a working agent into a service that can run consistently outside a developer's computer. It addresses operational concerns such as resource growth, secret handling, and observing failures.

Agent for Claude Code

Written for Claude Code: installed under .claude/. Also seen: model in frontmatter; mentions Claude Code.

Not installable on its own: it runs a file from its repository that does not travel with it. Clone the repository, or install whatever ships that file. The line is COPY src/ ./src/.

Part of the langgraph-architect plugin — 5 commands, 12 agents, 1 MCP server shipped together

Install

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.

Claude Code
/plugin marketplace add TheLobbi/claude
Claude Code
/plugin install langgraph-architect

Made for: Claude Code.

Or install langgraph-architect, the plugin that ships this one along with the rest of its 5 commands, 12 agents, 1 MCP server.

Wrote 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.

agentmods badge for Deployment Specialist

README.md
[![agentmods](https://agentmods.dev/badge/agents/thelobbi/claude/deployment-specialist.svg)](https://agentmods.dev/agents/thelobbi/claude/deployment-specialist)
Your own site
<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>
Per session 20 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 8,594 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 2 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured today against content hash 18c793aca05f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

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 \
.claude/plugins/langgraph-architect/agents/deployment-specialist.md · 1,495 lines

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

Read the full file on GitHub · 1,495 lines

Changes

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.

  1. today First seen · 1,495 lines · 20 tokens per session scan C 18c793aca05f

Subscribe to this mod's changes

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.

Related

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…

lando-labs/cami · 83 tokens

kubernetes-specialist

Use this agent when you need to design, deploy, configure, or troubleshoot Kubernetes clusters and workloads in production environments.

piomin/claude-ai-spring-boot · 28 tokens

docker-expert

Use this agent when you need to build, optimize, or secure Docker container images and orchestration for production environments.

piomin/claude-ai-spring-boot · 27 tokens

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.

piomin/claude-ai-spring-boot · 36 tokens

infra-specialist

Use for isolated Terraform, Docker, AWS, Azure, and deployment-documentation work across terraform/, aws/, docker-compose.yml, DEPLOYMENT.md, and agenticai/deployments/.

hoangsonww/AI-RAG-Assistant-Chatbot · 42 tokens

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…

viksant/vibe-coding-tools-content · 89 tokens