From deepagents-skills
Deploys and manages LangGraph agents on LangSmith: select cloud/hybrid/standalone models, validate langgraph.json, create revisions, integrate CI/CD, configure monitoring/secrets, troubleshoot issues.
npx claudepluginhub lubu-labs/langchain-agent-skills --plugin langgraph-skillsThis skill uses the workspace's default tool permissions.
Use this skill to deploy, revise, monitor, and troubleshoot LangGraph-based agents in LangSmith Deployment.
assets/templates/github-actions-deploy.ymlassets/templates/kubernetes-deployment.yamlassets/templates/langgraph-cloud.jsonreferences/cicd-integration.mdreferences/deployment-guide.mdreferences/environment-management.mdreferences/monitoring-alerts.mdreferences/scaling-configuration.mdreferences/troubleshooting-deployment.mdscripts/deploy_to_langsmith.pyscripts/deploy_to_langsmith.tsscripts/rollback_deployment.pyscripts/setup_monitoring.pyscripts/validate_deployment.pyGuides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
Use this skill to deploy, revise, monitor, and troubleshoot LangGraph-based agents in LangSmith Deployment.
langgraph.json validation and deployment compatibility checks.| Model | Use when | Build/Source | Operates infra |
|---|---|---|---|
| Cloud | Fastest managed production path | GitHub repo via control plane | LangSmith |
| Hybrid/Self-hosted with control plane | You need private data plane + centralized deployment UI/API | Container image + control plane | You |
| Standalone server | You want direct Agent Server hosting without control plane | Containerized server | You |
langgraph.jsonuv run python skills/langsmith-deployment/scripts/validate_deployment.py --config langgraph.json --target cloud
uv run python skills/langsmith-deployment/scripts/deploy_to_langsmith.py \
--name "my-agent-prod" \
--owner my-org \
--repo my-agent-repo \
--branch main \
--config langgraph.json
uv run python skills/langsmith-deployment/scripts/deploy_to_langsmith.py \
--name "my-agent-prod" \
--owner my-org \
--repo my-agent-repo \
--region eu
uv run python skills/langsmith-deployment/scripts/deploy_to_langsmith.py \
--name "my-agent-prod" \
--owner my-org \
--repo my-agent-repo \
--control-plane-url https://<your-langsmith-host>/api-host
uv run python skills/langsmith-deployment/scripts/deploy_to_langsmith.py \
--name "my-agent-prod" \
--owner my-org \
--repo my-agent-repo \
--deployment-id <deployment-id> \
--branch main
uv run python skills/langsmith-deployment/scripts/rollback_deployment.py \
--deployment-id <deployment-id> \
--list-revisions
uv run python skills/langsmith-deployment/scripts/rollback_deployment.py \
--deployment-id <deployment-id>
uv run python skills/langsmith-deployment/scripts/setup_monitoring.py \
--project my-agent-prod \
--output-json /tmp/monitoring-plan.json
Note: setup_monitoring.py generates a docs-aligned setup plan/templates. Alerts are configured in LangSmith UI per project.
graphs is required in langgraph.json.dependencies is required.node_version present), dependencies may be handled via package.json.env may be either a string path to an env file or an inline object map.python_version should be one of 3.11, 3.12, 3.13 when set.pip_installer should be one of auto, pip, uv when set.node_version currently documented for LangGraph.js as 20.https://api.host.langchain.com.https://eu.api.host.langchain.com.https://<host>/api-host.X-Tenant-Id), exposed by scripts as --tenant-id.langgraph.json or source code.LANGSMITH_API_KEY env var.DATABASE_URI, REDIS_URI, license key, and any app provider keys)./docs etc.).references/deployment-guide.md: Deployment model choice and end-to-end execution.references/cicd-integration.md: CI/CD stages, control-plane automation patterns, preview/prod strategy.references/environment-management.md: Env var sources, secrets patterns, standalone required vars.references/monitoring-alerts.md: Dashboards, alert model, webhook payload guidance.references/scaling-configuration.md: Scaling responsibilities by model and tuning knobs.references/troubleshooting-deployment.md: Failure triage and rollback strategy.scripts/validate_deployment.py: Validate langgraph.json and deployment readiness.scripts/deploy_to_langsmith.py: Create deployment or revision via control-plane API.scripts/deploy_to_langsmith.ts: TypeScript equivalent deploy/revision script.scripts/rollback_deployment.py: List and rollback revisions.scripts/setup_monitoring.py: Generate alert/dashboard/webhook setup plan.assets/templates/langgraph-cloud.json: Cloud-oriented starter config.assets/templates/github-actions-deploy.yml: CI/CD template for deployment automation.assets/templates/kubernetes-deployment.yaml: Kubernetes template for self-managed environments.assets/templates/.env.example: Env var template for safe sharing.