phenoradar 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. phenoradar-0.1.0/.github/workflows/ci.yml +52 -0
  2. phenoradar-0.1.0/.github/workflows/release-please.yml +27 -0
  3. phenoradar-0.1.0/.github/workflows/release.yml +97 -0
  4. phenoradar-0.1.0/.gitignore +214 -0
  5. phenoradar-0.1.0/.pre-commit-config.yaml +13 -0
  6. phenoradar-0.1.0/CHANGELOG.md +13 -0
  7. phenoradar-0.1.0/LICENSE +21 -0
  8. phenoradar-0.1.0/PKG-INFO +57 -0
  9. phenoradar-0.1.0/README.md +33 -0
  10. phenoradar-0.1.0/docs/cli-reference.md +176 -0
  11. phenoradar-0.1.0/docs/configuration.md +375 -0
  12. phenoradar-0.1.0/docs/data-format.md +86 -0
  13. phenoradar-0.1.0/docs/output-artifacts.md +362 -0
  14. phenoradar-0.1.0/docs/pipeline-details.md +208 -0
  15. phenoradar-0.1.0/docs/quickstart.md +199 -0
  16. phenoradar-0.1.0/docs/release-automation.md +75 -0
  17. phenoradar-0.1.0/pyproject.toml +69 -0
  18. phenoradar-0.1.0/src/phenoradar/__init__.py +31 -0
  19. phenoradar-0.1.0/src/phenoradar/bundle.py +591 -0
  20. phenoradar-0.1.0/src/phenoradar/cli.py +1246 -0
  21. phenoradar-0.1.0/src/phenoradar/config/__init__.py +18 -0
  22. phenoradar-0.1.0/src/phenoradar/config/io.py +87 -0
  23. phenoradar-0.1.0/src/phenoradar/config/schema.py +351 -0
  24. phenoradar-0.1.0/src/phenoradar/cv.py +2552 -0
  25. phenoradar-0.1.0/src/phenoradar/figures.py +826 -0
  26. phenoradar-0.1.0/src/phenoradar/interpret.py +189 -0
  27. phenoradar-0.1.0/src/phenoradar/launcher.py +74 -0
  28. phenoradar-0.1.0/src/phenoradar/model_selection.py +290 -0
  29. phenoradar-0.1.0/src/phenoradar/provenance.py +103 -0
  30. phenoradar-0.1.0/src/phenoradar/reporting.py +469 -0
  31. phenoradar-0.1.0/src/phenoradar/split.py +318 -0
  32. phenoradar-0.1.0/src/phenoradar/testdata.py +113 -0
  33. phenoradar-0.1.0/testdata/c4_tiny/README.md +17 -0
  34. phenoradar-0.1.0/testdata/c4_tiny/SHA256SUMS +2 -0
  35. phenoradar-0.1.0/testdata/c4_tiny/species_metadata.tsv +21 -0
  36. phenoradar-0.1.0/testdata/c4_tiny/tpm.tsv +1516 -0
  37. phenoradar-0.1.0/tests/bundle/test_bundle.py +713 -0
  38. phenoradar-0.1.0/tests/bundle/test_bundle_internal.py +342 -0
  39. phenoradar-0.1.0/tests/cli/test_cli_config_commands.py +1552 -0
  40. phenoradar-0.1.0/tests/cli/test_launcher.py +130 -0
  41. phenoradar-0.1.0/tests/config/test_io.py +575 -0
  42. phenoradar-0.1.0/tests/cv/test_cv.py +2633 -0
  43. phenoradar-0.1.0/tests/figures/test_figures.py +734 -0
  44. phenoradar-0.1.0/tests/interpret/test_interpret.py +183 -0
  45. phenoradar-0.1.0/tests/model_selection/test_model_selection.py +574 -0
  46. phenoradar-0.1.0/tests/provenance/test_provenance.py +123 -0
  47. phenoradar-0.1.0/tests/report/test_reporting.py +717 -0
  48. phenoradar-0.1.0/tests/split/test_split.py +563 -0
  49. phenoradar-0.1.0/uv.lock +1440 -0
