aws

Provide production-ready AWS patterns for authentication, resource access, and error handling.

186|15|Updated Apr 2, 2026
One-click install
npx skills add https://github.com/kid-sid/claude-spellbook --skill aws-kid-sid
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: aws
Source: https://github.com/kid-sid/claude-spellbook/tree/main/skills/aws
Command: npx skills add https://github.com/kid-sid/claude-spellbook --skill aws-kid-sid

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

AWS development often requires correct credential handling, secure access to S3, DynamoDB patterns, and reliable Lambda/SQS integration. This skill centralizes production-ready patterns to accelerate safe, scalable AWS code.

Core Features & Use Cases

  • Credential management: follows a safe credential chain and environment-aware configuration.
  • S3 operations: upload, download, presigned URLs, and multipart handling.
  • DynamoDB patterns: CRUD, batch operations, and access patterns designed for scale.
  • Lambda & SQS: handler scaffolds and event source processing patterns.
  • Secrets & error handling: integration with Secrets Manager and robust botocore retry strategies.

Quick Start

Install the AWS skill and start writing AWS-integrated code by following the included examples for S3, DynamoDB, Lambda, and credentials.

Frequently Asked Questions about aws

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I handle boto3 credentials safely in production AWS applications?

Safe boto3 credentials in production require using a credential chain and environment-aware configuration to manage access securely. This skill provides these production-ready patterns to ensure reliable authentication without hardcoding keys.

What's the best way to implement boto3 retry strategies for SQS and Lambda?

The best way to implement boto3 retry strategies is using robust botocore retry configurations for SQS processing and Lambda handlers. This skill includes scaffolds for event source processing with proper error handling.

How do I write scalable DynamoDB access patterns using boto3?

Scalable DynamoDB access patterns using boto3 involve specific CRUD and batch operation designs that prevent bottlenecks. This skill provides these access patterns designed for scale to accelerate safe database code.

Does this skill provide S3 multipart upload and presigned URL patterns?

Yes, this skill provides S3 operations including multipart upload handling and presigned URL generation. These patterns ensure secure and reliable object storage access within your AWS-integrated applications.

Can I use AWS SDK v3 patterns for Secrets Manager integration?

Yes, you can use AWS SDK v3 patterns for Secrets Manager integration to securely retrieve credentials. This skill includes robust integration examples that pair with safe credential chains and botocore retry strategies.

Why do my Lambda handlers fail with IAM permission errors in production?

Lambda handlers fail with IAM permission errors when not using least-privilege IAM policies. This skill enforces least-privilege policies and provides reliable handler scaffolds to prevent access issues in production environments.