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 skills add AgenticPawan/FullStack-Pilot --skill azure-aks-governancegit clone --depth 1 https://github.com/AgenticPawan/FullStack-PilotWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/agenticpawan/fullstack-pilot/azure-aks-governance)<a href="https://agentmods.dev/skills/agenticpawan/fullstack-pilot/azure-aks-governance"><img src="https://agentmods.dev/badge/skills/agenticpawan/fullstack-pilot/azure-aks-governance.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00087 | $0.01286 |
| Opus 5 | $0.00044 | $0.00643 |
| Sonnet 5 | $0.00017 | $0.00257 |
| Haiku 4.5 | $0.00009 | $0.00129 |
Grade A, and why
azure-aks-governance scanned grade A with 0 findings 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 7d 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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 166 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Standard IDs
| ID | Severity | What it checks |
|---|---|---|
| AKS-001 | P0 | Namespace/pod has no Pod Security Standards enforcement |
| AKS-002 | P1 | Container has no resource requests/limits configured |
| AKS-003 | P0 | No NetworkPolicy restricting pod-to-pod traffic |
| AKS-004 | P0 | Pod uses a client-secret/connection-string instead of Azure Workload Identity |
This skill only applies when stack-detection identifies AKS as the compute target;
shops on Azure Container Apps are governed by azure-bicep-patterns/azure-security-baseline
instead — AKS introduces a distinct cluster-level governance surface those skills don't cover.
Check A — No Pod Security Standards enforcement (AKS-001)
Detection
Check the namespace manifest for Pod Security Admission labels
(pod-security.kubernetes.io/enforce). Without at least the baseline standard, a pod
spec can request privileged mode, host networking, or host path mounts — any of which
gives a compromised container a path to the underlying node.
BAD — namespace with no Pod Security Standard set
apiVersion: v1
kind: Namespace
metadata:
name: orders-prod
# No pod-security.kubernetes.io/enforce label — any pod spec is admitted as-is.
GOOD — restricted standard enforced at the namespace level
apiVersion: v1
kind: Namespace
metadata:
name: orders-prod
labels:
pod-security.kubernetes.io/enforce: restricted
pod-security.kubernetes.io/audit: restricted
Check B — No resource requests/limits (AKS-002)
Detection
Grep pod/deployment specs for containers with no resources.requests/resources.limits.
Without requests, the scheduler can't bin-pack nodes sensibly (noisy-neighbor risk);
without limits, one runaway container can consume all node memory and get OOM-killed
alongside every other pod on that node.
BAD — no resource requests/limits set
containers:
- name: orders-api
image: acr.azurecr.io/orders-api:latest
# No resources block — this container can consume unbounded CPU/memory on its node.
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.
- 7d ago First seen · 166 lines · 87 tokens per session scan A d6d90f6e0e9c
azure-aks-governance is a skill published in the GitHub repository AgenticPawan/FullStack-Pilot (2 stars, last pushed 1mo ago), licensed MIT. It adds 87 tokens to every session and 1,286 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
azure-prepare
Prepare azd-based Azure projects for deployment: generates azure.yaml, infrastructure (Bicep/Terraform), and Dockerfiles for the Azure Developer CLI (azd) workflow. USE ONLY when the user explicitly wants to use azd as the deployment tool, or the project already has an azure.yaml file. DO NOT USE FOR: non-azd…
azure-cloud-migrate
Assess and migrate cross-cloud workloads to Azure with reports and code conversion. Supports Lambda→Functions, Beanstalk/Heroku/App Engine→App Service, Fargate/Kubernetes/Cloud Run/Spring Boot→Container Apps. WHEN: migrate Lambda to Functions, AWS to Azure, migrate Beanstalk, migrate Heroku, migrate App Engine, Cloud…
ak-cloud-deploy
Deploy an Agent Kernel project to AWS, Azure, or GCP using Terraform modules, or to any Kubernetes cluster (on-prem, baremetal, EKS) using the official Helm chart. Supports serverless and containerized modes for all three clouds. AWS supports execution modes (restsync, restasync, async, stream), queue-based scalable…
azure-prepare
WORKFLOW SKILL — Prepare Azure apps for deployment (Bicep/Terraform, azure.yaml, Dockerfiles). WHEN: "create app", "build web app", "create API", "deploy to Azure", "generate Bicep", "generate Terraform", "function app", "add authentication", "managed identity". DO NOT USE FOR: cross-cloud migration…
azure-app-service-production-readiness
Review Azure App Service and Web Apps for production readiness across plan tier fit, slots, networking, private ingress, identities, secrets, scaling, diagnostics, resilience, backup, rollback, and operator readiness. Use when a team wants a real go/no-go decision instead of shallow reassurance.
alibaba-ack-container-platform-operator
Operate ACK clusters (managed/dedicated/serverless), ACR container registries, ASM service mesh, and container workload placement. Guide ACK type selection, OIDC workload identity, and image vulnerability posture.