You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+56-9Lines changed: 56 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,16 +1,64 @@
1
1
# Agent Builder Toolkit for AWS Transform
2
2
3
-
A collection of Python packages for building, deploying, and managing agents on AWS Transform.
3
+
Build custom agents for [AWS Transform](https://aws.amazon.com/transform/). The agent builder toolkit enables AWS Partners and customers to build agents tailored to their specific modernization needs that work within AWS Transform.
4
+
5
+
## Getting Started
6
+
7
+
### Install via Kiro (recommended)
8
+
9
+
The fastest way to get started is through the **[AWS Transform Agent Toolkit](https://kiro.dev/powers/#aws-transform-agent-toolkit)** Kiro Power, which provides guided agent development with documentation search, deployment automation, and registration tools.
10
+
11
+
1. Open the Kiro marketplace (Powers panel)
12
+
2. Search for **"AWS Transform Agent Toolkit"**
13
+
3. Choose **Install** to add the power to your Kiro environment
Install the development MCP server for documentation search, deployment automation, and registry tools:
24
+
25
+
```bash
26
+
pip install agent-builder-mcp-aws-transform
27
+
```
28
+
29
+
## Capabilities
30
+
31
+
-**Agent scaffolding** — orchestrator and subagent templates with best practices
32
+
-**Citation-backed documentation search** — AWS Transform developer guide, SDK, and API specs
33
+
-**One-command deployment** — build container → push to ECR → deploy to Bedrock AgentCore → register with AWS Transform
34
+
-**IAM role templates** — CloudFormation for required roles
35
+
-**Cross-platform support** — Windows, macOS, and Linux
4
36
5
37
## Packages
6
38
7
-
| Package | PyPI Name | Description |
8
-
|---------|-----------|-------------|
9
-
|[sdk](packages/sdk)|`agent-builder-sdk-aws-transform`| Base agent SDK for building orchestrators and subagents |
10
-
|[mcp-server](packages/mcp-server)|`agent-builder-mcp-aws-transform`| MCP server with tools for agent development, deployment, and knowledge search |
11
-
|[agentic-mcp-server](packages/agentic-mcp-server)|`agent-builder-agentic-mcp-aws-transform`| MCP server that agents use at runtime to talk to AWS Transform |
|[types](packages/types)|`agent-builder-types-aws-transform`| Shared type definitions |
39
+
### Agent SDK (runtime)
40
+
41
+
These packages are used by your agent at runtime:
42
+
43
+
| Package | PyPI | Description |
44
+
|---------|------|-------------|
45
+
|[sdk](packages/sdk)|[`agent-builder-sdk-aws-transform`](https://pypi.org/project/agent-builder-sdk-aws-transform/)| Base agent SDK for building orchestrators and subagents |
46
+
|[agentic-mcp-server](packages/agentic-mcp-server)|[`agent-builder-agentic-mcp-aws-transform`](https://pypi.org/project/agent-builder-agentic-mcp-aws-transform/)| MCP server that agents use at runtime to communicate with AWS Transform |
47
+
|[mcp-client](packages/mcp-client)|[`agent-builder-mcp-client-aws-transform`](https://pypi.org/project/agent-builder-mcp-client-aws-transform/)| Python MCP client for agent-to-agent communication |
48
+
|[types](packages/types)|[`agent-builder-types-aws-transform`](https://pypi.org/project/agent-builder-types-aws-transform/)| Shared type definitions |
49
+
50
+
### Developer tools
51
+
52
+
Used during development for documentation search, deployment, and registry management:
53
+
54
+
| Package | PyPI | Description |
55
+
|---------|------|-------------|
56
+
|[mcp-server](packages/mcp-server)|[`agent-builder-mcp-aws-transform`](https://pypi.org/project/agent-builder-mcp-aws-transform/)| MCP server with tools for documentation search, agent deployment, and registry operations |
0 commit comments