Conversation
Co-authored-by: palewire <9993+palewire@users.noreply.github.com>
Co-authored-by: palewire <9993+palewire@users.noreply.github.com>
Copilot created this pull request from a session on behalf of
palewire
September 16, 2026 15:06
View session
palewire
marked this pull request as ready for review
September 16, 2026 15:09
There was a problem hiding this comment.
🟡 Changes recommended
Three moderate review findings remain unresolved.
Get a fresh assessment by requesting another Copilot review.
Pull request overview
Adds project-neutral Context7 indexing defaults and optional refresh automation to generated repositories.
Changes:
- Adds schema-backed documentation indexing configuration.
- Adds opt-in Context7 refresh workflow.
- Documents setup and packages
context7.jsonin source distributions. - Records the feature in the changelog.
File summaries
| File | Summary | Final review comments |
|---|---|---|
TEMPLATE_SETUP.md |
Documents Context7 setup and maintenance. | None |
MANIFEST.in |
Includes context7.json in source distributions. |
None |
context7.json |
Defines documentation indexing and exclusions. | Moderate: add remaining default operational filename variants. 1 vote |
CHANGELOG.md |
Records the Context7 feature. | None |
.github/workflows/context7-refresh.yml |
Provides opt-in refresh automation. | Moderate: isolate concurrency by ref. 3 votes; Moderate: keep workflow paths aligned with configurable documentation paths. 1 vote |
Review details
Suppressed comments (2)
.github/workflows/context7-refresh.yml:8
- The setup instructions invite maintainers to move the documentation paths in
context7.json, but this workflow still watches onlydocs/**andREADME.md. After moving the docs, subsequent documentation changes will not trigger the advertised automatic refresh. Please make the setup checklist require updating this workflow'spathsas well, or choose a trigger strategy that follows the configured documentation locations.
- "docs/**"
context7.json:4
- Because
excludeFilesis supplied, Context7 no longer relies on its default filename exclusions. A generated repository that usesLICENSE.md,license.md,CHANGELOG.mdx, or the lowercase variants will therefore index those operational files, contrary to the setup text's claim that operational files are excluded. Add the remaining default filename variants (while retaining the template's extensionlessLICENSE) so this default remains project-neutral.
"excludeFiles": [
- Files reviewed: 5/5 changed files
- Comments generated: 1
- Review effort level: Lite
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
| permissions: {} | ||
|
|
||
| concurrency: | ||
| group: context7-refresh |
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.
Adds project-neutral Context7 indexing defaults and optional refresh automation to generated repositories.
Changes
context7.json.docs/and README content while excluding operational files.{ "$schema": "https://context7.com/schema/context7.json", "folders": ["docs"] }Automation
CONTEXT7_API_KEYsecret.Documentation
context7.jsonin source distributions and records the feature in the changelog.Verification