ak-cloud-deploy

A deployment guide for Agent Kernel projects on AWS, Azure, Google Cloud, or Kubernetes. Kubernetes is software for running and managing containerized applications across servers.

In plain words
What is it for?
It is for deploying Agent Kernel projects as serverless or containerized applications, including on-premises Kubernetes clusters and AWS setups with synchronous, asynchronous, WebSocket, or streaming execution.
Why use it?
It lays out the platform, runtime, and execution choices needed to put an agent project into production. It also checks whether the project has the expected files before deployment.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/yaalalabs/agent-kernel/ak-cloud-deploy
Any agent
npx skills add yaalalabs/agent-kernel --skill ak-cloud-deploy
Clone the repo
git clone --depth 1 https://github.com/yaalalabs/agent-kernel

Made for: Claude Code, Codex.

Per session 146 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 12,790 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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 $0.00146 $0.12790
Opus 5 $0.00073 $0.06395
Sonnet 5 $0.00029 $0.02558
Haiku 4.5 $0.00015 $0.01279

Measured 2d ago against content hash 26f8d3ade227, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

ak-cloud-deploy scanned grade A with 1 finding 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 2d ago.

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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -s -X POST http://localhost:8000/api/v1/chat \
ak-py/src/agentkernel/skills/ak-cloud-deploy/SKILL.md · 1,413 lines

How it starts

The opening of the file, as written. The whole thing — 1,413 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Deploy to Cloud

Use this skill to deploy your Agent Kernel project to AWS, Azure, or GCP.

Instructions for the Agent

When the user wants cloud deployment, follow this workflow.

Step 1: Identify the Project

Check for:

  • pyproject.toml with agentkernel dependency
  • agent entry file (app.py, lambda.py, or similar)
  • config.yaml

If missing, suggest ak-init first.

Step 2: Ask Deployment Questions

  1. Target platform: AWS, Azure, GCP, or Kubernetes (on-prem / baremetal / EKS via the Helm chart; see the On-Prem / Kubernetes section)?
  2. Runtime mode:
  • Serverless
  • Containerized
  1. Execution pattern (AWS only):
  • Synchronous HTTP (rest_sync, supports standard or queue/scalable mode; AWS serverless or containerized)
  • Asynchronous REST (rest_async, queue/scalable mode; AWS serverless or containerized)
  • WebSocket full-response (async, works with or without queue mode — queue_mode = false runs the agent inline, queue_mode = true enqueues to a separately-scalable Agent Runner) — AWS serverless or AWS containerized/ECS
  • WebSocket token streaming (stream, works with or without queue mode, same as async above) — AWS serverless or AWS containerized/ECS; also available via SSE (POST /api/v1/chat with execution.mode: stream, no Terraform changes required) wherever the built-in FastAPI REST server runs: local/self-hosted, AWS ECS single-container REST, Azure Container Apps, GCP Cloud Run — not on AWS Lambda or Azure Functions, which use WebSocket instead
  1. Scalability (AWS serverless only): standard or queue/scalable mode?
  2. Session store: Redis, Valkey (AWS only), DynamoDB (AWS), Cosmos DB (Azure), Firestore (GCP)?
  3. Security: custom authorizer required (AWS serverless only)?
  4. Environment aliases: product_alias, env_alias, module_name.

Step 3: Choose the Correct Terraform Module

Use official modules:

  • AWS serverless: yaalalabs/ak-serverless/aws
  • AWS containerized: yaalalabs/ak-containerized/aws
  • Azure serverless: yaalalabs/ak-serverless/azurerm
  • Azure containerized: yaalalabs/ak-containerized/azurerm
  • GCP serverless: yaalalabs/ak-serverless/google
  • GCP containerized: yaalalabs/ak-containerized/google

Read the full file on GitHub · 1,413 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 2d ago First seen · 1,413 lines · 146 tokens per session scan A 26f8d3ade227

Subscribe to this mod's changes

ak-cloud-deploy is a skill published in the GitHub repository yaalalabs/agent-kernel (145 stars, last pushed 5d ago), licensed Apache-2.0. It adds 146 tokens to every session and 12,790 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

ovh

OVHcloud infrastructure integration for managing instances, Kubernetes clusters, networks, and object storage via CLI and Terraform.

Arvo-AI/aurora · 24 tokens

awesome-kubernetes-ops

This skill documents the local verification, editing, and deployment procedures for the Antigravity AI Agent when pair-programming with the repository maintainer.

nubenetes/awesome-kubernetes · 0 tokens

Cloud Security & Container Hardening

AWS/Azure/GCP security auditing, container and Kubernetes hardening, Infrastructure as Code scanning, and cloud compliance assessment.

Masriyan/Claude-Code-CyberSecurity-Skill · 30 tokens

gke

Deploy and manage Kubernetes workloads on Google Kubernetes Engine (GKE). Covers Autopilot and Standard modes, Workload Identity, node pool management, networking, security, and gcloud/kubectl CLI patterns. Warns before cluster creation (billable). Use when the user mentions: kubernetes on GCP, create GKE cluster, GKE…

jpantsjoha/googlecloud-plugin · 90 tokens

cloud-run

Deploy and manage containerized workloads on Cloud Run. Covers service creation, traffic splitting, IAM, VPC connectivity, secrets integration, auto-scaling, and gcloud CLI patterns. Warns before billable deployments. Use when the user mentions: deploy to cloud run, create cloud run service, serverless container…

jpantsjoha/googlecloud-plugin · 87 tokens

ecs

AWS ECS container orchestration for running Docker containers. Use when deploying containerized applications, configuring task definitions, setting up services, managing clusters, or troubleshooting container issues.

itsmostafa/aws-agent-skills · 35 tokens