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.
npx agentmods add skills/yaalalabs/agent-kernel/ak-cloud-deploynpx skills add yaalalabs/agent-kernel --skill ak-cloud-deploygit clone --depth 1 https://github.com/yaalalabs/agent-kernelWhat 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.
| Model | Per session | Once 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 |
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 \ 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.tomlwithagentkerneldependency- agent entry file (
app.py,lambda.py, or similar) config.yaml
If missing, suggest ak-init first.
Step 2: Ask Deployment Questions
- Target platform: AWS, Azure, GCP, or Kubernetes (on-prem / baremetal / EKS via the Helm chart; see the On-Prem / Kubernetes section)?
- Runtime mode:
- Serverless
- Containerized
- 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 = falseruns the agent inline,queue_mode = trueenqueues to a separately-scalable Agent Runner) — AWS serverless or AWS containerized/ECS - WebSocket token streaming (
stream, works with or without queue mode, same asasyncabove) — AWS serverless or AWS containerized/ECS; also available via SSE (POST /api/v1/chatwithexecution.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
- Scalability (AWS serverless only): standard or queue/scalable mode?
- Session store: Redis, Valkey (AWS only), DynamoDB (AWS), Cosmos DB (Azure), Firestore (GCP)?
- Security: custom authorizer required (AWS serverless only)?
- 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
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.
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.
- 2d ago First seen · 1,413 lines · 146 tokens per session scan A 26f8d3ade227
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.
Other skills, from other repositories
ovh
OVHcloud infrastructure integration for managing instances, Kubernetes clusters, networks, and object storage via CLI and Terraform.
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.
Cloud Security & Container Hardening
AWS/Azure/GCP security auditing, container and Kubernetes hardening, Infrastructure as Code scanning, and cloud compliance assessment.
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…
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…
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.