Skip to content

Latest commit

 

History

History
42 lines (34 loc) · 1.56 KB

File metadata and controls

42 lines (34 loc) · 1.56 KB

Contributing

We welcome contributions to the Atlan Agent Toolkit! Please follow these guidelines when submitting pull requests:

  1. Create a New Branch:

    • Create a new branch for your changes.
    • Use a descriptive name for the branch (e.g., feature/add-new-tool).
  2. Make Your Changes:

    • Make your changes in the new branch.
    • Ensure your tools are well-defined and follow the MCP specification.
  3. Submit a Pull Request:

    • Push your changes to your branch.
    • Create a pull request against the main branch.
    • Provide a clear description of the changes and any related issues.
    • Ensure the PR passes all CI checks before requesting a review.
  4. Code Quality:

    • We use pre-commit hooks to maintain code quality.
    • Install pre-commit in your local environment:
      uv pip install pre-commit
      pre-commit install
    • Pre-commit will automatically run checks before each commit, including:
      • Code formatting with Ruff
      • Trailing whitespace removal
      • End-of-file fixing
      • YAML and JSON validation
      • Other quality checks
  5. Environment Setup:

  6. Documentation:

    • Update documentation to reflect your changes.
    • Add comments to your code where necessary.

Please open an issue or discussion for questions or suggestions before starting significant work!