Agent skill · DevOps & Cloud

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.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill aws-agentcore --agent claude-code

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

Facts
Files in the skill folder: 2
SKILL.md size: 5 KB
Bundled scripts: none
Path: skills/agent/aws-agentcore/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

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

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. Quick Start
  2. AgentCore Components
  3. Lambda Tool Integration
  4. Agent Orchestration
  5. Guardrails Integration
  6. AgentCore Gateway
  7. AgentCore Memory
  8. Official Use Cases Repository
  9. Available Use Cases (02-use-cases/)
  10. Quick Start with Use Cases
  11. Resources
Ships with 1 file
  • metadata.json
Commands it runs
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
More from claude-skill-registry
All skills →
About this skill
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.

Keep going