# CODEOWNERS file for Codomyrmex
# This file defines code ownership for automatic PR review requests
# See: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners

# Global owners - all files default to these owners
* @docxology

# GitHub configuration and workflows
/.github/ @docxology
/.github/PULL_REQUEST_TEMPLATE.md @docxology
/.github/CODEOWNERS @docxology
/.github/dependabot.yml @docxology

# Core source code
/src/ @docxology
/src/codomyrmex/ @docxology

# Documentation
/docs/ @docxology
/README.md @docxology
/AGENTS.md @docxology
/SECURITY.md @docxology

# Configuration files
/pyproject.toml @docxology
/uv.lock @docxology
/requirements.txt @docxology
/pytest.ini @docxology
/Makefile @docxology

# Scripts and automation
/scripts/ @docxology

# Testing
/testing/ @docxology
/tests/ @docxology

# CI/CD and build configuration
/.cursorrules/ @docxology

# Note: Replace @docxology with actual GitHub usernames or team names
# Example formats:
# * @username
# * @org/team-name
# * @username1 @username2


