Add PyPI wheel packaging smoke test for bundled registry skills (#182).#254
Merged
rosspeili merged 1 commit intoJul 13, 2026
Merged
Conversation
…HLS#182). CI runs a separate wheel-smoke job that builds a wheel, installs it in a fresh venv without optional extras, and verifies every bundled skill via scripts/wheel_smoke_test.py. SkillLoader gains check_requirements=False for load-only packaging checks.
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
Adds a wheel-smoke CI job that validates the PyPI shipping path: build a wheel, install it in a fresh venv (base deps only — no
[all]or per-skill extras), and verify every bundled registry skill viascripts/wheel_smoke_test.py.SkillLoader.load_skill()gainscheck_requirements=Falseso the smoke test can load bundles for packaging checks without installing optional skill extras.Refs #182
What changed
scripts/wheel_smoke_test.py— checks bundle files, manifest/name parity, instructions/card assets; loads skills where possible; defers skills that need optional extras (expected).github/workflows/ci.yml— newwheel-smokejob (existingbuildjob unchanged)skillware/core/loader.py—check_requirements: bool = Truekwargtests/test_loader.py— coverage forcheck_requirements=FalseTESTING.md,CONTRIBUTING.md,ai_native_workflow.md.flake8/.gitignore— exclude local.venv-wheel-smoke/test venvType of change
SkillLoader.check_requirementsChecklist
Refs #182)black --checkandflake8pass locallypytest skills/andpytest tests/pass locally (266 passed)CHANGELOG.mdupdated under[Unreleased]examples/README.md— N/Atest_registry_docs.py— N/A (no skill/catalog changes)Test plan
python -m black --check .python -m flake8 .python -m pytest skills/ tests/scripts/wheel_smoke_test.pylocally (10 loaded, 3 deferred)wheel-smokejob passes on GitHub ActionsRelated issues
Refs #182