Thank you for your interest in contributing to our project. Whether it's a bug report, new feature, correction, or additional documentation, we greatly value feedback and contributions from our community.
Please read through this document before submitting any issues or pull requests to ensure we have all the necessary information to effectively respond to your bug report or contribution.
We welcome you to use the GitHub issue tracker to report bugs or suggest features.
When filing an issue, please check existing open, or recently closed, issues to make sure somebody else hasn't already reported the issue. Please try to include as much information as you can. Details like these are incredibly useful:
- A reproducible test case or series of steps
- The version of our code being used
- Any modifications you've made relevant to the bug
- Anything unusual about your environment or deployment
Contributions via pull requests are much appreciated. Before sending us a pull request, please ensure that:
- Every PR must be linked to an issue. Open an issue first (or find an existing one) and reference it in your PR
using
Closes #issue-number. PRs without an associated issue will not be reviewed. - You are working against the latest source on the main branch.
- You check existing open, and recently merged, pull requests to make sure someone else hasn't addressed the problem already.
- You open an issue to discuss any significant work - we would hate for your time to be wasted.
To send us a pull request, please:
- Fork the repository.
- Modify the source; please focus on the specific change you are contributing. If you also reformat all the code, it will be hard for us to focus on your change.
- Ensure local tests pass.
- Commit to your fork using clear commit messages.
- Send us a pull request, answering any default questions in the pull request interface.
- Pay attention to any automated CI failures reported in the pull request, and stay involved in the conversation.
GitHub provides additional document on forking a repository and creating a pull request.
Looking at the existing issues is a great way to find something to contribute on. As our projects, by default, use the default GitHub issue labels (enhancement/bug/duplicate/help wanted/invalid/question/wontfix), looking at any 'help wanted' issues is a great place to start.
The Claude Security Review workflow runs automatically on maintainer-authored PRs (opened/reopened/synchronize) and on
community PRs once a maintainer applies the safe-to-review label. PRs from non-collaborators are otherwise skipped
— the label is the gate, so a maintainer must manually review the diff before the automated reviewer runs.
Why the label and not an approving review? GitHub does not inject repo/org secrets into workflows triggered by
pull_request_reviewevents when the PR head is a fork, regardless of the reviewer's access level. The Bedrock OIDC role and GitHub App credentials this workflow needs are only available onpull_request_targetevents, so the label path is the only one that works end-to-end for fork PRs.
To re-run the review on a later commit, remove and re-apply the label, or trigger the Claude Security Review workflow
manually from the Actions tab with the PR number. Note that manual dispatch can verify the analysis and prompt plumbing
but cannot post inline comments — the action's inline-comment MCP server only attaches on PR-context events
(pull_request_target).
This project has adopted the Amazon Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opensource-codeofconduct@amazon.com with any additional questions or comments.
If you discover a potential security issue in this project we ask that you notify AWS/Amazon Security via our vulnerability reporting page. Please do not create a public github issue.
- Node.js 20+
- npm
npm install
npm run buildnpm test # Run all tests
npm run test:watch # Run tests in watch modeSee docs/TESTING.md for detailed testing guidelines.
If you're also developing the CDK package (@aws/agentcore-cdk):
# In the CDK package directory
npm link
# In this directory
npm link @aws/agentcore-cdk- Create a test project:
cd /tmp && mkdir test-project && cd test-project
agentcore create- Link local CDK package in vended CDK:
cd agentcore/cdk
npm link @aws/agentcore-cdk- Test synth:
npm run cdk synth@aws/agentcore-cdk- CDK constructs used by vended projects
See the LICENSE file for our project's licensing. We will ask you to confirm the licensing of your contribution.