cloud-security

cloud-security is a skill for Claude Code, Codex from kinhluan/skills. It costs 56 tokens per session (2,887 once invoked), scanned A, original, MIT.

Guidance for securing cloud systems on AWS, Google Cloud, and Microsoft Azure.

In plain words
What is it for?
Setting up IAM roles, securing storage and networks, preparing for SOC 2 or ISO 27001 audits, scanning for misconfigurations, and responding to cloud incidents.
Why use it?
It helps identify and reduce risks in access controls, storage, networks, data protection, compliance, and cloud configuration.

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/kinhluan/skills/cloud-security
Any agent
npx skills add kinhluan/skills --skill cloud-security
Clone the repo
git clone --depth 1 https://github.com/kinhluan/skills

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for cloud-security

README.md
[![agentmods](https://agentmods.dev/badge/skills/kinhluan/skills/cloud-security.svg)](https://agentmods.dev/skills/kinhluan/skills/cloud-security)
Your own site
<a href="https://agentmods.dev/skills/kinhluan/skills/cloud-security"><img src="https://agentmods.dev/badge/skills/kinhluan/skills/cloud-security.svg" alt="Measured on agentmods" height="20"></a>
Per session 56 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,887 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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.00056 $0.02887
Opus 5 $0.00028 $0.01443
Sonnet 5 $0.00011 $0.00577
Haiku 4.5 $0.00006 $0.00289

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

Security

Grade A, and why

cloud-security 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 4d 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.

.agent-skills/cloud-security/SKILL.md · 415 lines

How it starts

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

Cloud Security

Comprehensive cloud security guidance for AWS, GCP, and Azure. Covers IAM, network security, data protection, compliance, and automated security scanning.

"Cloud security is a shared responsibility. Know your side of the shared model."


🎯 When to Use

  • Securing cloud infrastructure (AWS/GCP/Azure)
  • Configuring IAM policies and roles
  • Hardening storage (S3, GCS, Blob)
  • Setting up network security (VPC, NSG, firewall rules)
  • Compliance preparation (SOC2, ISO 27001, PCI-DSS)
  • Auditing cloud resources for misconfigurations
  • Incident response in cloud environments

☁️ Shared Responsibility Model

┌─────────────────────────────────────────────────────────────┐
│                      CUSTOMER                               │
│  ├─ Data security & encryption                              │
│  ├─ Identity & access management                            │
│  ├─ Application security                                    │
│  ├─ OS, network, firewall configuration                     │
│  ├─ Client-side encryption                                  │
│  └─ Server-side encryption (customer-managed keys)          │
├─────────────────────────────────────────────────────────────┤
│                      CLOUD PROVIDER                         │
│  ├─ Physical infrastructure                                 │
│  ├─ Host OS & virtualization                                │
│  ├─ Network infrastructure                                  │
│  └─ Data center security                                    │
└─────────────────────────────────────────────────────────────┘

🔐 AWS Security

IAM Best Practices

// Least privilege policy example
{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Action": [
                "s3:GetObject",
                "s3:PutObject"
            ],
            "Resource": "arn:aws:s3:::my-bucket/${aws:username}/*",
            "Condition": {
                "Bool": {
                    "aws:MultiFactorAuthPresent": "true"
                }
            }
        }
    ]
}

Read the full file on GitHub · 415 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. 4d ago First seen · 415 lines · 56 tokens per session scan A 39252ce0a068

Subscribe to this mod's changes

cloud-security is a skill published in the GitHub repository kinhluan/skills (4 stars, last pushed 7d ago), licensed MIT. It adds 56 tokens to every session and 2,887 once invoked, about $0.0003 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.

Related

Other skills, from other repositories

ai-ml-governance

Governs models and AI systems in production — intended use, evaluation, monitoring, human oversight, documentation, and the decision to deploy or retire. Use this before deploying a model or AI feature, when defining evaluation criteria, when a model's behavior has drifted, when assessing AI risk or regulatory…

cbrock84/headcount · 83 tokens

c2pa-sign

Embed C2PA provenance manifests in AI-generated assets — the machine-readable AI disclosure EU AI Act Article 50 expects (enforceable since 2 Aug 2026), plus the human-approval record for the Article 50(4) exemption. Triggers on "/c2pa-sign", "sign this asset", "provenance", "content credentials", "AI disclosure"…

indranilbanerjee/socialforge · 124 tokens

state-fee-lookup

Use to look up sales tax rate, doc fee cap, title fee, registration fee, and trade-in credit eligibility for any of 50 US states + DC. Returns the fees in seconds rather than searching DMV websites. Triggers include "what's the doc fee in X", "NJ sales tax rate", "Texas DMV fees", "州的税率", "doc fee cap", "trade-in…

DaizeDong/buy-me-a-car · 103 tokens

corporate-docs

La parte densa. Y la que más se arma mal, porque se mezclan tres cosas distintas.

Danielmc09/jurisdiction-latam · 75 tokens

jurisdiction-research

Armar el mapa legal de un país con fuentes verificables.

Danielmc09/jurisdiction-latam · 60 tokens

compliance-calendar

El kit resuelve el día 1. Este skill resuelve el día 400.

Danielmc09/jurisdiction-latam · 71 tokens