fix: narrow the canonical workspace manifest - #14
Merged
codeforester merged 1 commit intoSep 9, 2026
Conversation
codeforester
deleted the
enhancement/13-20260909-narrow-the-canonical-workspace-manifest-to-the-base-ecosyste
branch
September 9, 2026 00:43
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
Narrows the canonical workspace manifest to Base itself, its required source/workspace dependencies, and optional first-party demos. It removes personal projects and adjacent integration repositories from the default Base workspace scope.
Issue
Closes #13
Validation
./tests/validate.shruby -e 'require "yaml"; data = YAML.load_file("workspace.yaml"); abort "invalid manifest" unless data.dig("repos").is_a?(Array) && data["repos"].length == 7; puts "workspace.yaml parsed: #{data["repos"].length} repositories"'\n- Base workspace clone dry run with an empty temporary workspace\n-git diff --check\n\nThe dry run planned the four required repositories (base,base-bash-libs,base-cli, andbase-workspace) and skipped the three optional first-party demos.\n\n## Notes\n\nThis does not delete or move any local checkout. Personal and adjacent integration repositories can use a separate manifest later.\n\n## Checklist\n\n- [x] Branch name follows<category>-<issue>-<date>-<slug>policy.\n- [x] PR is scoped to issue Narrow the canonical workspace manifest to the Base ecosystem #13.\n- [x] README, changelog, and repository validation reflect the manifest boundary.\n- [x] Relevant local validation passes.