We love your input! We want to make contributing to Linear Claude Agent as easy and transparent as possible, whether it's:
- Reporting a bug
- Discussing the current state of the code
- Submitting a fix
- Proposing new features
- Becoming a maintainer
We use GitHub to host code, to track issues and feature requests, as well as accept pull requests.
- Fork the repo and create your branch from
main - If you've added code that should be tested, add tests
- Ensure the test suite passes
- Make sure your code follows the project style guidelines
- Issue a pull request
We use GitHub issues to track work. Here's how to do that effectively:
-
Bug Reports: When filing a bug report, include:
- A clear title and description
- As much relevant information as possible
- A code sample or test case demonstrating the issue
- Version information for Node.js and dependencies
-
Feature Requests: When proposing a feature, include:
- A clear title and description
- Explain why this feature would be useful
- Consider how it might impact existing functionality
- Clone the repository
- Create a
.envfile based on.env.example - Install dependencies with
pnpm install - Run the tests with
pnpm test - Start the development server with
pnpm run dev
Please make sure to write and run tests for any new code. We use Jest for testing.
- Run all tests:
npm test - Run specific tests:
npm test -- path/to/test.mjs
- Use ESM modules rather than CommonJS
- Follow the existing code structure and organization
- Use JSDoc comments for functions and classes
- Format code consistently with the existing codebase
By contributing, you agree that your contributions will be licensed under the project's MIT License.