anth-deploy-integration

Featured

Deploy Claude API integrations to production cloud environments. Use when deploying Claude-powered services to Docker, Cloud Run, ECS, or Kubernetes with proper secret management and health checks. Trigger with phrases like "deploy anthropic", "claude production deploy", "ship claude integration", "anthropic cloud deployment".

DevOps & Infrastructure 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Anthropic Deploy Integration ## Overview Deploy Claude API integrations with proper secret management, health checks, and rollback procedures across Docker, GCP Cloud Run, and Kubernetes. ## Docker Deployment ```dockerfile FROM python:3.12-slim WORKDIR /app COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt COPY src/ ./src/ ENV ANTHROPIC_API_KEY="" EXPOSE 8000 CMD ["uvicorn", "src.main:app", "--host", "0.0.0.0", "--port", "8000"] ``` ```python # src/main.py from fastapi import FastAPI, HTTPException import anthropic app = FastAPI() client = anthropic.Anthropic() @app.get("/health") async def health(): try: count = client.messages.count_tokens( model="claude-haiku-4-20250514", messages=[{"role": "user", "content": "ping"}] ) return {"status": "healthy", "api": "connected"} except Exception as e: raise HTTPException(503, detail=str(e)) ``` ## GCP Cloud Run ```bash echo -n "sk-ant-api03-..." | gcloud secrets create anthropic-key --data-file=- gcloud run deploy claude-service \ --image gcr.io/my-project/claude-service \ --set-secrets ANTHROPIC_API_KEY=anthropic-key:latest \ --min-instances 1 --max-instances 10 \ --memory 512Mi --timeout 120s ``` ## Kubernetes ```yaml apiVersion: apps/v1 kind: Deployment metadata: { name: claude-service } spec: replicas: 3 strategy: { type: RollingUpdate, rollingUpdate: { maxUnavailable: 1 } } template: spec: containers: ...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

clade-deploy-integration

Deploy Claude-powered applications to Vercel, Fly.io, and Cloud Run Use when working with deploy-integration patterns. with proper secrets management and streaming support. Trigger with "deploy anthropic", "claude production deploy", "anthropic vercel", "deploy claude app".

2,266 Updated today
jeremylongshore
AI & Automation Featured

anth-ci-integration

Configure CI/CD pipelines for Anthropic Claude API integrations. Use when setting up automated testing, prompt regression tests, or CI validation for Claude-powered features. Trigger with phrases like "anthropic ci", "claude ci/cd", "test claude in pipeline", "anthropic github actions".

2,266 Updated today
jeremylongshore
AI & Automation Featured

anth-prod-checklist

Execute production deployment checklist for Claude API integrations. Use when deploying Claude-powered features to production, preparing for launch, or implementing go-live validation. Trigger with phrases like "anthropic production", "deploy claude", "claude go-live", "anthropic launch checklist", "production ready claude".

2,266 Updated today
jeremylongshore
AI & Automation Featured

clade-install-auth

Install and configure the Anthropic SDK for Claude API access. Use when setting up Claude integration, configuring API keys, or initializing the Anthropic client in your project. Trigger with phrases like "install anthropic", "setup claude api", "anthropic auth", "configure anthropic API key".

2,266 Updated today
jeremylongshore
AI & Automation Featured

apollo-deploy-integration

Deploy Apollo.io integrations to production. Use when deploying Apollo integrations, configuring production environments, or setting up deployment pipelines. Trigger with phrases like "deploy apollo", "apollo production deploy", "apollo deployment pipeline", "apollo to production".

2,266 Updated today
jeremylongshore