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:
- 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.
- Write tests for your changes and ensure all tests pass. At minimum, include related unit tests. Add composed tests when the change spans multiple internal components, and integration tests when it affects public API surfaces or end-to-end workflows. For isolated bug fixes where a unit test alone sufficiently covers the fix, composed or integration tests are not required. See TESTING.md for details on running tests, understanding the testing architecture, and the naming conventions (unit, composed, integration).
- Do not add conformance tests. If you believe your change warrants a conformance test, please mention it in your PR description or open an issue in the Conformance Tests repository.
- If your contribution includes new SDK features, API changes, or testing library enhancements, please also add or update examples in the examples package to demonstrate and validate these changes. Examples serve as both documentation and integration tests. See ADDING_EXAMPLES.md for implementation details.
- Commit to your fork using clear conventional commit messages.
- Send us a pull request with the title matching conventional commits, answering any default questions in the pull request interface. If the PR type has a scope, it must match
sdk,sdk-testing,examples,eslint-plugin, orci. For example:feat(sdk): add map handler functionalityorfix(sdk-testing): fix race condition in checkpoint server. - Pay attention to any automated CI failures reported in the pull request, and stay involved in the conversation.
Biome handles both, for JavaScript, TypeScript and JSON:
npm run lint:fix # format and lint, applying safe fixes
npm run lint # check only, no writesFormatting and lint errors both fail CI. A pre-commit hook runs lint:fix over
staged files, so in normal use this happens automatically — but --no-verify
skips it and CI does not.
Markdown and YAML are not formatted; Biome has no formatter for them and we do not run a second tool just for that.
If you have a branch that predates the move to Biome, expect formatting
differences on first push: Biome's output is not byte-identical to Prettier's.
npm run lint:fix resolves them in one pass.
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.
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.
See the LICENSE file for our project's licensing. We will ask you to confirm the licensing of your contribution.