generated from amazon-archives/__template_MIT-0
-
Notifications
You must be signed in to change notification settings - Fork 350
Agent Builder #1291
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Agent Builder #1291
Changes from all commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
5bcfb35
feat: agent builder
maekawataiki 4a302a9
integrate external agent core and bedrock agent in agentbuilder
maekawataiki 9cf32e2
agentcore cdk l1
maekawataiki 42685ce
fix and update doc
maekawataiki 22f4483
update snapshot
maekawataiki 6d97f81
Merge branch 'main' into feat/agent-builder
maekawataiki ac1499d
fix snapshot error
maekawataiki 74fe92d
optimize logic
maekawataiki 70dadc3
fix
maekawataiki 8ae3a8a
Merge branch 'main' into feat/agent-builder
maekawataiki d8b3395
fix
maekawataiki 280dd3f
update snapshot
maekawataiki 4a90a55
Merge branch 'main' into feat/agent-builder
maekawataiki 3d0fe50
Merge branch 'main' into feat/agent-builder
maekawataiki 923636f
fix
maekawataiki 4d9238b
fix
maekawataiki bf18b78
fix
maekawataiki d128322
fix
maekawataiki 1c3ed17
fix
maekawataiki 212a542
Merge branch 'main' into feat/agent-builder
maekawataiki 6d6d2cf
revert agentcore usecase
maekawataiki b99445c
add dependency
maekawataiki 6b1a654
fix permission and update snapshot test
maekawataiki 4d42559
fix
maekawataiki 3d22dfe
update
maekawataiki 1ce8d41
fix
maekawataiki 1d845fc
Merge branch 'main' into feat/agent-builder
maekawataiki cdfede9
l2
maekawataiki 7b902dc
fix snapshot
maekawataiki 6fe32fb
rename marketplace to public
maekawataiki 4496c2b
fix dependency
maekawataiki File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,79 @@ | ||
| { | ||
| "_comment": "MCP Server Configuration", | ||
| "_metadata_info": { | ||
| "description": "Each server can include a 'metadata' object with 'category' and 'description' fields", | ||
| "category_examples": [ | ||
| "AWS", | ||
| "AI/ML", | ||
| "Utility", | ||
| "Search", | ||
| "Development", | ||
| "Other" | ||
| ] | ||
| }, | ||
| "mcpServers": { | ||
| "time": { | ||
| "command": "uvx", | ||
| "args": ["mcp-server-time"], | ||
| "metadata": { | ||
| "category": "Utility", | ||
| "description": "Provides current time and date functionality" | ||
| } | ||
| }, | ||
| "aws-knowledge-mcp-server": { | ||
| "command": "npx", | ||
| "args": ["mcp-remote", "https://knowledge-mcp.global.api.aws"], | ||
| "metadata": { | ||
| "category": "AWS", | ||
| "description": "AWS Knowledge Base MCP server for enterprise knowledge access" | ||
| } | ||
| }, | ||
| "awslabs.aws-documentation-mcp-server": { | ||
| "command": "uvx", | ||
| "args": ["awslabs.aws-documentation-mcp-server@latest"], | ||
| "metadata": { | ||
| "category": "AWS", | ||
| "description": "Access AWS documentation and guides" | ||
| } | ||
| }, | ||
| "awslabs.cdk-mcp-server": { | ||
| "command": "uvx", | ||
| "args": ["awslabs.cdk-mcp-server@latest"], | ||
| "metadata": { | ||
| "category": "AWS", | ||
| "description": "AWS CDK code generation and assistance" | ||
| } | ||
| }, | ||
| "awslabs.aws-diagram-mcp-server": { | ||
| "command": "uvx", | ||
| "args": ["awslabs.aws-diagram-mcp-server@latest"], | ||
| "metadata": { | ||
| "category": "AWS", | ||
| "description": "Generate AWS architecture diagrams" | ||
| } | ||
| }, | ||
| "awslabs.nova-canvas-mcp-server": { | ||
| "command": "uvx", | ||
| "args": ["awslabs.nova-canvas-mcp-server@latest"], | ||
| "env": { | ||
| "AWS_REGION": "us-east-1" | ||
| }, | ||
| "metadata": { | ||
| "category": "AI/ML", | ||
| "description": "Amazon Nova Canvas image generation" | ||
| } | ||
| }, | ||
| "tavily-search": { | ||
| "command": "npx", | ||
| "args": [ | ||
| "-y", | ||
| "mcp-remote", | ||
| "https://mcp.tavily.com/mcp/?tavilyApiKey=<key>" | ||
| ], | ||
| "metadata": { | ||
| "category": "Search", | ||
| "description": "Web search and research capabilities powered by Tavily" | ||
| } | ||
| } | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,79 @@ | ||
| { | ||
| "_comment": "MCP Server Configuration", | ||
| "_metadata_info": { | ||
| "description": "Each server can include a 'metadata' object with 'category' and 'description' fields", | ||
| "category_examples": [ | ||
| "AWS", | ||
| "AI/ML", | ||
| "Utility", | ||
| "Search", | ||
| "Development", | ||
| "Other" | ||
| ] | ||
| }, | ||
| "mcpServers": { | ||
| "time": { | ||
| "command": "uvx", | ||
| "args": ["mcp-server-time"], | ||
| "metadata": { | ||
| "category": "Utility", | ||
| "description": "Provides current time and date functionality" | ||
| } | ||
| }, | ||
| "aws-knowledge-mcp-server": { | ||
| "command": "npx", | ||
| "args": ["mcp-remote", "https://knowledge-mcp.global.api.aws"], | ||
| "metadata": { | ||
| "category": "AWS", | ||
| "description": "AWS Knowledge Base MCP server for enterprise knowledge access" | ||
| } | ||
| }, | ||
| "awslabs.aws-documentation-mcp-server": { | ||
| "command": "uvx", | ||
| "args": ["awslabs.aws-documentation-mcp-server@latest"], | ||
| "metadata": { | ||
| "category": "AWS", | ||
| "description": "Access AWS documentation and guides" | ||
| } | ||
| }, | ||
| "awslabs.cdk-mcp-server": { | ||
| "command": "uvx", | ||
| "args": ["awslabs.cdk-mcp-server@latest"], | ||
| "metadata": { | ||
| "category": "AWS", | ||
| "description": "AWS CDK code generation and assistance" | ||
| } | ||
| }, | ||
| "awslabs.aws-diagram-mcp-server": { | ||
| "command": "uvx", | ||
| "args": ["awslabs.aws-diagram-mcp-server@latest"], | ||
| "metadata": { | ||
| "category": "AWS", | ||
| "description": "Generate AWS architecture diagrams" | ||
| } | ||
| }, | ||
| "awslabs.nova-canvas-mcp-server": { | ||
| "command": "uvx", | ||
| "args": ["awslabs.nova-canvas-mcp-server@latest"], | ||
| "env": { | ||
| "AWS_REGION": "us-east-1" | ||
| }, | ||
| "metadata": { | ||
| "category": "AI/ML", | ||
| "description": "Amazon Nova Canvas image generation" | ||
| } | ||
| }, | ||
| "tavily-search": { | ||
| "command": "npx", | ||
| "args": [ | ||
| "-y", | ||
| "mcp-remote", | ||
| "https://mcp.tavily.com/mcp/?tavilyApiKey=<key>" | ||
| ], | ||
| "metadata": { | ||
| "category": "Search", | ||
| "description": "Web search and research capabilities powered by Tavily" | ||
| } | ||
| } | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 0 additions & 28 deletions
28
packages/cdk/custom-resources/agent-core-runtime/.gitignore
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.