chore(docs): remove phase-1 copilot-vscode scratch artifacts#16
Merged
Conversation
The four files under docs/copilot-vscode/ were dev-time scratch from before the adapter existed: a manual setup walkthrough, a JSON generator, and the two emitted settings snippets. The shipped adapter in src/setup/github-copilot-vscode.ts now derives the same JSON from PICKER_MODELS at runtime, so the generator is dead code and the snippets would silently drift from the model list. The user-facing manual recipe lives in mintlify-docs (opper-ai/mintlify-docs#65), which is the right home for it. Also drops the docs/ pointer from the JSONC error message in configureGitHubCopilotVSCode since the README is gone.
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
The four files under `docs/copilot-vscode/` were dev-time scratch from before the adapter shipped:
Now that the adapter exists in `src/setup/github-copilot-vscode.ts` and derives the same JSON at runtime, the generator is dead code and the snippets are a silent-drift hazard (no test enforces they stay in sync with `PICKER_MODELS`). The user-facing manual recipe already lives in opper-ai/mintlify-docs#65.
Also drops the now-broken `docs/copilot-vscode/README.md` pointer from the JSONC error message in `configureGitHubCopilotVSCode`.
Verified `/src` has no other references to `docs/` and nothing imports from the removed files.
Test plan