$npx -y skills add awslabs/agent-plugins --skill sdk-getting-startedValidates the user's environment for SageMaker AI operations — checks SDK version, AWS region, and execution role. Use when the user says "set up", "getting started", "check my environment", "configure SDK", or as the first step in any plan involving SageMaker/Bedrock training, e
| 1 | # SDK Getting Started |
| 2 | |
| 3 | Preflight checks to verify the user's environment can run SageMaker AI operations. The agent runs these checks directly (no code generation) and stores results in conversation context for downstream skills. |
| 4 | |
| 5 | ## Principles |
| 6 | |
| 7 | 1. **Don't ask for what you can look up.** Resolve region and role programmatically before asking the user. |
| 8 | |
| 9 | ## Workflow |
| 10 | |
| 11 | Read and follow `references/sagemaker-python-sdk-setup.md`. |
| 12 | |
| 13 | ## References |
| 14 | |
| 15 | - `references/sagemaker-python-sdk-setup.md` - SageMaker Python SDK version, region, and execution role checks |
| 16 | - `references/execution-role-setup.md` — Execution role resolution and validation |