Prepare dev.kit 0.20.1 context scaffold fixes#30
Merged
Conversation
c7a5ae0 to
235e407
Compare
There was a problem hiding this comment.
Pull request overview
This PR prepares the repo for the post-0.20.0 patch release by tightening declared root YAML contract manifest discovery to respect gitignore-aligned file filtering, and by improving the default repo scaffold to include a Rabbit-facing README in .rabbit/.
Changes:
- Update root YAML manifest discovery to use repo “content files” filtering (so gitignored root YAML isn’t promoted into generated context).
- Add scaffolding for
.rabbit/README.md(and add/adjust tests to ensure it’s created only when missing and never overwrites an existing one). - Bump version metadata to
0.20.1and document the release inchanges.md.
Reviewed changes
Copilot reviewed 6 out of 7 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
tests/suite.sh |
Adds regression coverage for excluding gitignored root YAML manifests; validates .rabbit/README.md scaffolding behavior. |
lib/modules/repo_scaffold.sh |
Seeds .rabbit/README.md if missing; changes declared root YAML discovery to use repo file filtering. |
package.json |
Bumps package version to 0.20.1. |
package-lock.json |
Syncs lockfile version metadata to 0.20.1. |
changes.md |
Adds 0.20.1 release notes describing the follow-ups. |
.rabbit/README.md |
Adds a Rabbit-facing README stub for this repo. |
.rabbit/context.yaml |
Updates generated context metadata to 0.20.1. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
235e407 to
eb332f7
Compare
eb332f7 to
c7a33ee
Compare
udx-github
approved these changes
Jul 10, 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.
Summary
.rabbit/README.mdfiles so new repos have a Rabbit-facing notes surface without adding a genericdocs/README.mdstubContext
These follow up on post-merge Copilot comments on PR #29 plus the worker-php follow-up that moved Rabbit CI notes under
.rabbit/README.md. They are not critical for the already published 0.20.0 release, but should be included in the next patch release.Validation