Agent skill · DevOps & Cloud

bedrock

AWS Bedrock foundation models for generative AI. Use when invoking foundation models, building AI applications, creating embeddings, configuring model access, or implementing RAG patterns.

itsmostafagithub.com/itsmostafaGitHub ↗
claude-codecodexMIT
Install
npx skills add itsmostafa/aws-agent-skills --skill bedrock --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 11 KB
Bundled scripts: none
Path: skills/bedrock/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 1,139
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# AWS Bedrock Amazon Bedrock provides access to foundation models (FMs) from AI companies through a unified API. Build generative AI applications with text generation, embeddings, and image generation capabilities. ## Table of Contents - [Core Concepts](#core-concepts) - [Common Patterns](#common-patterns) - [CLI Reference](#cli-reference) - [Best Practices](#best-practices) - [Troubleshooting](#troubleshooting) - [References](#references) ## Core Concepts ### Foundation Models Pre-trained models available through Bedrock: - **Claude** (Anthropic): Text generation, analysis, coding - **Titan** (Amazon): Text, embeddings, image generation - **Llama** (Meta): Open-weight text generation - **Mistral**: Efficient text generation - **Stable Diffusion** (Stability AI): Image generation ### Model Access Models must be enabled in your account before use: - Request access in Bedrock console - Some models require acceptance of EULAs - Access is region-specific ### Inference Types | Type | Use Case | Pricing | |------|----------|---------| | **On-Demand** | Variable workloads | Per token | | **Provisioned Throughput** | Consistent high-volume | Hourly commitment | | **Batch Inference** | Asyn

What's inside
Steps it walks through
  1. Table of Contents
  2. Core Concepts
  3. Foundation Models
  4. Model Access
  5. Inference Types
  6. Common Patterns
  7. Invoke Model (Text Generation)
  8. Streaming Response
  9. Generate Embeddings
  10. Conversation with History
  11. List Available Models
  12. Request Model Access
  13. CLI Reference
  14. Bedrock (Control Plane)
Ships with 1 file
  • model-invocation.md
Commands it runs
Invoke Claude
aws bedrock-runtime invoke-model \
response.json
cat response.json | jq -r '.content[0].text'
List all foundation models
aws bedrock list-foundation-models \
Filter by provider
Get model details
aws bedrock get-foundation-model \
List model access status
More from aws-agent-skills
All skills →
About this skill
What does the bedrock skill do?

AWS Bedrock foundation models for generative AI. Use when invoking foundation models, building AI applications, creating embeddings, configuring model access, or implementing RAG patterns.

How do I install it?

Run `npx skills add itsmostafa/aws-agent-skills --skill bedrock --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From itsmostafa/aws-agent-skills, a repository with 1,139 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going