# Contributing to AWX n8n Node

We welcome contributions from the community! Here's how to get started.

## Development Setup
1. Fork the repository
2. Clone your fork locally
3. Install dependencies:
   ```bash
   npm install
   ```
4. Create a feature branch
5. Make your changes
6. Run tests and build:
   ```bash
   npm test
   npm run build
   ```
7. Commit your changes with a descriptive message
8. Push to your fork and open a pull request

## Contribution Guidelines
- Follow existing code style
- Add tests for new features
- Update documentation when adding/changing functionality
- Keep commits focused and atomic
- Reference any related issues in your PR

## Reporting Issues
Please include:
- n8n and AWX versions
- Steps to reproduce
- Expected vs actual behavior
- Relevant error logs

## Code Review Process
- Maintainers will review PRs
- Two approvals required before merging
- CI must pass all tests
