Skip to content

Contributing to Fawkes

Thank you for your interest in contributing to Fawkes! This guide will help you get started with contributing to the project.

Development Workflow

1. Trunk-Based Development

We follow trunk-based development practices:

# Clone the repository
git clone https://github.com/paruff/fawkes.git
cd fawkes

# Create a feature branch
git checkout -b feature/your-feature-name

# Make your changes
# Commit frequently with clear messages
git add .
git commit -m "feat: description of your change"

# Push your changes
git push origin feature/your-feature-name

2. Development Guidelines

Guideline Description
Branch Lifetime Merge within 24 hours
Testing Include tests with all changes
Documentation Update relevant docs
CI/CD Ensure all checks pass

Adding New Content

Documentation

---
title: Your Page Title
description: Brief description of the page content
---

# Your Page Title

Content goes here following the standard format:
- Use H2 (##) for main sections
- Use tables for structured information
- Include related links

Implementation Patterns

When adding new patterns:

  1. Create pattern file in docs/patterns/
  2. Add to navigation in mkdocs.yml
  3. Link from relevant capabilities
  4. Include example implementations

Tool Integration

When adding new tools:

  1. Create tool doc in docs/tools/
  2. Add to navigation in mkdocs.yml
  3. Link from relevant patterns
  4. Include configuration examples

Testing Changes

# Install dependencies
pip install -r requirements.txt

# Run local development server
mkdocs serve

# Build documentation
mkdocs build

Submitting Changes

  1. Create Issue
  2. Describe the problem or enhancement
  3. Reference related DORA capabilities

  4. Submit Pull Request

  5. Reference the issue
  6. Include clear description
  7. Update documentation
  8. Add tests if applicable

  9. Review Process

  10. Peer review required
  11. All checks must pass
  12. Documentation updated

Getting Help

  • Create an issue on GitHub
  • Join our community discussions
  • Review existing documentation

View Style Guide GitHub Repository