aws-sdk-knowledge-patch
AWS SDK changes since training cutoff — S3 default checksums, S3 Vectors, Lambda Durable Functions, Bedrock AgentCore, CDK Mixins, SigV4a, SDK lifecycle. Load before working with AWS SDKs.
What this skill does
# AWS SDK Knowledge Patch
Covers AWS SDK changes from 2024-12 through 2026-03. Applies to JS v3 ~3.600+, boto3 ~1.34+, aws-sdk-go-v2 ~1.26+, CDK v2 ~2.140+.
## Index
| Topic | Reference | Key features |
|---|---|---|
| S3 checksums & vectors | [references/s3-checksums-and-vectors.md](references/s3-checksums-and-vectors.md) | Default CRC checksums, CRC64NVME, full-object multipart checksums, S3 Vectors service |
| Lambda Durable Functions | [references/lambda-durable-functions.md](references/lambda-durable-functions.md) | Checkpoint-and-replay, `@durable_step`, wait/callback, idempotency |
| Bedrock AgentCore | [references/bedrock-agentcore.md](references/bedrock-agentcore.md) | Runtime deployment, memory client, identity/OAuth2, CLI |
| CDK & SDK config | [references/cdk-and-sdk-config.md](references/cdk-and-sdk-config.md) | CDK Mixins `.with()`, SigV4a auth scheme preference, STS regional default, SDK lifecycle |
---
## S3 Default Checksums (Dec 2024) — Breaking Change
SDKs now compute CRC checksums on **every upload** by default. S3 also computes server-side checksums on all uploads.
New algorithm: **CRC64NVME**. Default algorithms vary by SDK:
| SDK | Default algorithm |
|---|---|
| CLI, C++, Rust | CRC64NVME |
| Go, Java, JS, Kotlin, .NET, PHP, Python, Ruby | CRC32 |
Config settings:
| Setting | Env var | Default |
|---|---|---|
| `request_checksum_calculation` | `AWS_REQUEST_CHECKSUM_CALCULATION` | `WHEN_SUPPORTED` |
| `response_checksum_validation` | `AWS_RESPONSE_CHECKSUM_VALIDATION` | `WHEN_SUPPORTED` |
Multipart uploads now support `ChecksumType='FULL_OBJECT'` for a single whole-object checksum instead of per-part composites.
See [references/s3-checksums-and-vectors.md](references/s3-checksums-and-vectors.md) for full examples.
## S3 Vectors (GA Dec 2025)
New S3 service for storing/querying vector embeddings. Separate from regular S3 buckets.
```bash
aws s3vectors create-vector-bucket --vector-bucket-name my-vectors
aws s3vectors create-index \
--vector-bucket-name my-vectors \
--index-name my-index \
--data-type float32 --dimension 1024 \
--distance-metric cosine \
--metadata-configuration "nonFilterableMetadataKeys=text_chunk"
```
Supports cosine and euclidean distance. Up to 2B vectors/index, 50 metadata keys/vector (10 non-filterable). Integrates with Bedrock Knowledge Bases and OpenSearch.
See [references/s3-checksums-and-vectors.md](references/s3-checksums-and-vectors.md) for query examples.
## Lambda Durable Functions (Dec 2025)
Checkpoint-and-replay execution for Lambda. **Must be enabled at function creation time** (cannot be added later). Open-source SDK.
```python
from aws_durable_execution_sdk_python import (
DurableContext, StepContext, durable_execution, durable_step,
)
from aws_durable_execution_sdk_python.config import Duration, StepConfig, CallbackConfig
@durable_step
def my_step(step_context: StepContext, data: str) -> dict:
return {"result": data}
@durable_execution
def lambda_handler(event: dict, context: DurableContext) -> dict:
result = context.step(my_step(event["data"]))
context.wait(Duration.from_minutes(5)) # suspends without compute charges
return result
```
Supports JS/TS (Node.js 22/24) and Python (3.13/3.14). See [references/lambda-durable-functions.md](references/lambda-durable-functions.md) for callbacks and retry strategies.
## Bedrock AgentCore (GA Oct 2025)
Enterprise services for deploying AI agents at scale. Framework-agnostic (Strands, LangGraph, etc.).
```python
from bedrock_agentcore.runtime import BedrockAgentCoreApp
app = BedrockAgentCoreApp()
@app.entrypoint
def invoke(payload):
return agent(payload.get("prompt"))
```
Install: `pip install bedrock-agentcore bedrock-agentcore-starter-toolkit`
CLI: `agentcore configure`, `agentcore launch [--local]`, `agentcore invoke`.
See [references/bedrock-agentcore.md](references/bedrock-agentcore.md) for memory client, identity, and full API.
## CDK Mixins (GA Mar 2026)
Composable, reusable abstractions for any CDK construct via `.with()` syntax:
```typescript
const bucket = new s3.CfnBucket(this, 'Bucket').with(
AutoDelete(),
Encryption(),
Versioning(),
BlockPublicAccess(),
);
// Apply compliance policies across a scope:
Mixins.of(this).add(/* resource type or path pattern filtering */);
```
See [references/cdk-and-sdk-config.md](references/cdk-and-sdk-config.md) for details.
## Auth Scheme Preference (SigV4a)
New config for cross-region signing (e.g., multi-region access points):
```ini
# ~/.aws/config
[default]
auth_scheme_preference = sigv4a, sigv4
sigv4a_signing_region_set = us-east-1, eu-west-1
```
Env vars: `AWS_AUTH_SCHEME_PREFERENCE`, `AWS_SIGV4A_SIGNING_REGION_SET`.
## SDK Version Lifecycle
| SDK | Maintenance | End of Support | Migrate To |
|---|---|---|---|
| JS v2 | Sep 2024 | Sep 2025 | JS v3 |
| Go v1 | Jul 2024 | Jul 2025 | Go v2 |
| .NET v3 | Mar 2026 | Jun 2026 | .NET v4 (GA Apr 2025) |
**JS v3 Node.js**: Follows Node.js release + 8 months. Node.js 18 dropped Jan 2026 (requires 20+). Node.js 20 drops Jan 2027.
**Python (boto3)**: 6-month grace after PSF EOL. Python 3.9 drops Apr 2026, 3.10 drops Apr 2027.
## SDK Default Changes (July 2025)
- **STS endpoint**: Python, PHP, C++, .NET, PowerShell switch to `regional` default (was global)
- **Retry strategy**: Switch to `standard` (token-bucket throttling) delayed — AWS found concerns, will reschedule
## Reference Files
| File | Contents |
|---|---|
| [s3-checksums-and-vectors.md](references/s3-checksums-and-vectors.md) | Default checksums, CRC64NVME, multipart full-object checksums, S3 Vectors API |
| [lambda-durable-functions.md](references/lambda-durable-functions.md) | Durable execution SDK, steps, wait/callback, retry strategies |
| [bedrock-agentcore.md](references/bedrock-agentcore.md) | Runtime deployment, memory client, identity, CLI commands |
| [cdk-and-sdk-config.md](references/cdk-and-sdk-config.md) | CDK Mixins, SigV4a, STS regional default, SDK lifecycle dates |
Related in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.