[9.5.1] - 2026-04-03 - "npm Runtime Dependency Fix"
Patch release to restore
npx antigravity-awesome-skillsinstalls after the published CLI started failing to resolveyamlat runtime
This release fixes a packaging regression in 9.5.0. The installer entrypoint loads tools/lib/skill-utils.js, which depends on yaml, but the published npm package declared that module only as a development dependency. In clean npx environments this caused the installer to crash immediately with Error: Cannot find module 'yaml', as reported in issue #445.
New Skills
- None in this release —
9.5.1is a focused patch release for the published npm installer.
Improvements
- Runtime dependency fix: moved
yamlfromdevDependenciesto runtimedependenciesso the published CLI bundle installs everything required bytools/bin/install.jsandtools/lib/skill-utils.js. - Packaging regression coverage: extended the npm package contents test to assert that
yamlremains declared as a runtime dependency for the installer contract. - Installer verification: re-ran the package dry-run and installer-focused tests to confirm the published artifact and filtered install flow no longer reproduce the missing-module failure from issue
#445.
Credits
- Issue #445 reporter for isolating the
yamlpackaging regression in the published npm CLI artifact.