Skip to content
Merged
Show file tree
Hide file tree
Changes from 8 commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
5bcfb35
feat: agent builder
maekawataiki Sep 25, 2025
4a302a9
integrate external agent core and bedrock agent in agentbuilder
maekawataiki Sep 26, 2025
9cf32e2
agentcore cdk l1
maekawataiki Sep 27, 2025
42685ce
fix and update doc
maekawataiki Sep 27, 2025
22f4483
update snapshot
maekawataiki Sep 27, 2025
6d97f81
Merge branch 'main' into feat/agent-builder
maekawataiki Sep 27, 2025
ac1499d
fix snapshot error
maekawataiki Sep 27, 2025
74fe92d
optimize logic
maekawataiki Sep 28, 2025
70dadc3
fix
maekawataiki Sep 29, 2025
8ae3a8a
Merge branch 'main' into feat/agent-builder
maekawataiki Sep 29, 2025
d8b3395
fix
maekawataiki Sep 29, 2025
280dd3f
update snapshot
maekawataiki Sep 29, 2025
4a90a55
Merge branch 'main' into feat/agent-builder
maekawataiki Sep 30, 2025
3d0fe50
Merge branch 'main' into feat/agent-builder
maekawataiki Oct 1, 2025
923636f
fix
maekawataiki Oct 1, 2025
4d9238b
fix
maekawataiki Oct 1, 2025
bf18b78
fix
maekawataiki Oct 1, 2025
d128322
fix
maekawataiki Oct 3, 2025
1c3ed17
fix
maekawataiki Oct 3, 2025
212a542
Merge branch 'main' into feat/agent-builder
maekawataiki Oct 8, 2025
6d6d2cf
revert agentcore usecase
maekawataiki Oct 11, 2025
b99445c
add dependency
maekawataiki Oct 14, 2025
6b1a654
fix permission and update snapshot test
maekawataiki Oct 14, 2025
4d42559
fix
maekawataiki Oct 15, 2025
3d22dfe
update
maekawataiki Oct 16, 2025
1ce8d41
fix
maekawataiki Oct 26, 2025
1d845fc
Merge branch 'main' into feat/agent-builder
maekawataiki Oct 27, 2025
cdfede9
l2
maekawataiki Oct 27, 2025
7b902dc
fix snapshot
maekawataiki Oct 28, 2025
6fe32fb
rename marketplace to public
maekawataiki Oct 28, 2025
4496c2b
fix dependency
maekawataiki Oct 28, 2025
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
Binary file added docs/assets/images/usecase_agentbuilder.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions docs/en/DEPLOY_OPTION.md
Original file line number Diff line number Diff line change
Expand Up @@ -689,6 +689,8 @@ Enabling `createGenericAgentCoreRuntime` will deploy the default AgentCore Runti
By default, it is deployed to the `modelRegion`, but you can override this by specifying `agentCoreRegion`.

The default agents available in AgentCore can utilize MCP servers defined in [mcp.json](https://github.com/aws-samples/generative-ai-use-cases/blob/main/packages/cdk/lambda-python/generic-agent-core-runtime/mcp.json).
This default agent is available in Agent Builder, and users can create any agent from MCPs that administrators have permitted.

The MCP servers defined by default are AWS-related MCP servers and MCP servers related to current time.
For details, please refer to the documentation [here](https://awslabs.github.io/mcp/).
When adding MCP servers, please add them to the aforementioned `mcp.json`.
Expand Down
2 changes: 2 additions & 0 deletions docs/ja/DEPLOY_OPTION.md
Original file line number Diff line number Diff line change
Expand Up @@ -704,6 +704,8 @@ AgentCore で作成したエージェントと連携するユースケースで
デフォルトでは `modelRegion` にデプロイされますが、`agentCoreRegion` を指定し上書きすることが可能です。

AgentCore で使用できるデフォルトのエージェントは、[mcp.json](https://github.com/aws-samples/generative-ai-use-cases/blob/main/packages/cdk/lambda-python/generic-agent-core-runtime/mcp.json) で定義する MCP サーバーを利用することができます。
このデフォルトのエージェントは Agent Builder で利用でき、ユーザーは管理者が許可した MCP から任意のエージェントを作成することができます。

デフォルトで定義されている MCP サーバーは、AWS に関連する MCP サーバー及び、現在時刻に関連する MCP サーバーです。
詳細は[こちら](https://awslabs.github.io/mcp/)のドキュメントをご参照ください。
MCP サーバーを追加する場合は上述の `mcp.json` に追記してください。
Expand Down
17 changes: 17 additions & 0 deletions docs/overrides/home_en.html
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,23 @@ <h3 class="mb-2 text-xl font-semibold">Agent Chat</h3>
</p>
</div>
</div>
<div class="swiper-slide">
<div class="rounded-lg bg-white p-6 shadow-lg">
<img
src="../assets/images/usecase_agentbuilder.gif"
alt="Agent Builder"
class="mb-4 w-full rounded-lg" />
<h3 class="mb-2 text-xl font-semibold">Agent Builder</h3>
<p class="text-sm text-gray-600">
Agent Builder is a comprehensive platform for creating, managing,
and deploying custom AI agents within GenU. Build agents with
specialized capabilities using MCP servers, and custom system
prompts. Organize your agents with tags and share them in the
marketplace, or integrate external Bedrock Agents and AgentCore
runtimes for enhanced functionality.
</p>
</div>
</div>
<div class="swiper-slide">
<div class="rounded-lg bg-white p-6 shadow-lg">
<img
Expand Down
14 changes: 14 additions & 0 deletions docs/overrides/home_ja.html
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,20 @@ <h3 class="mb-2 text-xl font-semibold">Agent チャット</h3>
</p>
</div>
</div>
<div class="swiper-slide">
<div class="rounded-lg bg-white p-6 shadow-lg">
<img
src="../assets/images/usecase_agentbuilder.gif"
alt="Agent Builder"
class="mb-4 w-full rounded-lg" />
<h3 class="mb-2 text-xl font-semibold">Agent Builder</h3>
<p class="text-sm text-gray-600">
Agent
Builderは、GenU内でカスタムAIエージェントを作成、管理、デプロイするための包括的なプラットフォームです。MCPサーバーとカスタムシステムプロンプトを使用して、専門的な機能を持つエージェントを構築できます。タグでエージェントを整理し、マーケットプレイスで共有したり、外部のBedrock
AgentsやAgentCoreランタイムを統合して機能を拡張したりできます。
</p>
</div>
</div>
<div class="swiper-slide">
<div class="rounded-lg bg-white p-6 shadow-lg">
<img
Expand Down
Loading