aws-essentials

aws-essentials is a skill for Claude Code from medy-gribkov/arcana. It costs 36 tokens per session (4,609 once invoked), scanned A, original, Apache-2.0.

A guide to common AWS cloud services, including Lambda, S3, RDS, IAM, SQS, SNS, DynamoDB, and CloudFront. It explains patterns for running code, storing data, controlling access, sending messages, and delivering content.

In plain words
What is it for?
Use it to design Lambda handlers, store files in S3, connect to databases, write IAM permissions, send asynchronous messages, model DynamoDB data, configure CloudFront caching, and control cloud spending.
Why use it?
Cloud applications can become slow, insecure, or expensive when services are configured carelessly. This helps avoid issues such as repeated setup work, hardcoded credentials, and unnecessary cost.

Skill for Claude Code

Written for Claude Code: argument-hint in frontmatter. Also seen: positional $N argument.

Good fit Use it to design Lambda handlers, store files in S3, connect to databases, write IAM permissions, send asynchronous messages, model DynamoDB data, configure CloudFront caching, and control cloud spending.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/medy-gribkov/arcana/aws-essentials
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.

Any agent
npx skills add medy-gribkov/arcana --skill aws-essentials
Clone the repo
git clone --depth 1 https://github.com/medy-gribkov/arcana

Made for: Claude Code.

Its marketplace also offers this one on its own, as the plugin aws-essentials/plugin install aws-essentials after adding the marketplace above.

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 aws-essentials

README.md
[![agentmods](https://agentmods.dev/badge/skills/medy-gribkov/arcana/aws-essentials/github.svg)](https://agentmods.dev/skills/medy-gribkov/arcana/aws-essentials)
Your own site
<a href="https://agentmods.dev/skills/medy-gribkov/arcana/aws-essentials"><img src="https://agentmods.dev/badge/skills/medy-gribkov/arcana/aws-essentials/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for aws-essentials

Your own site · 80×15
<a href="https://agentmods.dev/skills/medy-gribkov/arcana/aws-essentials"><img src="https://agentmods.dev/badge/skills/medy-gribkov/arcana/aws-essentials.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 36 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,609 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00036 $0.04609
Opus 5 $0.00018 $0.02305
Sonnet 5 $0.00007 $0.00922
Haiku 4.5 $0.00004 $0.00461

Measured 8d ago against content hash 4d6d32523fd7, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

aws-essentials 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 8d 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.

skills/aws-essentials/SKILL.md · 638 lines

How it starts

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

AWS Essentials

Production-ready patterns for AWS core services: Lambda handlers, S3 operations, RDS connection management, IAM policies, async messaging, DynamoDB design, CloudFront caching, and cost optimization.

Lambda Handler Patterns

BAD: Unoptimized cold starts, no reuse

// TypeScript - AWS SDK v3
import { DynamoDBClient, PutItemCommand } from '@aws-sdk/client-dynamodb';

export const handler = async (event: any) => {
  const client = new DynamoDBClient({ region: 'us-east-1' }); // ❌ Created every invocation
  const apiKey = 'hardcoded-key-abc123'; // ❌ Hardcoded credentials

  await client.send(new PutItemCommand({
    TableName: 'users',
    Item: { id: { S: event.id }, data: { S: JSON.stringify(event) } }
  }));
};

GOOD: Warm reuse, environment config, structured logging

import { DynamoDBClient, PutItemCommand } from '@aws-sdk/client-dynamodb';
import { SecretsManagerClient, GetSecretValueCommand } from '@aws-sdk/client-secrets-manager';

// ✅ Instantiate outside handler for reuse across warm invocations
const dynamoClient = new DynamoDBClient({ region: process.env.AWS_REGION });
const secretsClient = new SecretsManagerClient({ region: process.env.AWS_REGION });

let cachedSecret: string | null = null;

async function getSecret(): Promise<string> {
  if (cachedSecret) return cachedSecret;

  const response = await secretsClient.send(
    new GetSecretValueCommand({ SecretId: process.env.SECRET_ARN })
  );
  cachedSecret = response.SecretString!;
  return cachedSecret;
}

export const handler = async (event: { id: string; data: Record<string, any> }) => {
  const startTime = Date.now();

  try {
    const secret = await getSecret();

    await dynamoClient.send(new PutItemCommand({
      TableName: process.env.TABLE_NAME!,
      Item: {
        id: { S: event.id },
        data: { S: JSON.stringify(event.data) },
        timestamp: { N: Date.now().toString() }
      }
    }));

    console.log(JSON.stringify({
      level: 'info',
      message: 'Item stored',
      id: event.id,
      duration: Date.now() - startTime
    }));

    return { statusCode: 200, body: JSON.stringify({ success: true }) };
  } catch (error) {
    console.error(JSON.stringify({
      level: 'error',
      message: 'Failed to store item',
      error: error instanceof Error ? error.message : String(error),
      id: event.id
    }));
    throw error;
  }
};

Read the full file on GitHub · 638 lines

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. 8d ago First seen · 638 lines · 36 tokens per session scan A 4d6d32523fd7

Subscribe to this mod's changes

aws-essentials is a skill published in the GitHub repository medy-gribkov/arcana (1 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 36 tokens to every session and 4,609 once invoked, about $0.0002 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.