Skip to content

Commit 8cf388d

Browse files
authored
Update README with getting started guide and Kiro Power integration (#38)
Add install instructions (Kiro Power + pip), capabilities overview, structured package tables separating runtime SDK from developer tools, and links to PyPI packages and AWS Transform documentation.
1 parent dad8326 commit 8cf388d

1 file changed

Lines changed: 56 additions & 9 deletions

File tree

README.md

Lines changed: 56 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,64 @@
11
# Agent Builder Toolkit for AWS Transform
22

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
14+
15+
### Install via pip
16+
17+
Install the agent SDK and runtime dependencies:
18+
19+
```bash
20+
pip install agent-builder-sdk-aws-transform agent-builder-agentic-mcp-aws-transform
21+
```
22+
23+
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
436

537
## Packages
638

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 |
12-
| [mcp-client](packages/mcp-client) | `agent-builder-mcp-client-aws-transform` | Python MCP client |
13-
| [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 |
57+
58+
## Learn More
59+
60+
- [AWS Transform](https://aws.amazon.com/transform/)
61+
- [AWS Transform Partners](https://aws.amazon.com/transform/partners/)
1462

1563
## Security
1664

@@ -19,4 +67,3 @@ See [CONTRIBUTING](CONTRIBUTING.md#security-issue-notifications) for more inform
1967
## License
2068

2169
This project is licensed under the Apache-2.0 License.
22-

0 commit comments

Comments
 (0)