@@ -0,0 +1,52 @@
1
+ name: ci
2
+
3
+ on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
+
8
+ concurrency:
9
+ group: ci-${{ github.workflow }}-${{ github.ref }}
10
+ cancel-in-progress: true
11
+
12
+ permissions:
13
+ contents: read
14
+
15
+ env:
16
+ OPENBLAS_NUM_THREADS: "1"
17
+ OMP_NUM_THREADS: "1"
18
+ MKL_NUM_THREADS: "1"
19
+ NUMEXPR_NUM_THREADS: "1"
20
+ POLARS_MAX_THREADS: "1"
21
+
22
+ jobs:
23
+ test:
24
+ name: test / py${{ matrix.python-version }}
25
+ runs-on: ubuntu-latest
26
+ timeout-minutes: 30
27
+ strategy:
28
+ fail-fast: false
29
+ matrix:
30
+ python-version: ["3.12", "3.13", "3.14"]
31
+ steps:
32
+ - uses: actions/checkout@v4
33
+ - uses: actions/setup-python@v5
34
+ with:
35
+ python-version: ${{ matrix.python-version }}
36
+ - uses: astral-sh/setup-uv@v5
37
+ - name: Cache uv
38
+ uses: actions/cache@v4
39
+ with:
40
+ path: ~/.cache/uv
41
+ key: uv-${{ runner.os }}-py${{ matrix.python-version }}-${{ hashFiles('uv.lock') }}
42
+ restore-keys: |
43
+ uv-${{ runner.os }}-py${{ matrix.python-version }}-
44
+ uv-${{ runner.os }}-
45
+ - name: Install dependencies
46
+ run: uv sync --extra dev --frozen
47
+ - name: Ruff
48
+ run: uv run ruff check .
49
+ - name: Mypy
50
+ run: uv run mypy src
51
+ - name: Pytest
52
+ run: uv run pytest -q
@@ -0,0 +1,27 @@
1
+ name: release-please
2
+
3
+ on:
4
+ push:
5
+ branches: [main]
6
+
7
+ concurrency:
8
+ group: release-please-${{ github.workflow }}-${{ github.ref }}
9
+ cancel-in-progress: true
10
+
11
+ permissions:
12
+ contents: write
13
+ pull-requests: write
14
+
15
+ jobs:
16
+ release-please:
17
+ runs-on: ubuntu-latest
18
+ timeout-minutes: 15
19
+ steps:
20
+ - name: Run release-please
21
+ uses: googleapis/release-please-action@v4
22
+ with:
23
+ token: ${{ secrets.RELEASE_PLEASE_TOKEN || github.token }}
24
+ release-type: python
25
+ package-name: phenoradar
26
+ include-component-in-tag: false
27
+ include-v-in-tag: true
@@ -0,0 +1,97 @@
1
+ name: release
2
+
3
+ on:
4
+ push:
5
+ tags:
6
+ - "v*"
7
+
8
+ concurrency:
9
+ group: release-${{ github.workflow }}-${{ github.ref }}
10
+ cancel-in-progress: true
11
+
12
+ permissions:
13
+ contents: read
14
+
15
+ jobs:
16
+ build:
17
+ runs-on: ubuntu-latest
18
+ timeout-minutes: 30
19
+ steps:
20
+ - uses: actions/checkout@v4
21
+ - uses: actions/setup-python@v5
22
+ with:
23
+ python-version: "3.12"
24
+ - uses: astral-sh/setup-uv@v5
25
+ - name: Cache uv
26
+ uses: actions/cache@v4
27
+ with:
28
+ path: ~/.cache/uv
29
+ key: uv-${{ runner.os }}-release-${{ hashFiles('uv.lock') }}
30
+ restore-keys: |
31
+ uv-${{ runner.os }}-release-
32
+ uv-${{ runner.os }}-
33
+ - name: Validate tag version matches pyproject
34
+ run: |
35
+ python - <<'PY'
36
+ import os
37
+ import sys
38
+ import tomllib
39
+ from pathlib import Path
40
+
41
+ pyproject = tomllib.loads(Path("pyproject.toml").read_text(encoding="utf-8"))
42
+ version = pyproject["project"]["version"]
43
+ tag = os.environ["GITHUB_REF_NAME"]
44
+ expected_tag = f"v{version}"
45
+ if tag != expected_tag:
46
+ print(
47
+ f"Tag/version mismatch: got {tag}, expected {expected_tag} from pyproject.toml",
48
+ file=sys.stderr,
49
+ )
50
+ sys.exit(1)
51
+ print(f"Validated release tag: {tag}")
52
+ PY
53
+ - name: Build distributions
54
+ run: uv run --with build python -m build
55
+ - name: Check distributions
56
+ run: uv run --with twine twine check dist/*
57
+ - name: Upload dist artifacts
58
+ uses: actions/upload-artifact@v4
59
+ with:
60
+ name: dist
61
+ path: dist/*
62
+ if-no-files-found: error
63
+
64
+ publish-pypi:
65
+ needs: build
66
+ runs-on: ubuntu-latest
67
+ timeout-minutes: 15
68
+ permissions:
69
+ id-token: write
70
+ steps:
71
+ - name: Download dist artifacts
72
+ uses: actions/download-artifact@v4
73
+ with:
74
+ name: dist
75
+ path: dist
76
+ - name: Publish to PyPI
77
+ uses: pypa/gh-action-pypi-publish@release/v1
78
+ with:
79
+ packages-dir: dist
80
+
81
+ github-release:
82
+ needs: [build, publish-pypi]
83
+ runs-on: ubuntu-latest
84
+ timeout-minutes: 15
85
+ permissions:
86
+ contents: write
87
+ steps:
88
+ - name: Download dist artifacts
89
+ uses: actions/download-artifact@v4
90
+ with:
91
+ name: dist
92
+ path: dist
93
+ - name: Upload dist assets to GitHub release
94
+ uses: softprops/action-gh-release@v2
95
+ with:
96
+ files: dist/*
97
+ fail_on_unmatched_files: true
@@ -0,0 +1,214 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[codz]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ share/python-wheels/
24
+ *.egg-info/
25
+ .installed.cfg
26
+ *.egg
27
+ MANIFEST
28
+
29
+ # PyInstaller
30
+ # Usually these files are written by a python script from a template
31
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
32
+ *.manifest
33
+ *.spec
34
+
35
+ # Installer logs
36
+ pip-log.txt
37
+ pip-delete-this-directory.txt
38
+
39
+ # Unit test / coverage reports
40
+ htmlcov/
41
+ .tox/
42
+ .nox/
43
+ .coverage
44
+ .coverage.*
45
+ .cache
46
+ nosetests.xml
47
+ coverage.xml
48
+ *.cover
49
+ *.py.cover
50
+ .hypothesis/
51
+ .pytest_cache/
52
+ cover/
53
+
54
+ # Translations
55
+ *.mo
56
+ *.pot
57
+
58
+ # Django stuff:
59
+ *.log
60
+ local_settings.py
61
+ db.sqlite3
62
+ db.sqlite3-journal
63
+
64
+ # Flask stuff:
65
+ instance/
66
+ .webassets-cache
67
+
68
+ # Scrapy stuff:
69
+ .scrapy
70
+
71
+ # Sphinx documentation
72
+ docs/_build/
73
+
74
+ # PyBuilder
75
+ .pybuilder/
76
+ target/
77
+
78
+ # Jupyter Notebook
79
+ .ipynb_checkpoints
80
+
81
+ # IPython
82
+ profile_default/
83
+ ipython_config.py
84
+
85
+ # pyenv
86
+ # For a library or package, you might want to ignore these files since the code is
87
+ # intended to run in multiple environments; otherwise, check them in:
88
+ # .python-version
89
+
90
+ # pipenv
91
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
92
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
93
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
94
+ # install all needed dependencies.
95
+ #Pipfile.lock
96
+
97
+ # UV
98
+ # Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
99
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
100
+ # commonly ignored for libraries.
101
+ #uv.lock
102
+
103
+ # poetry
104
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
105
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
106
+ # commonly ignored for libraries.
107
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
108
+ #poetry.lock
109
+ #poetry.toml
110
+
111
+ # pdm
112
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
113
+ # pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
114
+ # https://pdm-project.org/en/latest/usage/project/#working-with-version-control
115
+ #pdm.lock
116
+ #pdm.toml
117
+ .pdm-python
118
+ .pdm-build/
119
+
120
+ # pixi
121
+ # Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
122
+ #pixi.lock
123
+ # Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
124
+ # in the .venv directory. It is recommended not to include this directory in version control.
125
+ .pixi
126
+
127
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
128
+ __pypackages__/
129
+
130
+ # Celery stuff
131
+ celerybeat-schedule
132
+ celerybeat.pid
133
+
134
+ # SageMath parsed files
135
+ *.sage.py
136
+
137
+ # Environments
138
+ .env
139
+ .envrc
140
+ .venv
141
+ env/
142
+ venv/
143
+ ENV/
144
+ env.bak/
145
+ venv.bak/
146
+
147
+ # Spyder project settings
148
+ .spyderproject
149
+ .spyproject
150
+
151
+ # Rope project settings
152
+ .ropeproject
153
+
154
+ # mkdocs documentation
155
+ /site
156
+
157
+ # mypy
158
+ .mypy_cache/
159
+ .dmypy.json
160
+ dmypy.json
161
+
162
+ # Pyre type checker
163
+ .pyre/
164
+
165
+ # pytype static type analyzer
166
+ .pytype/
167
+
168
+ # Cython debug symbols
169
+ cython_debug/
170
+
171
+ # PyCharm
172
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
173
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
174
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
175
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
176
+ #.idea/
177
+
178
+ # Abstra
179
+ # Abstra is an AI-powered process automation framework.
180
+ # Ignore directories containing user credentials, local state, and settings.
181
+ # Learn more at https://abstra.io/docs
182
+ .abstra/
183
+
184
+ # Visual Studio Code
185
+ # Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
186
+ # that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
187
+ # and can be added to the global gitignore or merged into this file. However, if you prefer,
188
+ # you could uncomment the following to ignore the entire vscode folder
189
+ # .vscode/
190
+
191
+ # Ruff stuff:
192
+ .ruff_cache/
193
+
194
+ # PyPI configuration file
195
+ .pypirc
196
+
197
+ # Cursor
198
+ # Cursor is an AI-powered code editor. `.cursorignore` specifies files/directories to
199
+ # exclude from AI features like autocomplete and code analysis. Recommended for sensitive data
200
+ # refer to https://docs.cursor.com/context/ignore-files
201
+ .cursorignore
202
+ .cursorindexingignore
203
+
204
+ # Marimo
205
+ marimo/_static/
206
+ marimo/_lsp/
207
+ __marimo__/
208
+
209
+ # Local datasets
210
+ c4_dataset/
211
+
212
+ # PhenoRadar generated artifacts
213
+ runs/
214
+ reports/
@@ -0,0 +1,13 @@
1
+ repos:
2
+ - repo: https://github.com/astral-sh/ruff-pre-commit
3
+ rev: v0.6.9
4
+ hooks:
5
+ - id: ruff-check
6
+ - id: ruff-format
7
+ - repo: https://github.com/pre-commit/mirrors-mypy
8
+ rev: v1.11.2
9
+ hooks:
10
+ - id: mypy
11
+ additional_dependencies:
12
+ - pydantic>=2.9.2,<3.0.0
13
+ - typer>=0.12.5,<1.0.0
@@ -0,0 +1,13 @@
1
+ # Changelog
2
+
3
+ ## 0.1.0 (2026-02-28)
4
+
5
+
6
+ ### Features
7
+
8
+ * PhenoRadar baseline ([0081f23](https://github.com/mkrg01/phenoradar/commit/0081f2384339810ec449288c5532dad5ad104338))
9
+
10
+
11
+ ### Documentation
12
+
13
+ * update Python badge for supported versions ([c9f9417](https://github.com/mkrg01/phenoradar/commit/c9f9417516f4b840d029460828f000ea6977ccf8))
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Tomoya Nishiguchi
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,57 @@
1
+ Metadata-Version: 2.4
2
+ Name: phenoradar
3
+ Version: 0.1.0
4
+ Summary: Macroevolutionary phenotype predictor
5
+ Author-email: Tomoya Nishiguchi <t.nishiguchi5@gmail.com>
6
+ License-File: LICENSE
7
+ Requires-Python: >=3.12
8
+ Requires-Dist: joblib<2.0.0,>=1.4.2
9
+ Requires-Dist: matplotlib<4.0.0,>=3.9.2
10
+ Requires-Dist: optuna<5.0.0,>=4.0.0
11
+ Requires-Dist: polars<2.0.0,>=1.9.0
12
+ Requires-Dist: pydantic<3.0.0,>=2.9.2
13
+ Requires-Dist: pyyaml<7.0.0,>=6.0.2
14
+ Requires-Dist: scikit-learn<2.0.0,>=1.5.2
15
+ Requires-Dist: typer<1.0.0,>=0.12.5
16
+ Provides-Extra: dev
17
+ Requires-Dist: mypy<2.0.0,>=1.11.2; extra == 'dev'
18
+ Requires-Dist: pre-commit<4.0.0,>=3.8.0; extra == 'dev'
19
+ Requires-Dist: pytest-cov<6.0.0,>=5.0.0; extra == 'dev'
20
+ Requires-Dist: pytest<9.0.0,>=8.3.3; extra == 'dev'
21
+ Requires-Dist: ruff<1.0.0,>=0.6.9; extra == 'dev'
22
+ Requires-Dist: types-pyyaml<7.0.0,>=6.0.12.20250915; extra == 'dev'
23
+ Description-Content-Type: text/markdown
24
+
25
+ # phenoradar
26
+
27
+ [![CI](https://github.com/mkrg01/phenoradar/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/mkrg01/phenoradar/actions/workflows/ci.yml) [![PyPI](https://img.shields.io/pypi/v/phenoradar.svg)](https://pypi.org/project/phenoradar/) [![Python](https://img.shields.io/badge/python-3.12%20%7C%203.13%20%7C%203.14-blue.svg)](https://www.python.org/downloads/) [![License](https://img.shields.io/github/license/mkrg01/phenoradar.svg)](LICENSE)
28
+
29
+ ## Overview
30
+
31
+ PhenoRadar is a CLI tool for binary phenotype prediction from orthogroup-level TPM.
32
+
33
+ ## Install
34
+
35
+ ```bash
36
+ pip install phenoradar
37
+ ```
38
+
39
+ ## Fastest Run
40
+
41
+ Fetch compact test data, materialize default config, then run:
42
+
43
+ ```bash
44
+ phenoradar dataset
45
+ phenoradar config
46
+ phenoradar run -c config.yml
47
+ ```
48
+
49
+ ## Documentation (Recommended Order)
50
+
51
+ 1. [docs/quickstart.md](docs/quickstart.md): first successful run, full run, and prediction.
52
+ 2. [docs/data-format.md](docs/data-format.md): required metadata/expression TSV schema.
53
+ 3. [docs/configuration.md](docs/configuration.md): config behavior, defaults, and key-by-key definitions.
54
+ 4. [docs/cli-reference.md](docs/cli-reference.md): all commands and options.
55
+ 5. [docs/output-artifacts.md](docs/output-artifacts.md): output files, column-level details, and interpretation guidance.
56
+ 6. [docs/pipeline-details.md](docs/pipeline-details.md): internal execution behavior.
57
+ 7. [docs/release-automation.md](docs/release-automation.md): release workflow and PyPI publishing.
@@ -0,0 +1,33 @@
1
+ # phenoradar
2
+
3
+ [![CI](https://github.com/mkrg01/phenoradar/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/mkrg01/phenoradar/actions/workflows/ci.yml) [![PyPI](https://img.shields.io/pypi/v/phenoradar.svg)](https://pypi.org/project/phenoradar/) [![Python](https://img.shields.io/badge/python-3.12%20%7C%203.13%20%7C%203.14-blue.svg)](https://www.python.org/downloads/) [![License](https://img.shields.io/github/license/mkrg01/phenoradar.svg)](LICENSE)
4
+
5
+ ## Overview
6
+
7
+ PhenoRadar is a CLI tool for binary phenotype prediction from orthogroup-level TPM.
8
+
9
+ ## Install
10
+
11
+ ```bash
12
+ pip install phenoradar
13
+ ```
14
+
15
+ ## Fastest Run
16
+
17
+ Fetch compact test data, materialize default config, then run:
18
+
19
+ ```bash
20
+ phenoradar dataset
21
+ phenoradar config
22
+ phenoradar run -c config.yml
23
+ ```
24
+
25
+ ## Documentation (Recommended Order)
26
+
27
+ 1. [docs/quickstart.md](docs/quickstart.md): first successful run, full run, and prediction.
28
+ 2. [docs/data-format.md](docs/data-format.md): required metadata/expression TSV schema.
29
+ 3. [docs/configuration.md](docs/configuration.md): config behavior, defaults, and key-by-key definitions.
30
+ 4. [docs/cli-reference.md](docs/cli-reference.md): all commands and options.
31
+ 5. [docs/output-artifacts.md](docs/output-artifacts.md): output files, column-level details, and interpretation guidance.
32
+ 6. [docs/pipeline-details.md](docs/pipeline-details.md): internal execution behavior.
33
+ 7. [docs/release-automation.md](docs/release-automation.md): release workflow and PyPI publishing.