@@ -9,7 +9,7 @@ Run `agentcore` without arguments to launch the interactive TUI. Flags marked `[
99
1010| Command | Alias |
1111| --------- | ----- |
12- | ` deploy ` | ` p ` |
12+ | ` deploy ` | ` dp ` |
1313| ` dev ` | ` d ` |
1414| ` invoke ` | ` i ` |
1515| ` status ` | ` s ` |
@@ -65,30 +65,30 @@ agentcore create \
6565 --memory none
6666```
6767
68- | Flag | Description |
69- | ------------------------- | -------------------------------------------------------------------------------- |
70- | ` --name <name> ` | Project name (alphanumeric, starts with letter, max 23 chars) |
71- | ` --defaults ` | Use defaults (Python, Strands, Bedrock, no memory) |
72- | ` --no-agent ` | Skip agent creation |
73- | ` --type <type> ` | ` create ` (default) or ` import ` |
74- | ` --language <lang> ` | ` Python ` (default) |
75- | ` --framework <fw> ` | ` Strands ` , ` LangChain_LangGraph ` , ` CrewAI ` , ` GoogleADK ` , ` OpenAIAgents ` |
76- | ` --model-provider <p> ` | ` Bedrock ` , ` Anthropic ` , ` OpenAI ` , ` Gemini ` |
77- | ` --build <type> ` | ` CodeZip ` (default) or ` Container ` (see [ Container Builds] ( container-builds.md ) ) |
78- | ` --api-key <key> ` | API key for non-Bedrock providers |
79- | ` --memory <opt> ` | ` none ` , ` shortTerm ` , ` longAndShortTerm ` |
80- | ` --protocol <protocol> ` | ` HTTP ` (default), ` MCP ` , ` A2A ` |
81- | ` --network-mode <mode> ` | ` PUBLIC ` (default) or ` VPC ` |
82- | ` --subnets <ids> ` | Comma-separated subnet IDs (required for VPC mode) |
83- | ` --security-groups <ids> ` | Comma-separated security group IDs (required for VPC mode) |
84- | ` --agent-id <id> ` | Bedrock Agent ID (import only) |
85- | ` --agent-alias-id <id> ` | Bedrock Agent Alias ID (import only) |
86- | ` --region <region> ` | AWS region for Bedrock Agent (import only) |
87- | ` --output-dir <dir> ` | Output directory |
88- | ` --skip-git ` | Skip git initialization |
89- | ` --skip-python-setup ` | Skip venv setup |
90- | ` --dry-run ` | Preview without creating |
91- | ` --json ` | JSON output |
68+ | Flag | Description |
69+ | ------------------------- | -------------------------------------------------------------------------------------------------------------- |
70+ | ` --name <name> ` | Project name (alphanumeric, starts with letter, max 23 chars) |
71+ | ` --defaults ` | Use defaults (Python, Strands, Bedrock, no memory) |
72+ | ` --no-agent ` | Skip agent creation |
73+ | ` --type <type> ` | ` create ` (default) or ` import ` |
74+ | ` --language <lang> ` | ` Python ` (default) |
75+ | ` --framework <fw> ` | ` Strands ` , ` LangChain_LangGraph ` , ` CrewAI ` , ` GoogleADK ` , ` OpenAIAgents ` |
76+ | ` --model-provider <p> ` | ` Bedrock ` , ` Anthropic ` , ` OpenAI ` , ` Gemini ` |
77+ | ` --build <type> ` | ` CodeZip ` (default) or ` Container ` (see [ Container Builds] ( container-builds.md ) ) |
78+ | ` --api-key <key> ` | API key for non-Bedrock providers |
79+ | ` --memory <opt> ` | ` none ` , ` shortTerm ` , ` longAndShortTerm ` (see [ Memory Shorthand Mapping ] ( memory.md#--memory-shorthand-mapping ) ) |
80+ | ` --protocol <protocol> ` | ` HTTP ` (default), ` MCP ` , ` A2A ` |
81+ | ` --network-mode <mode> ` | ` PUBLIC ` (default) or ` VPC ` |
82+ | ` --subnets <ids> ` | Comma-separated subnet IDs (required for VPC mode) |
83+ | ` --security-groups <ids> ` | Comma-separated security group IDs (required for VPC mode) |
84+ | ` --agent-id <id> ` | Bedrock Agent ID (import only) |
85+ | ` --agent-alias-id <id> ` | Bedrock Agent Alias ID (import only) |
86+ | ` --region <region> ` | AWS region for Bedrock Agent (import only) |
87+ | ` --output-dir <dir> ` | Output directory |
88+ | ` --skip-git ` | Skip git initialization |
89+ | ` --skip-python-setup ` | Skip venv setup |
90+ | ` --dry-run ` | Preview without creating |
91+ | ` --json ` | JSON output |
9292
9393### deploy
9494
@@ -193,26 +193,26 @@ agentcore add agent \
193193 --memory none
194194```
195195
196- | Flag | Description |
197- | ------------------------- | -------------------------------------------------------------------------------- |
198- | ` --name <name> ` | Agent name (alphanumeric, starts with letter, max 64 chars) |
199- | ` --type <type> ` | ` create ` (default), ` byo ` , or ` import ` |
200- | ` --build <type> ` | ` CodeZip ` (default) or ` Container ` (see [ Container Builds] ( container-builds.md ) ) |
201- | ` --language <lang> ` | ` Python ` (create); ` Python ` , ` TypeScript ` , ` Other ` (BYO) |
202- | ` --framework <fw> ` | ` Strands ` , ` LangChain_LangGraph ` , ` CrewAI ` , ` GoogleADK ` , ` OpenAIAgents ` |
203- | ` --model-provider <p> ` | ` Bedrock ` , ` Anthropic ` , ` OpenAI ` , ` Gemini ` |
204- | ` --api-key <key> ` | API key for non-Bedrock providers |
205- | ` --memory <opt> ` | ` none ` , ` shortTerm ` , ` longAndShortTerm ` (create and import) |
206- | ` --protocol <protocol> ` | ` HTTP ` (default), ` MCP ` , ` A2A ` |
207- | ` --code-location <path> ` | Path to existing code (BYO only) |
208- | ` --entrypoint <file> ` | Entry file relative to code-location (BYO, default: ` main.py ` ) |
209- | ` --network-mode <mode> ` | ` PUBLIC ` (default) or ` VPC ` |
210- | ` --subnets <ids> ` | Comma-separated subnet IDs (required for VPC mode) |
211- | ` --security-groups <ids> ` | Comma-separated security group IDs (required for VPC mode) |
212- | ` --agent-id <id> ` | Bedrock Agent ID (import only) |
213- | ` --agent-alias-id <id> ` | Bedrock Agent Alias ID (import only) |
214- | ` --region <region> ` | AWS region for Bedrock Agent (import only) |
215- | ` --json ` | JSON output |
196+ | Flag | Description |
197+ | ------------------------- | --------------------------------------------------------------------------------------------------------------------------------- |
198+ | ` --name <name> ` | Agent name (alphanumeric, starts with letter, max 64 chars) |
199+ | ` --type <type> ` | ` create ` (default), ` byo ` , or ` import ` |
200+ | ` --build <type> ` | ` CodeZip ` (default) or ` Container ` (see [ Container Builds] ( container-builds.md ) ) |
201+ | ` --language <lang> ` | ` Python ` (create); ` Python ` , ` TypeScript ` , ` Other ` (BYO) |
202+ | ` --framework <fw> ` | ` Strands ` , ` LangChain_LangGraph ` , ` CrewAI ` , ` GoogleADK ` , ` OpenAIAgents ` |
203+ | ` --model-provider <p> ` | ` Bedrock ` , ` Anthropic ` , ` OpenAI ` , ` Gemini ` |
204+ | ` --api-key <key> ` | API key for non-Bedrock providers |
205+ | ` --memory <opt> ` | ` none ` , ` shortTerm ` , ` longAndShortTerm ` (create and import; see [ Memory Shorthand Mapping ] ( memory.md#--memory-shorthand-mapping ) ) |
206+ | ` --protocol <protocol> ` | ` HTTP ` (default), ` MCP ` , ` A2A ` |
207+ | ` --code-location <path> ` | Path to existing code (BYO only) |
208+ | ` --entrypoint <file> ` | Entry file relative to code-location (BYO, default: ` main.py ` ) |
209+ | ` --network-mode <mode> ` | ` PUBLIC ` (default) or ` VPC ` |
210+ | ` --subnets <ids> ` | Comma-separated subnet IDs (required for VPC mode) |
211+ | ` --security-groups <ids> ` | Comma-separated security group IDs (required for VPC mode) |
212+ | ` --agent-id <id> ` | Bedrock Agent ID (import only) |
213+ | ` --agent-alias-id <id> ` | Bedrock Agent Alias ID (import only) |
214+ | ` --region <region> ` | AWS region for Bedrock Agent (import only) |
215+ | ` --json ` | JSON output |
216216
217217### add memory
218218
@@ -542,7 +542,7 @@ agentcore logs --json # JSON Lines output
542542| ` --since <time> ` | Start time (defaults to 1h ago in search mode; e.g. ` 1h ` , ` 30m ` , ` 2d ` , ISO 8601) |
543543| ` --until <time> ` | End time (defaults to now in search mode; e.g. ` now ` , ISO 8601) |
544544| ` --level <level> ` | Filter by log level: ` error ` , ` warn ` , ` info ` , ` debug ` |
545- | ` -n, --lines <n> ` | Maximum number of log lines to return |
545+ | ` -n, --limit <n> ` | Maximum number of log lines to return |
546546| ` --query <text> ` | Server-side text filter |
547547| ` --json ` | Output as JSON Lines |
548548
@@ -675,7 +675,7 @@ agentcore logs evals --follow --json
675675| ` -a, --agent <name> ` | Filter by agent |
676676| ` --since <time> ` | Start time (e.g. ` 1h ` , ` 30m ` , ` 2d ` , ISO 8601) |
677677| ` --until <time> ` | End time |
678- | ` -n, --lines <count> ` | Maximum log lines |
678+ | ` -n, --limit <count> ` | Maximum log lines |
679679| ` -f, --follow ` | Stream in real-time |
680680| ` --json ` | JSON Lines output |
681681
0 commit comments