Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changes/next-release/feature-configure-32033.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"type": "feature",
"category": "``configure``",
"description": "Adds the ``agent-toolkit`` and ``aws configure agent-toolkit`` commands, which can be used for configuring your agentic tools with AWS skills and MCP server."
}
9 changes: 8 additions & 1 deletion awscli/autocomplete/local/indexer.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,14 @@ class ModelIndexer:
'ddb': 'High level DynamoDB commands',
}

_NON_SERVICE_COMMANDS = ['configure', 'history', 'cli-dev', 'login', 'logout']
_NON_SERVICE_COMMANDS = [
'configure',
'history',
'cli-dev',
'login',
'logout',
'agent-toolkit',
]

_CREATE_CMD_TABLE = """\
CREATE TABLE IF NOT EXISTS command_table (
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
{
"version": "1.0",
"parameters": {
"Endpoint": {
"type": "String",
"builtIn": "SDK::Endpoint",
"required": false,
"documentation": "Override the endpoint URL"
},
"Region": {
"required": true,
"type": "String",
"builtIn": "AWS::Region",
"documentation": "AWS region"
}
},
"rules": [
{
"documentation": "Use custom endpoint if provided",
"type": "endpoint",
"conditions": [
{
"fn": "isSet",
"argv": [
{
"ref": "Endpoint"
}
]
}
],
"endpoint": {
"url": "{Endpoint}"
}
},
{
"documentation": "Default endpoint for us-east-1",
"type": "endpoint",
"conditions": [
{
"fn": "stringEquals",
"argv": [
{
"ref": "Region"
},
"us-east-1"
]
}
],
"endpoint": {
"url": "https://agent-toolkit.us-east-1.api.aws"
}
},
{
"documentation": "Error for unsupported regions",
"type": "error",
"conditions": [],
"error": "AgentToolkit is only available in us-east-1"
}
]
}
16 changes: 16 additions & 0 deletions awscli/botocore/data/agenttoolkit/2026-04-22/paginators-1.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"pagination": {
"ListSkills": {
"input_token": "nextToken",
"output_token": "nextToken",
"limit_key": "maxResults",
"result_key": "skills"
},
"SearchSkills": {
"input_token": "nextToken",
"output_token": "nextToken",
"limit_key": "maxResults",
"result_key": "skills"
}
}
}
Loading
Loading