# Agent Deployment

> Skill: Agent Engine & Cloud Run Deployment

- Skill: `izzyfresh/agent-deployment` (Agent Skill)
- Install (CLI): `npx skillmds@latest add izzyfresh/agent-deployment`
- Raw SKILL.md: https://api.skillmd.com/api/skills/izzyfresh/agent-deployment/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: DevOps & Infra
- Author: IzzyFresh (https://skillmd.com/u/izzyfresh)
- Updated: 2026-09-21
- Page: https://skillmd.com/skills/izzyfresh/agent-deployment

---

# Skill: Agent Engine & Cloud Run Deployment

This skill covers professional patterns for deploying ADK agents onto Google Cloud serverless infrastructures.

---

## 1. Deployment CLI Commands
*   Deploy to Agent Engine specifying the target project and location directly:
    ```bash
    adk deploy --project YOUR_PROJECT_ID --region us-central1
    ```
*   **Troubleshooting:** If you experience a 404 Model Availability error, verify that the active model in your `agent.py` is enabled in the specific region (`us-central1`).

## 2. Binary Dependencies (Cloud Build)
*   If your agent depends on complex OS-level libraries (e.g., for audio streaming or document translation), verify that the `.dockerignore` doesn't block required system binaries.
*   Use a custom `cloudbuild.yaml` to stage custom system libraries when packaging for Cloud Run.

