deploy-agent

Analyzes agent capabilities, scores deployment stacks, and guides step-by-step production deployment.

1|9|Updated Jul 11, 2026
One-click install
npx skills add https://github.com/agenticgogol/Edureka_Coding_Agent_Enabled_Demo_11Jul --skill deploy-agent-agenticgogol
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: deploy-agent
Source: https://github.com/agenticgogol/Edureka_Coding_Agent_Enabled_Demo_11Jul/tree/main/.claude/skills/deploy-agent
Command: npx skills add https://github.com/agenticgogol/Edureka_Coding_Agent_Enabled_Demo_11Jul --skill deploy-agent-agenticgogol

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve? Taking an AI agent from a local prototype to production requires choosing among many hosting stacks and executing dozens of error-prone steps involving cloud consoles, secrets, and billing. This Skill removes the guesswork by profiling the agent's actual capabilities, deterministically scoring seven deployment stack archetypes, and walking the user through a guided go-live runbook. ## Core Features & Use Cases - Capability Detection: Delegates to a repo-capability-scanner subagent to detect UI type, run duration, state requirements, auth mode, and other deployment-relevant capabilities, then confirms findings with the user in one pass. - Deterministic Stack Scoring: Runs scripts/score_stack.py, a direct port of the decision guide's scoring engine, to rank seven stacks (Streamlit hosting, PaaS, Cloud Run, Vercel, VM, managed hyperscaler, Kubernetes) as recommended, viable, or poor fit. - Guided Runbooks: Executes stack-specific runbooks from references/ with [AUTO] steps performed by the agent and [HUMAN] steps that pause for console actions, credentials, or spending decisions. - Use Case: A developer finishes a LangGraph agent with local SQLite state and asks how to ship it. The skill detects the local state and streaming needs, recommends Cloud Run or a VM, then guides provisioning, secrets, Docker, and rollback step by step. ## Quick Start Invoke /deploy-agent with the path to your agent project to get a stack recommendation and a guided deployment walkthrough.

Frequently Asked Questions about deploy-agent

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I deploy an AI agent to production?▼

Invoke /deploy-agent with your agent's project path. It scans the repo for capabilities like UI type, state, and run duration, scores seven deployment stacks deterministically, then walks you through a runbook with automated steps and human confirmation gates.

What deployment stack should I use for a Streamlit or FastAPI agent?▼

The skill scores seven archetypes: Streamlit hosting, managed PaaS, Cloud Run, Vercel plus API, single VM with Docker Compose, managed hyperscaler containers, and Kubernetes. The recommendation depends on detected capabilities like local state, streaming, background workers, and your budget tier.

When should I choose a VM over Cloud Run for my agent?▼

A single VM fits when the agent needs persistent local disk, headless browsers, code execution, self-hosted MCP servers, or always-on workers. Cloud Run fits containerized APIs with bursty traffic, but requires all state to live in external managed services.

Does the skill deploy to cloud providers automatically?▼

No. Steps with external side effects like creating GitHub repos, provisioning VMs, or entering secrets are tagged [HUMAN] and pause for explicit user confirmation. Only local file writes, git operations, and Docker builds run automatically.

Why does deploy-agent not trigger automatically on deployment questions?▼

It sets disable-model-invocation: true because it creates real GitHub repos, writes into the target project, and guides provisioning of paid cloud resources. It only runs on an explicit /deploy-agent invocation to avoid unintended side effects.