🔧 Add agent setup files with tox and dependency groups #59
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR adds comprehensive tooling and documentation to enable GitHub Copilot agents (and other AI coding assistants) to work effectively with the sphinx-codelinks project.
Summary
Add agent documentation, GitHub Copilot setup workflow, tox configuration for standardized development, and PEP 735 dependency groups for modern dependency management.
Inspiration
This PR follows patterns established in these repositories:
Changes
New Files
AGENTS.mdModified Files
pyproject.toml[dependency-groups]section withtesting,docs,mypy,ruff, andbuildgroups (PEP 735)Details
AGENTS.md highlights
tox.ini environments
py{312,313,314}-sphinx{7,8,9}— Test matrix across Python and Sphinx versionsdocs— Documentation building with CLEAN/BUILDER env var supportmypy— Type checkingruff-check/ruff-fmt— Linting and formattingpyproject.toml dependency groups
testing— pytest, syrupy, coverage toolsdocs— Sphinx themes and documentation extensionsmypy— Type checking and stub packagesruff— Linting/formattingbuild— Build and packaging tools