feat(config): compose runtime config files#461
Merged
Conversation
wolfy-j
force-pushed
the
feat/lock-local-overlay
branch
from
July 15, 2026 00:46
6852712 to
4d6212e
Compare
wolfy-j
force-pushed
the
feat/lock-local-overlay
branch
from
July 15, 2026 01:25
518c1df to
55dd6b0
Compare
wolfy-j
force-pushed
the
feat/lock-local-overlay
branch
from
July 15, 2026 01:53
55dd6b0 to
9e186a9
Compare
Co-authored-by: Wolfy-J <wolfy.jd@gmail.com>
wolfy-j
force-pushed
the
feat/lock-local-overlay
branch
from
July 15, 2026 02:05
9e186a9 to
2626d84
Compare
wolfy-j
approved these changes
Jul 15, 2026
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.
Why
Runtime environments need to compose settings without mutating the shared project baseline or inventing reserved local filenames. Workspace checkout paths are runtime/environment state, while
wippy.lockremains the portable exact dependency snapshot.What
--configis now repeatable on runtime commands:--config,.wippy.yamlremains the optional default.boot.config_paths.--setapply last.wippy initdoes not modify ignore rules.Any selected config can declare environment state, including multiple workspace replacements:
wippy run,install,update,lint, registry commands, and packing all consume the same composition path.Dependency and history behavior
wippy.lockremains the portable exact module/version snapshot. Effective workspace replacements alter the load graph but are never serialized into the lock.Publishing safeguards
--configstack is not a publishing input;publish --configremains the module-manifest directory option.workspaceconfiguration is unconditionally removed from published runtime metadata.publish.profiles.includeexplicitly selects publishable non-workspace profiles.include: []publishes none; an unknown profile fails.For compatibility, omitting
includekeeps the previous behavior for non-workspace profiles only.Validation
go test ./...: pass.make lint: clean.--setboot successfully; a missing explicit file fails immediately.