aws-sdk-knowledge-patch

Provides AWS SDK compatibility guidance and patches for breaking changes across JS, Python, Go, CDK.

22|Updated Jan 22, 2026
One-click install
npx skills add https://github.com/Nevaberry/nevaberry-plugins --skill aws-sdk-knowledge-patch
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: aws-sdk-knowledge-patch
Source: https://github.com/Nevaberry/nevaberry-plugins/tree/main/plugins/aws-sdk-knowledge-patch/skills/aws-sdk-knowledge-patch
Command: npx skills add https://github.com/Nevaberry/nevaberry-plugins --skill aws-sdk-knowledge-patch

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

Provides concise, curated updates and compatibility guidance to prevent broken or outdated AWS SDK usage caused by changes after model training cutoffs, reducing runtime errors and security misconfigurations.

Core Features & Use Cases

  • S3 checksum and multipart behavior: Explains SDK defaults, CRC64NVME vs CRC32, and full-object multipart checksums.
  • New services and integrations: Covers S3 Vectors usage, Bedrock AgentCore deployment patterns, and Lambda Durable Functions checkpoint-and-replay.
  • Configuration & migration guidance: Describes SigV4a auth preferences, STS regional defaults, CDK mixins, and SDK lifecycle/migration timelines.
  • Use Case: Audit a repo to update S3 upload code to compute the correct checksums, migrate deprecated SDK calls to current APIs, and enable durable Lambda patterns where applicable.

Quick Start

Load the aws-sdk-knowledge-patch and apply its recommendations to update S3 checksum handling, Lambda durable execution patterns, and CDK mixins in my project.

Frequently Asked Questions about aws-sdk-knowledge-patch

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

FAQPage Schema
How do I fix S3 checksum errors when uploading multipart files with the AWS SDK?

S3 checksum errors during multipart uploads usually stem from outdated SDK defaults. You need to update your S3 upload code to compute the correct checksums, switching from CRC32 to CRC64NVME for full-object multipart checksum validation.

What are Lambda Durable Functions checkpoint-and-replay patterns in the AWS SDK?

Lambda Durable Functions checkpoint-and-replay patterns enable durable execution for long-running workflows. They allow your function to save its execution state and resume from the last checkpoint upon failure, ensuring reliable processing.

How do I configure SigV4a authentication for AWS SDK regional endpoints?

Configuring SigV4a authentication requires updating your SDK auth preferences to support regional endpoints. You must update your STS regional defaults and auth configuration to ensure requests are correctly signed using the SigV4a protocol.

Does the AWS CDK support mixins for current SDK lifecycle migration?

Yes, the AWS CDK supports mixins to assist with SDK lifecycle migration. CDK mixins provide a structured way to apply updated configurations and migrate deprecated SDK calls to current APIs without rewriting your entire infrastructure stack.

What is the correct way to integrate S3 Vectors using boto3 or the JavaScript v3 SDK?

Integrating S3 Vectors involves using the updated boto3 or JavaScript v3 SDK toolchains to manage vector data within S3. You must ensure your SDK version is current and apply the correct compatibility guidance to avoid runtime errors during integration.

Why are my deprecated AWS SDK calls causing runtime errors after migration?

Deprecated AWS SDK calls cause runtime errors because breaking changes were introduced after your model's training cutoff. You must apply curated knowledge patches and migrate your codebase to the current API versions to resolve these security misconfigurations and errors.