Release target: capsolver-agent version 0.1.0, prepared for public release
on 2026-09-01.
This checklist is for maintainers syncing the prepared public files to the official open-source repository, testing the package on TestPyPI, and then publishing the final package to PyPI.
Publish capsolver-core==0.1.0 first. This package depends on
capsolver-core>=0.1.0.
- The source is the prepared public copy, not a private development checkout.
capsolver-core==0.1.0has already passed TestPyPI testing before this package is tested.capsolver-core==0.1.0is already available on PyPI before this package is formally published.pyproject.tomlhasversion = "0.1.0".CHANGELOG.mdhas## [0.1.0] - 2026-09-01.README.md,LICENSE,SECURITY.md,CONTRIBUTING.md, andSUPPORT.mdare present.- Documentation examples use placeholder credentials only.
- The tree does not contain
.git,.venv,uv.lock, caches, local path overrides, real API keys, browser profiles, prompts, tool traces, or private service data.
Copy this directory into the official capsolver-agent public repository
working tree, then review the diff before committing.
git status
git diff
git add .
git commit -m "Release v0.1.0"
git statusDo not tag until the build, TestPyPI upload, and install test have passed.
uv sync --all-extras
uv run pytest
uv run ruff check src tests
uv run mypy srcpython -m pip install --upgrade build twine
python -m build
python -m twine check dist/*Inspect the source distribution and wheel before upload. Confirm that no private files, local paths, secrets, browser profiles, caches, prompts, tool traces, or test output are included.
Upload the exact distribution files to TestPyPI first.
python -m twine upload --repository testpypi dist/*Install from TestPyPI in a clean environment and smoke-test the CLI import path. Use PyPI as an extra index so normal third-party dependencies can still resolve.
python -m pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ capsolver-agent==0.1.0
python -c "import capsolver_agent; print(capsolver_agent.__version__)"
capsolver-agent --helpPyPI and TestPyPI distributions cannot be overwritten. If the test upload is wrong, fix the issue and publish a new version.
After TestPyPI passes and capsolver-core==0.1.0 is available from PyPI, upload
the same checked distribution files to PyPI.
python -m twine upload dist/*Then verify installation from PyPI.
python -m pip install capsolver-agent==0.1.0
python -c "import capsolver_agent; print(capsolver_agent.__version__)"
capsolver-agent --helpWhen the PyPI release is verified, create the release tag and push it from the official public repository.
git tag v0.1.0
git push origin main
git push origin v0.1.0Create a GitHub Release for v0.1.0 using the CHANGELOG.md entry.
Prefer PyPI Trusted Publishing from the official public GitHub repository for future releases. If manual upload is used, use a project-scoped PyPI API token instead of an account password.