feat(module): add openssh, apt-file, xdg-utils, snapd; fold pynvim into neovim - #388
Merged
Conversation
…to neovim Final small-tools modularization leftovers. openssh (client+server), apt-file (with best-effort cache seed), xdg-utils, snapd as apt modules with the 10 lifecycle contract + real doctor(). pynvim provisioned via the neovim module (python provider) rather than a standalone module; bashtop skipped (superseded by btop). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01NX5H2vuMTv4mBmjpPYoS3s
ycpss91255
enabled auto-merge (squash)
July 12, 2026 17:00
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
Fills the remaining apt-module gaps from the leftovers sweep plus one
provider fold-in. All modules satisfy the 10-function module contract
(ADR-0002), auto-verified by the #305 contract-conformance meta-test which
dynamically discovers every
module/*.module.sh.New apt modules (+ unit specs)
openssh-client/openssh-server).xdg-open, etc.).Neovim: pynvim folded in as a python provider
pynvimis a Python client library (not a standalone CLI), so it is not itsown module. It is now provisioned inside
module/neovim.module.shvia thepython3-pynvimapt package as a documented dependency of the editor(nvimdots' python-backed plugins and
:checkhealth provider.pythonexpectit). Provisioning is best-effort: dry-run logs the step, a missing
apt-getor a failed install only warns and never abortsinstall()— theeditor is fully usable without the provider. Three new tests in
test/unit/module/neovim_spec.batscover the dry-run log, the no-op whenapt-get is absent, and the never-abort-on-failure contract.
Skipped
module).
Test plan
just -f justfile.ci test-unit— green (7426 tests, 0 failures)just -f justfile.ci test-integration— green (0 failures)just -f justfile.ci lint— green (ShellCheck / fish / Hadolint OK)