From ab9b244433e0241a7253710efaecbdb2aad62c4d Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 3 Jun 2026 21:47:46 +0000 Subject: [PATCH 1/2] Complete Repository Layout section in AGENTS.md --- AGENTS.md | 37 ++++++++++++++++++++++++++++++++++++- 1 file changed, 36 insertions(+), 1 deletion(-) diff --git a/AGENTS.md b/AGENTS.md index 4ec00aa..b57f145 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -22,7 +22,42 @@ See @pyproject.toml for project metadata and dependencies. ### Repository Layout ``` -TODO +.agents/ # LLM assistant skills and context + skills/ + create-pr/ + SKILL.md + dependencies-management/ + SKILL.md + update-agents-md/ + SKILL.md +.github/ # GitHub configuration and CI/CD workflows + workflows/ + build-test.yml # Runs full test suite on platform/python matrix + draft-release-notes.yml # Drafts release notes from merged PRs + release.yml # Releases a new version to PyPI + release-drafter.yml # Configuration for release notes drafter +docs/ # Documentation and example notebooks + tutorials/ + tutorial.ipynb # Walk-through of all functionality + readme_examples.ipynb # README examples with explanatory comments +src/ + valimp/ + valimp.py # Single-module source implementing all functionality +tests/ + test_valimp.py +.pre-commit-config.yaml +.python-version # Pinned python version +AGENTS.md +CLAUDE.md +LICENSE.txt +MANIFEST.in # Specifies non-python files for source distribution +README.md +mypy.ini +pyproject.toml +pytest.ini +requirements.txt +ruff.toml +uv.lock ``` ## Technology Stack From 9ad62aa4dc2b5393a09c3bd8c0e5469302925f8b Mon Sep 17 00:00:00 2001 From: Marcus Read Date: Wed, 3 Jun 2026 22:52:29 +0100 Subject: [PATCH 2/2] Manual revisions --- AGENTS.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index b57f145..eed7787 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -36,21 +36,21 @@ See @pyproject.toml for project metadata and dependencies. draft-release-notes.yml # Drafts release notes from merged PRs release.yml # Releases a new version to PyPI release-drafter.yml # Configuration for release notes drafter -docs/ # Documentation and example notebooks +docs/ # Documentation tutorials/ tutorial.ipynb # Walk-through of all functionality - readme_examples.ipynb # README examples with explanatory comments + readme_examples.ipynb # README examples src/ valimp/ valimp.py # Single-module source implementing all functionality tests/ - test_valimp.py + test_valimp.py # All tests (comprehensive test suite) .pre-commit-config.yaml .python-version # Pinned python version AGENTS.md CLAUDE.md LICENSE.txt -MANIFEST.in # Specifies non-python files for source distribution +MANIFEST.in README.md mypy.ini pyproject.toml