aws-agentcore
Build AI agents with AWS Bedrock AgentCore. Use when developing agents on AWS infrastructure, creating tool-use patterns, implementing agent orchestration, or integrating with Bedrock models. Triggers on keywords like AgentCore, Bedrock Agent, AWS agent, Lambda tools.
npx skills add majiayu000/claude-skill-registry --skill aws-agentcore --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# AWS Bedrock AgentCore Build production-grade AI agents on AWS infrastructure. ## Quick Start ```python import boto3 from agentcore import Agent, Tool # Initialize AgentCore client client = boto3.client('bedrock-agent-runtime') # Define a tool @Tool(name="search_database", description="Search the product database") def search_database(query: str, limit: int = 10) -> dict: # Tool implementation return {"results": [...]} # Create agent agent = Agent( model_id="anthropic.claude-3-sonnet", tools=[search_database], instructions="You are a helpful product search assistant." ) # Invoke agent response = agent.invoke("Find laptops under $1000") ``` ## AgentCore Components AgentCore provides these primitives: | Component | Purpose | |-----------|---------| | **Runtime** | Serverless agent execution (framework-agnostic) | | **Gateway** | Convert APIs/Lambda to MCP-compatible tools | | **Memory** | Multi-strategy memory (semantic, user preference) | | **Identity** | Auth with Cognito, Okta, Google, EntraID | | **Tools** | Code Interpreter, Browser Tool | | **Observability** | Deep analysis and tracing | ## Lambda Tool Integration ```python # Lambda function as tool import json def lambda_hand
- Quick Start
- AgentCore Components
- Lambda Tool Integration
- Agent Orchestration
- Guardrails Integration
- AgentCore Gateway
- AgentCore Memory
- Official Use Cases Repository
- Available Use Cases (02-use-cases/)
- Quick Start with Use Cases
- Resources
git clone https://github.com/awslabs/amazon-bedrock-agentcore-samples.git cd amazon-bedrock-agentcore-samples/02-use-cases/customer-support-assistant Follow README for deployment
What does the aws-agentcore skill do?
Build AI agents with AWS Bedrock AgentCore. Use when developing agents on AWS infrastructure, creating tool-use patterns, implementing agent orchestration, or integrating with Bedrock models. Triggers on keywords like AgentCore, Bedrock Agent, AWS agent, Lambda tools.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill aws-agentcore --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 majiayu000/claude-skill-registry, a repository with 534 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.
