bedrock-model-lookuplisted
Install: claude install-skill tstapler/dotfiles
# Bedrock Model Lookup
Discover new Claude models available in AWS Bedrock and add them to the claude-proxy configuration.
## When to Use This Skill
Use this skill when:
- A new Claude model is released (e.g., Claude Opus 4.7, Claude Sonnet 4.7)
- Claude Code returns "Invalid model name" errors from Bedrock
- You need to verify the correct Bedrock model ID for a Claude model
- You want to update the claude-proxy model mapping with new models
> For selecting the right Claude model for a task based on capability and cost, apply the `meta-model-selection` skill.
## Discovery Methods
### Method 1: AWS CLI (Fastest)
List all available Anthropic models in your region:
```bash
aws bedrock list-foundation-models \
--region=us-west-2 \
--by-provider anthropic \
--query "modelSummaries[*].[modelId, modelName]" \
--output table
```
Filter for specific models:
```bash
# Find all Claude 4.6 models
aws bedrock list-foundation-models \
--region=us-west-2 \
--by-provider anthropic \
--query "modelSummaries[?contains(modelId, '4-6')].[modelId, modelName]" \
--output table
# Find latest models (check last month)
aws bedrock list-foundation-models \
--region=us-west-2 \
--by-provider anthropic \
--query "modelSummaries[?created >= '2026-02-01'].[modelId, modelName, created]" \
--output table
```
Get detailed model information:
```bash
aws bedrock get-foundation-model \
--region=us-west-2 \
--model-identifier "anthropic.claude-sonnet-4-6" \
--query "{Mo