
Agents Get Started
- 897 installs
- 2.2k repo stars
- Updated August 4, 2026
- aws/agent-toolkit-for-aws
>.
About
>. Walk a developer from zero to a running agent on AWS. The agents-get-started skill documents workflows, constraints, and examples from SKILL.md for agent-assisted execution.
- Walk a developer from zero to a running agent on AWS.
- Developer wants to build an agent on AWS and doesn't know where to start
- Developer wants to create a new AgentCore project
- Developer is choosing between frameworks (Strands, LangGraph, GoogleADK, OpenAI Agents)
- Developer just ran `agentcore create` and wants to know what to do next
Agents Get Started by the numbers
- 897 all-time installs (skills.sh)
- +259 installs in the week ending Aug 5, 2026 (Skillselion tracking)
- Ranked #201 of 1,435 DevOps & CI/CD skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
agents-get-started capabilities & compatibility
- Capabilities
- walk a developer from zero to a running agent on · developer wants to build an agent on aws and doe · developer wants to create a new agentcore projec · developer is choosing between frameworks (strand
- Use cases
- documentation
What agents-get-started says it does
>
npx skills add https://github.com/aws/agent-toolkit-for-aws --skill agents-get-startedAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 897 |
|---|---|
| repo stars | ★ 2.2k |
| Last updated | August 4, 2026 |
| Repository | aws/agent-toolkit-for-aws ↗ |
How do I apply agents-get-started using the workflow in its SKILL.md?
>
Who is it for?
Developers following the agents-get-started skill for the tasks it documents.
Skip if: Tasks outside the agents-get-started scope described in SKILL.md.
When should I use this skill?
User mentions agents-get-started or related triggers from the skill description.
What you get
Working agents-get-started setup aligned with the documented patterns and constraints.
- AgentCore project scaffold
- Model loader configuration
- Local test baseline
By the numbers
- Enforces a 23-character maximum project name on agentcore create
- Documents 4 model provider options: Bedrock, Anthropic, OpenAI, and Gemini
Files
get-started
Walk a developer from zero to a running agent on AWS.
When to use
- Developer wants to build an agent on AWS and doesn't know where to start
- Developer wants to create a new AgentCore project
- Developer is choosing between frameworks (Strands, LangGraph, GoogleADK, OpenAI Agents)
- Developer just ran
agentcore createand wants to know what to do next
Do NOT use for:
- Environment/prerequisite issues (CLI not found, credentials broken) → use
agents-debug - Adding capabilities to an existing project (memory, tools, policies) → use
agents-buildoragents-connect - Migrating an existing Bedrock Agent → use
agents-build(loads `references/migrate.md`)
Input
$ARGUMENTS can be:
- A framework preference: "using LangGraph", "with Strands"
- A protocol: "MCP server", "A2A"
- A description of what the agent should do: "a customer support agent"
- Empty — the skill will guide framework selection
Process
Step 0: Verify CLI version
agentcore --versionThis skill requires v0.9.0 or later.
If the version is older:
Your AgentCore CLI is out of date (found vX.Y.Z, need v0.9.0+).
Offer to run the update: agentcore update. After the update completes, re-check the version to confirm it's ≥0.9.0 before continuing. Preserve any context the developer already provided (framework preference, project name, what they want to build) so they don't have to repeat themselves.
If agentcore is not found:
The AgentCore CLI isn't installed. Run npm install -g @aws/agentcore (requires Node.js 20+).If you're having trouble with installation, I can run the agents-debug skill (which loads `references/doctor.md`) to diagnose your environment.Step 1: Determine intent — exploring or ready to create?
Before jumping into framework selection, figure out where the developer is:
Ask the developer: "Are you exploring options (comparing frameworks, understanding what AgentCore does) or ready to create a project?"
- Exploring → Go to Step 2 (framework comparison). Present the options, answer questions, and wait. Do not construct a
createcommand until they signal they're ready. - Ready to create → Skip to Step 3 (create the project). If they already specified a framework, skip Step 2 entirely.
- Already has a project → Look for
agentcore/agentcore.jsonin the current directory. If found, read it and skip to Step 5 (what to do next). Don't re-scaffold.
If the developer's intent is clear from $ARGUMENTS (e.g., "create a Strands agent called MyBot"), skip straight to Step 3.
Step 2: Framework selection
Check conversation context first. If the developer already discussed frameworks earlier in this conversation (e.g., from a previous skill invocation), don't re-present the full table. Summarize what was discussed and ask if they've decided, or if anything changed.
If this is the first time discussing frameworks, present the options:
Supported frameworks (CLI-scaffolded, Python):
| Framework | CLI value | Best for |
|---|---|---|
| Strands | Strands | AWS-native, simplest path, best AgentCore integration |
| LangGraph | LangChain_LangGraph | Complex graph-based workflows, existing LangChain investment |
| Google ADK | GoogleADK | Teams already using Google's agent toolkit |
| OpenAI Agents | OpenAIAgents | Teams already using OpenAI's agent SDK |
Ask the developer to choose. Present the options and wait for their selection. Don't assume a default unless they explicitly say they have no preference.
Note on naming: The CLI flag value is the exact string to pass to --framework. In prose use the shorter names.Default recommendation (only when the developer says "no preference" or "you pick"): Strands — AWS-native framework with the tightest AgentCore integration and the most samples/docs.
Key decision points to surface:
- "Do you have existing agent code in LangGraph or OpenAI Agents?" → use that framework
- "Do you need complex graph-based workflows with conditional branching?" → LangGraph
- "Starting fresh with no preference?" → Strands
Framework not listed?
If the developer asks about a framework not in the table above, handle it:
| They ask about | What to say |
|---|---|
| CrewAI, AutoGen, Semantic Kernel | Not scaffolded by the CLI, but you can use them via the BYO Container path (below). AgentCore Runtime is framework-agnostic — any code that implements the HTTP contract works. |
| Anthropic SDK / Claude Agent SDK | This is a model SDK, not an agent framework. You can use it inside any framework (Strands, LangGraph, etc.) or standalone. For standalone use, wrap it in a container with the Runtime contract. |
| Claude Code / Cursor / Copilot | These are IDE tools, not agent frameworks. They're where you write agent code, not what you deploy. Pick a framework from the table above for the agent itself. |
| LangChain (without LangGraph) | LangChain is a library, LangGraph is the agent framework built on it. The CLI scaffolds LangGraph. If you're using plain LangChain chains, the BYO Container path works. |
| Custom / homegrown framework | BYO Container path — see below. |
BYO Container path (any framework, any language):
For frameworks or languages not scaffolded by the CLI, AgentCore Runtime accepts any container that implements the HTTP contract (POST /invocations, GET /ping). The workflow:
1. agentcore create --name <ProjectName> --defaults to scaffold the project structure 2. agentcore add agent --type byo --build Container --language <Language> --code-location <path> to register your code 3. Write a Dockerfile that builds and runs your agent 4. agentcore deploy handles ECR push, CDK infra, and runtime creation
Language-specific notes:
| Language | Recommended path |
|---|---|
| Java (Spring Boot) | Spring AI SDK for AgentCore — handles the Runtime contract, SSE streaming, and health checks. Use --language Other --build Container. |
| JavaScript / TypeScript | Implement the Runtime contract in Express/Fastify/etc. Use --language TypeScript --build Container. |
| Go, Rust, .NET, other | Implement the Runtime HTTP contract. Use --language Other --build Container. |
The rest of this skill (deploy, status, logs, invoke) applies once the container builds correctly.
Framework vs. model provider — a common confusion
The framework is how your agent orchestrates (Strands, LangGraph, etc.). The model provider is which LLM it calls (Bedrock, Anthropic, OpenAI, Gemini). These are independent choices:
- Strands + Bedrock (default) — AWS-native everything
- Strands + Anthropic — Strands orchestration, direct Anthropic API for the model
- LangGraph + Bedrock — LangGraph orchestration, Bedrock for the model
- OpenAI Agents + OpenAI — OpenAI everything
If the developer says "I want to use Claude" they mean the model provider (Bedrock or Anthropic), not the framework. If they say "I want to use LangGraph" they mean the framework.
Step 3: Create the project
Build the agentcore create command based on the developer's choices.
Before constructing the command — validate the project name. The CLI fails late: if the name is invalid, you'll see the error after walking through prompts or building the full command. Save the round-trip and check these rules up front. Reject the name and ask for a new one if any rule fails:
- Length ≤ 23 characters (this is shorter than most developers assume —
MyCustomerSupportAgentis 22 chars and fits;CustomerSupportChatbotis 22 and fits;MyCustomerSupportBotAppis 23 and just fits;MyCustomerSupportChatBotis 24 and fails) - Alphanumeric only — no hyphens, underscores, dots, or spaces
- Must start with a letter
Say the count back out loud when close to the limit: "That name is 24 characters — the CLI caps project names at 23. Want to shorten it to <suggestion>?" Do not run the command with an invalid name on the assumption that the CLI error message will be clear — it isn't always, and the developer's mental model will be wrong for subsequent commands.
Construct the command, then present it for confirmation before the developer runs it. Show the full command with all flags and explain what each choice means. Wait for the developer to confirm or adjust before proceeding.
Example presentation:
Here's the command I'd recommend based on what you've told me:
>
```bash
agentcore create --name MyAgent --framework Strands --model-provider Bedrock --build CodeZip --memory none
```
>
This creates a Strands agent using Bedrock models, deployed as a code zip (no Docker needed). Memory can be added later.
>
Want to run this, or change anything?
Do NOT execute the command automatically — present it and wait.
Minimal (defaults — Strands, Bedrock, CodeZip, no memory):
agentcore create --name <ProjectName> --defaultsWith specific options:
agentcore create \
--name <ProjectName> \
--framework <Framework> \
--model-provider Bedrock \
--build CodeZip \
--memory noneFlag reference:
| Flag | Values | Default |
|---|---|---|
--name | alphanumeric, max 23 chars | prompted |
--framework | Strands, LangChain_LangGraph, GoogleADK, OpenAIAgents | prompted |
--protocol | HTTP, MCP, A2A | HTTP |
--build | CodeZip, Container | CodeZip |
--model-provider | Bedrock, Anthropic, OpenAI, Gemini | prompted |
--memory | none, shortTerm, longAndShortTerm | prompted |
--network-mode | PUBLIC, VPC | PUBLIC |
--dry-run | — | preview without creating |
Guidance on choices:
- Protocol: Use
HTTPunless the developer specifically needs MCP tool serving or A2A agent-to-agent communication - Build: Use
CodeZipunless the developer needs custom system dependencies (CodeZip is faster to deploy and doesn't require Docker locally) - Model provider: Use
Bedrockunless the developer has a specific reason for another provider (Bedrock doesn't require managing API keys) - Memory: Start with
none— memory can be added later viaagents-build(loads `references/memory.md`) when the developer needs it
Step 4: Explain what was created
After the project exists, read agentcore/agentcore.json and the generated code to explain the project structure.
The layout below reflects CLI v0.9.x. If the CLI version is different, run tree <ProjectName>/ -L 3 to see the actual generated structure and explain from there.
<ProjectName>/
├── agentcore/
│ ├── agentcore.json ← Project config (agents, resources)
│ ├── aws-targets.json ← AWS account + region
│ ├── .env.local ← Local environment variables (gitignored)
│ └── cdk/ ← CDK infrastructure (auto-managed, don't edit)
└── app/
└── <AgentName>/
├── main.py ← Your agent code — this is where you build
├── mcp_client/ ← Pre-wired example MCP client (see note below)
└── pyproject.toml ← Python dependenciesKey files to highlight:
app/<AgentName>/main.py— the agent's entry point. This is where the developer adds tools, system prompts, and logic.agentcore/agentcore.json— the project config. Resources are added here viaagentcore addcommands.agentcore/.env.local— local environment variables. After deploy, resource IDs are written here for local dev.
Heads-up on the scaffolded MCP client. main.py imports get_streamable_http_mcp_client() from mcp_client/client.py and appends it to tools. In a fresh project, this client points at a public example MCP endpoint — so agentcore dev works immediately. Two things to flag:
1. It will become a silent no-op if you repoint it at a gateway that isn't deployed yet. The common path is to swap the example endpoint for os.getenv("AGENTCORE_GATEWAY_<NAME>_URL"). That env var is only populated after agentcore deploy. If the developer repoints and runs agentcore dev before deploying, get_streamable_http_mcp_client() returns a client with a None URL and the agent starts with zero MCP tools — no error, no warning. See the "Local dev gap" section in agents-connect for the guard pattern: if not GATEWAY_URL: tools = []. 2. If the developer doesn't need MCP tools at all, remove the mcp_clients list and the loop that appends it to tools. The scaffold includes it as a convenience, not a requirement.
The reference client code in agents-connect (Path A) shows the correct pattern for gateway-backed MCP clients once deploy has run.
Step 5: Local development
agentcore devThis starts a local dev server. The developer can interact with their agent immediately.
Port the dev server binds to (important if you're scripting curl calls or testing from another process):
| Protocol | Default port |
|---|---|
| HTTP | 8080 |
| MCP | 8000 |
| A2A | 9000 |
The CLI prints the bound port and URL on startup — always read the actual value from the CLI output rather than hardcoding. If the default port is already in use, the CLI auto-increments (e.g., 8080 → 8081 → 8082), so a second dev session or a lingering process from a previous run can shift your port without warning. Use agentcore dev --port <N> to pin it, or grep ps / check the CLI banner if invocations start failing with connection-refused or exit-code-7 errors.
Important limitations to mention:
- Memory is not available in
agentcore dev— it requires a deploy - Gateway URLs are not available locally — they require a deploy
- The local server uses the model provider configured in the project
Step 6: First deploy
When the developer is ready to deploy:
agentcore deployThis will:
1. Show a preview of AWS resources to be created 2. Ask for confirmation 3. Build and deploy via CDK
First deploy takes 3-5 minutes. Subsequent deploys are faster.
After deploy, show them how to invoke:
agentcore invoke "Hello, what can you do?"And how to check status:
agentcore statusStep 7: What's next
Based on what the developer said they want to build, suggest the logical next skill:
| Developer intent | Next skill | Command hint |
|---|---|---|
| "How do I call it from my app?" | agents-build | agentcore fetch access |
| "I want it to remember things" | agents-build | agentcore add memory |
| "I want it to call external APIs" | agents-connect | agentcore add gateway |
| "I want to restrict what it can do" | agents-connect | agentcore add policy-engine |
| "I want to measure quality" | agents-optimize | agentcore add evaluator |
| "I want to go to production" | agents-harden | production readiness checklist |
| "I want multiple agents working together" | agents-build | agentcore create --protocol A2A |
| "I need it in a VPC" | agents-build | agentcore create --network-mode VPC |
Don't overwhelm — suggest one or two next steps based on what the developer actually asked for.
Example walkthroughs
For task-framed prompts (e.g., "build a customer support agent"), load the matching example reference:
| Developer task | Reference |
|---|---|
| Customer support, chatbot, answer policy questions | `references/example-support-agent.md` |
More examples can be added to this skill's references directory as common patterns emerge.
Output
- A clear path from "I want to build an agent" to a running deployed agent
- The
agentcore createcommand tailored to their choices - An explanation of the generated project structure
- Concrete next steps based on their intent
Quality criteria
- The
agentcore createcommand uses only valid flags from CLI v0.9.1 - Framework recommendation is based on the developer's context, not a generic default
- The developer understands what each generated file does
- Next steps are specific to what the developer wants to build, not a generic list of all features
Example: Customer Support Agent
A complete, realistic example of a customer support agent scaffolded with agentcore create. Use this as a reference when the developer asks to "build a customer support agent" or similar task-framed prompts.
What this agent does
Answers customer questions about product policies, shipping, and returns. Uses Strands as the framework, Bedrock (Claude Sonnet) as the model, and starts without memory or tools (both can be added later).
Scaffold command
agentcore create \
--name SupportAgent \
--framework Strands \
--protocol HTTP \
--build CodeZip \
--model-provider Bedrock \
--memory noneGenerated main.py (annotated)
After scaffolding, app/SupportAgent/main.py looks something like:
from bedrock_agentcore.runtime import BedrockAgentCoreApp
from strands import Agent
from model.load import load_model # scaffolded by `agentcore create` in model/load.py
app = BedrockAgentCoreApp()
SYSTEM_PROMPT = """You are a customer support agent for Acme Corp.
You answer questions about product policies, shipping, and returns.
Guidelines:
- Be concise and friendly
- If you don't know the answer, say so — don't make up policies
- For order-specific questions, ask for the order number
- Escalate to a human agent if the customer expresses frustration"""
@app.entrypoint
def invoke(payload, context):
agent = Agent(
model=load_model(),
system_prompt=SYSTEM_PROMPT,
)
result = agent(payload.get("prompt", ""))
return {"response": str(result)}
if __name__ == "__main__":
app.run()The generatedmodel/load.pyreturns aBedrockModelconfigured with a cross-region inference profile (e.g.,global.anthropic.claude-sonnet-4-5-*). Usingload_model()instead of hardcoding the model ID means your code tracks whatever default the CLI ships. To use a different model, editmodel/load.py.
Try it locally
agentcore devIn another terminal:
curl -X POST http://localhost:8080/invocations \
-H "Content-Type: application/json" \
-d '{"prompt": "What is your return policy?"}'Deploy it
agentcore deployNatural next steps
After the basic agent is working, the developer typically asks for one of these next:
| "I want to..." | Next skill |
|---|---|
| "Let it look up orders in our database" | agents-connect (add a gateway target for the order API) |
| "Remember the customer's name between sessions" | agents-build (loads `references/memory.md`) |
| "Make sure it can't say anything off-policy" | agents-connect (loads `references/policy.md`) |
| "Put it on our website" | agents-build (loads `references/integrate.md`) |
| "Know if it's actually helpful" | agents-optimize |
Variations
LangGraph variant
agentcore create --name SupportAgent --framework LangChain_LangGraph --model-provider Bedrock --memory noneGenerated main.py uses create_react_agent and langchain_aws:
from langchain_core.messages import HumanMessage, SystemMessage
from langgraph.prebuilt import create_react_agent
from bedrock_agentcore.runtime import BedrockAgentCoreApp
from model.load import load_model
app = BedrockAgentCoreApp()
SYSTEM_PROMPT = "..." # same as Strands version
@app.entrypoint
async def invoke(payload, context):
graph = create_react_agent(load_model(), tools=[])
result = await graph.ainvoke({
"messages": [
SystemMessage(content=SYSTEM_PROMPT),
HumanMessage(content=payload["prompt"]),
]
})
return {"response": result["messages"][-1].content}
if __name__ == "__main__":
app.run()OpenAI Agents SDK variant
agentcore create --name SupportAgent --framework OpenAIAgents --model-provider OpenAI --memory nonefrom agents import Agent, Runner
from bedrock_agentcore.runtime import BedrockAgentCoreApp
app = BedrockAgentCoreApp()
@app.entrypoint
async def invoke(payload, context):
agent = Agent(
name="SupportAgent",
instructions="...", # same as Strands version
)
result = await Runner.run(agent, payload["prompt"])
return {"response": result.final_output}
if __name__ == "__main__":
app.run()Google ADK variant
agentcore create --name SupportAgent --framework GoogleADK --model-provider Gemini --memory nonefrom google.adk.agents import Agent
from google.adk.runners import Runner
from google.adk.sessions import InMemorySessionService
from google.genai import types
from bedrock_agentcore.runtime import BedrockAgentCoreApp
app = BedrockAgentCoreApp()
agent = Agent(
model="gemini-2.5-flash",
name="SupportAgent",
description="Customer support agent",
instruction="...", # same as Strands version
)
@app.entrypoint
async def invoke(payload, context):
user_id = payload.get("user_id", "default_user")
session_id = getattr(context, "session_id", "default_session")
session_service = InMemorySessionService()
session = await session_service.create_session(
app_name="support", user_id=user_id, session_id=session_id
)
runner = Runner(agent=agent, app_name="support", session_service=session_service)
content = types.Content(role="user", parts=[types.Part(text=payload["prompt"])])
async for event in runner.run_async(user_id=user_id, session_id=session.id, new_message=content):
if event.is_final_response():
return {"response": event.content.parts[0].text}
if __name__ == "__main__":
app.run()Model provider options
The CLI supports four model providers:
| Provider | Best for | Notes |
|---|---|---|
Bedrock | Default, no API key needed, IAM-based auth | Uses cross-region inference profiles (e.g., global.anthropic.claude-sonnet-4-5-*) |
Anthropic | Direct Anthropic API access | Requires ANTHROPIC_API_KEY; model IDs like claude-sonnet-4-5-20250929 |
OpenAI | GPT-4 / GPT-5 models | Requires OPENAI_API_KEY; typically paired with OpenAI Agents SDK |
Gemini | Google Gemini models | Requires GEMINI_API_KEY; typically paired with Google ADK |
For cost-sensitive use cases, consider Bedrock Nova models (e.g., amazon.nova-micro-v1:0, amazon.nova-lite-v1:0) — significantly cheaper than Claude for simpler extractive tasks. See `agents-optimize/references/cost.md` for model selection guidance.
For a chatbot that remembers conversations, add --memory longAndShortTerm during scaffolding. Memory can also be added later — see `agents-build/references/memory.md`.
Related skills
How it compares
Use agents-get-started for first AgentCore scaffold; use agents-build or agents-connect when extending an existing AWS agent with memory or external APIs.
FAQ
What does agents-get-started do?
>
When should I use agents-get-started?
Invoke when >.
Is agents-get-started safe to install?
Review the Security Audits panel on this page before installing in production.