Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add odere-pro/claude-aws-architect --skill aws-bedrock-aigit clone --depth 1 https://github.com/odere-pro/claude-aws-architectWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/odere-pro/claude-aws-architect/aws-bedrock-ai)<a href="https://agentmods.dev/skills/odere-pro/claude-aws-architect/aws-bedrock-ai"><img src="https://agentmods.dev/badge/skills/odere-pro/claude-aws-architect/aws-bedrock-ai/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/odere-pro/claude-aws-architect/aws-bedrock-ai"><img src="https://agentmods.dev/badge/skills/odere-pro/claude-aws-architect/aws-bedrock-ai.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00065 | $0.02528 |
| Opus 5 | $0.00032 | $0.01264 |
| Sonnet 5 | $0.00013 | $0.00506 |
| Haiku 4.5 | $0.00006 | $0.00253 |
Grade A, and why
aws-bedrock-ai scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 74 lines — stays where its author put it; the contents beside it link to each section on GitHub.
When to Use
Apply this skill any time an agent must reason about, design for, or implement against Amazon Bedrock, AWS AI managed services (SageMaker, Comprehend, Textract, Rekognition, Transcribe, Translate, Polly, Kendra, Amazon Q), or the licensing and data-privacy guarantees that surround foundation models on AWS. Use it whenever the prompt names a Bedrock primitive (foundation model, knowledge base, agent, guardrail, prompt, flow), an inference mode (on-demand, provisioned throughput, batch, cross-region), a fine-tuning surface, or a regulated AI deployment concern.
Trigger conditions:
- The agent must pick a foundation model for a stated workload (latency, context, multimodality, language, cost band).
- The agent must wire a Knowledge Base for Amazon Bedrock (RAG) and decide on the vector store, chunking strategy, and retrieval policy.
- The agent must design an Agents for Bedrock (or AgentCore) flow and define action-group OpenAPI / Lambda contracts.
- The agent must wire Guardrails — content filters, denied topics, sensitive-info filters, contextual-grounding checks — and bind them by ID at invoke time.
- The agent must choose between on-demand, provisioned throughput, batch inference, latency-optimised inference, or cross-region inference profiles, with cost and quota implications.
- The agent must apply licensing or AUP constraints (Anthropic, Meta Llama, Mistral, Cohere, Amazon Nova / Titan, AI21, Stability) before committing a model choice.
- The agent must satisfy a regulated deployment (EU/UK/CA data residency, KMS-CMK at rest, VPC-endpoint-only at transit, no model-training opt-in).
Procedure
- Classify the AI workload. Pick one of: chat / RAG / agent / batch text / classification / extraction / image / speech / translation / fine-tuned. The category drives model family selection (
references/foundation-models.md) and the inference mode (references/inference-modes.md). - Pick the foundation model and pin the version. Use the canonical Bedrock model identifier (
<provider>.<family>-<size>-<variant>:<version>, e.g.anthropic.claude-sonnet-4-5-20251110-v1:0). Floating aliases without a version suffix are forbidden in production. Confirm GA in the target region(s) viakb:get_regional_availabilityandkb:search_documentationfor "Bedrock model availability". - Confirm model access. Bedrock requires explicit, per-account, per-region model-access opt-in for many providers (Anthropic, Meta, Mistral, Cohere, AI21, Stability, some Amazon models). Document in the design that a console (or
bedrock:PutModelAccessAgreementequivalent) acceptance step precedes any IaC deployment. - Apply licensing and AUP. Each provider carries its own EULA layered on top of the AWS Customer Agreement. Check
references/licensing.mdfor the per-provider AUP highlights (Anthropic Acceptable Use Policy, Meta Llama Community License + AUP, Mistral commercial terms, Cohere usage policy, Amazon Nova / Titan custom terms, AI21 commercial terms, Stability commercial / community split). Surface any ambiguity as an Open Question in the design rather than picking silently. - Pick the inference mode and quotas. Apply
references/inference-modes.md: on-demand for variable, low-volume; cross-region inference profile for capacity smoothing across regions; provisioned throughput for predictable high-RPM with reserved tokens; batch inference for asynchronous bulk jobs (50% pricing discount on supported families); latency-optimised inference for sub-second TTFT on supported models. Cost and quota implications are non-trivial and must land in the cost ROM. - Wire data-privacy and security. Bedrock does not use customer prompt or completion data to train base foundation models. Always-on guarantee, but the design must still enforce: KMS-CMK encryption for Knowledge Base data sources, S3 buckets, and OpenSearch Serverless collections; VPC endpoints (
com.amazonaws.<region>.bedrock-runtime,bedrock,bedrock-agent-runtime,bedrock-agent) when the application is VPC-only; no log-group containing prompt bodies without a redaction strategy. Applyaws-waf-security-skillfor the broader security posture. - Wire IAM least privilege. A Bedrock invocation principal needs only
bedrock:InvokeModel(orInvokeModelWithResponseStream) plus the resource ARN of the specific model. Knowledge-base callers also needbedrock:Retrieve/RetrieveAndGenerateandbedrock-agent-runtime:*for agents. Guard against confused-deputy withaws:SourceArn/aws:SourceAccounton cross-service trust policies. Applyreferences/iam-patterns.md. - Wire RAG correctly. Knowledge Bases for Amazon Bedrock supports OpenSearch Serverless (default), Aurora PostgreSQL with pgvector, Pinecone, Redis Enterprise Cloud, and MongoDB Atlas. Pick per
references/knowledge-bases.md: OSS for default, Aurora pgvector for VPC-only with existing RDS posture, third-party for existing footprint. Chunking strategy (default, fixed, semantic, hierarchical) and embedding model (amazon.titan-embed-text-v2:0,cohere.embed-english-v3,cohere.embed-multilingual-v3) are explicit decisions in the design. - Wire Guardrails by ID. A Guardrail is configured separately, versioned, and bound at invoke time via
guardrailIdentifier+guardrailVersion. Content filters (hate, insults, sexual, violence, misconduct, prompt-attack), denied topics, sensitive-info filters (PII regex + denylist), word filters, and contextual-grounding checks compose. The component contract must name the bound guardrail. - Cost ROM via
cost:. Bedrock prices are per 1k input tokens and per 1k output tokens; provisioned throughput is per model unit per hour (1 mu = stated tokens/min); batch inference is roughly 50% off on-demand for supported models; cross-region inference profiles add inter-region inference but no extra per-token premium. Knowledge Base storage costs apply on the underlying vector store.
What ships with it
6 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 11d ago First seen · 74 lines · 65 tokens per session scan A 14aa4e480b23
aws-bedrock-ai is a skill published in the GitHub repository odere-pro/claude-aws-architect (1 stars, last pushed 1mo ago), licensed MIT. It adds 65 tokens to every session and 2,528 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
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.
rag-observability-evals
Monitor and evaluate RAG systems with retrieval quality metrics, groundedness checks, hallucination detection, and continuous regression testing.
gpu-kubernetes-operations
Operate GPU-backed Kubernetes clusters for AI inference and training with scheduling, autoscaling, node health, MIG partitioning, and cost controls.
google-ai-ninja
Master orchestrator for 25+ Google AI/ML agent skills from official Google repositories. Use when working with Gemini API, Agent Platform, Genkit, RAG, model deployment, fine-tuning, inference, or building AI agents on Google Cloud. Routes to the optimal specialized skill based on context. Triggers: Gemini, Agent…
model-serving-kubernetes
Deploy ML models on Kubernetes with KServe (formerly KFServing) and NVIDIA Triton Inference Server. Includes canary deployments, autoscaling, model versioning, A/B testing, and GPU resource management for production model serving.
vector-database-ops
Deploy, manage, and optimize vector databases for AI applications. Covers Qdrant, Weaviate, pgvector, and Pinecone — collection management, indexing strategies, backup, and performance tuning for production RAG and semantic search workloads.