chore: README overhaul, dynamic version, domain migration, and docs alignment#112
Merged
chore: README overhaul, dynamic version, domain migration, and docs alignment#112
Conversation
added 2 commits
February 16, 2026 13:24
…lignment - Rewrite README to showcase multi-provider support, structured output, YouTube/arXiv sources, and stronger feature messaging - Replace hardcoded __version__ with importlib.metadata lookup - Migrate all URLs from seanbrar.github.io/pollux to polluxlib.dev - Align docs homepage and index.md vocabulary with README (tagline, feature bullets, model names) - Enable Codecov upload from a single CI matrix entry - Update uv.lock to 1.0.0-rc.2
…load The coverage path appended --cov flags to `make test`, which make can't parse (exit code 2). Add a `test-cov` target and call it directly when upload-coverage is true.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Rewrites the README to showcase multi-provider support, structured output, YouTube/arXiv sources, and stronger feature messaging. Migrates all doc URLs from
seanbrar.github.io/polluxtopolluxlib.dev, replaces the hardcoded__version__withimportlib.metadata, and aligns the docs homepage/index vocabulary with the new README.Related issue
None
Test plan
Non-behavioral change — docs, config URLs, and version metadata only. No library logic changed.
make checkpasses (lint, typecheck, 66 tests): all greenpython -c "from pollux import __version__; print(__version__)"→1.0.0rc2(confirmsimportlib.metadataresolution)docs/CNAMEcontainspolluxlib.devfor GitHub Pages custom domainNotes
__version__usesversion("pollux-ai")(the PyPI distribution name), not__name__(which resolves topollux, the import name). Falls back to"0.0.0+unknown"if the package isn't installed.make checkpasses