rds

rds is a skill for Claude Code from itsmostafa/aws-agent-skills. It costs 31 tokens per session (2,557 once invoked), scanned A, original, MIT.

Guidance for using Amazon RDS, an AWS service that runs managed relational databases such as PostgreSQL, MySQL, and SQL Server. A relational database stores data in linked tables, while RDS handles tasks such as provisioning, patching, backups, and failover.

In plain words
What is it for?
Use it when creating databases, choosing instance and storage settings, configuring backups, setting up standby databases or read replicas, troubleshooting connectivity, or optimizing performance.
Why use it?
It helps you run a database without manually managing all of the underlying server maintenance. It also covers ways to improve availability, handle more read traffic, diagnose connections, and tune performance.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the aws-agent-skills plugin — 18 skills shipped together

Good fit Use it when creating databases, choosing instance and storage settings, configuring backups, setting up standby databases or read replicas, troubleshooting connectivity, or optimizing performance.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/itsmostafa/aws-agent-skills/rds
About the project

AWS Agent Skills is a collection of local instructions that help coding agents reason about AWS cloud services and engineering tasks. It supports agents working with areas such as identity, compute, storage, serverless, databases, networking, and security. The catalogue contains 18 service-focused skills and one plugin for using these capabilities with coding agents.

itsmostafa/aws-agent-skills · 1,150 stars · on GitHub

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 itsmostafa/aws-agent-skills --skill rds
Clone the repo
git clone --depth 1 https://github.com/itsmostafa/aws-agent-skills

Made for: Claude Code.

Or install aws-agent-skills, the plugin that ships this one along with the rest of its 18 skills.

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 rds

README.md
[![agentmods](https://agentmods.dev/badge/skills/itsmostafa/aws-agent-skills/rds.svg)](https://agentmods.dev/skills/itsmostafa/aws-agent-skills/rds)
Your own site
<a href="https://agentmods.dev/skills/itsmostafa/aws-agent-skills/rds"><img src="https://agentmods.dev/badge/skills/itsmostafa/aws-agent-skills/rds.svg" alt="Measured on agentmods" height="20"></a>
Per session 31 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,557 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00031 $0.02557
Opus 5 $0.00015 $0.01278
Sonnet 5 $0.00006 $0.00511
Haiku 4.5 $0.00003 $0.00256

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

Security

Grade A, and why

rds 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/rds/SKILL.md · 371 lines

How it starts

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

AWS RDS

Amazon Relational Database Service (RDS) provides managed relational databases including MySQL, PostgreSQL, MariaDB, Oracle, SQL Server, and Aurora. RDS handles provisioning, patching, backups, and failover.

Table of Contents

Core Concepts

DB Instance Classes

Category Example Use Case
Standard db.m6g.large General purpose
Memory Optimized db.r6g.large High memory workloads
Burstable db.t3.medium Variable workloads, dev/test

Storage Types

Type IOPS Use Case
gp3 3,000-16,000 Most workloads
io1/io2 Up to 256,000 High-performance OLTP
magnetic N/A Legacy, avoid

Multi-AZ Deployments

  • Multi-AZ Instance: Synchronous standby in different AZ
  • Multi-AZ Cluster: One writer, two reader instances (Aurora-like)

Read Replicas

Asynchronous copies for read scaling. Can be cross-region.

Common Patterns

Create a PostgreSQL Instance

AWS CLI:

# Create DB subnet group
aws rds create-db-subnet-group \
  --db-subnet-group-name my-db-subnet-group \
  --db-subnet-group-description "Private subnets for RDS" \
  --subnet-ids subnet-12345678 subnet-87654321

# Create security group (allow PostgreSQL from app)
aws ec2 create-security-group \
  --group-name rds-postgres-sg \
  --description "RDS PostgreSQL access" \
  --vpc-id vpc-12345678

aws ec2 authorize-security-group-ingress \
  --group-id sg-rds12345 \
  --protocol tcp \
  --port 5432 \
  --source-group sg-app12345

# Create RDS instance
aws rds create-db-instance \
  --db-instance-identifier my-postgres \
  --db-instance-class db.t3.medium \
  --engine postgres \
  --engine-version 16.1 \
  --master-username admin \
  --master-user-password 'SecurePassword123!' \
  --allocated-storage 100 \
  --storage-type gp3 \
  --db-subnet-group-name my-db-subnet-group \
  --vpc-security-group-ids sg-rds12345 \
  --multi-az \
  --backup-retention-period 7 \
  --storage-encrypted \
  --no-publicly-accessible

Read the full file on GitHub · 371 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. 8d ago First seen · 371 lines · 31 tokens per session scan A 3eb29bfa9686

Subscribe to this mod's changes

rds is a skill published in the GitHub repository itsmostafa/aws-agent-skills (1,150 stars, last pushed 7d ago), licensed MIT. It adds 31 tokens to every session and 2,557 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-30.

Related

Other skills, from other repositories

aws-essentials

Use when standing up the core AWS surface a small product needs: hardening a fresh account, a private S3 bucket, encrypted RDS Postgres, ECS Fargate vs EC2, CloudFront + OAC, or scoping an IAM policy to least privilege. NOT the CI pipeline that ships the container (that is deployment), NOT app-code access-control…

ericrisco/rsc-harness · 89 tokens

aws-rds

Provision and manage RDS databases. Configure backups, replication, and security. Use when deploying managed relational databases on AWS.

BagelHole/DevOps-Security-Agent-Skills · 28 tokens

gcp-cloud-sql

Provision Cloud SQL and Spanner databases. Configure high availability, backups, and security. Use when deploying managed databases on GCP.

BagelHole/DevOps-Security-Agent-Skills · 32 tokens

azure-sql

Provision Azure SQL Database and Cosmos DB. Configure security, backups, and replication. Use when deploying managed databases on Azure.

BagelHole/DevOps-Security-Agent-Skills · 28 tokens

exasol-setup-personal

Guided setup of Exasol Personal — a free Exasol database running locally on a Mac or deployed to your own AWS, Azure, Exoscale, or STACKIT account. Covers picking the right deployment flavor, the exasol launcher CLI (exasol install , exasol connect, exasol info, exasol deployments list, exasol destroy), the local…

exasol-labs/exasol-agent-skills · 121 tokens

exasol-cloud-storage-extension

Use Exasol Cloud Storage Extension workflows for moving structured object-storage files through extension UDFs. Covers setup prerequisites, the fixed CLOUDSTORAGEEXTENSION.IMPORTPATH and CLOUDSTORAGEEXTENSION.EXPORTPATH entrypoints used with FROM SCRIPT and INTO SCRIPT, Parquet, Avro, ORC, and Delta files on S3…

exasol-labs/exasol-agent-skills · 122 tokens