docs(markers): remove obsolete marker entries, add drift CI test#764
Draft
Copilot wants to merge 1 commit into
Draft
docs(markers): remove obsolete marker entries, add drift CI test#764Copilot wants to merge 1 commit into
Copilot wants to merge 1 commit into
Conversation
- Remove {{ mcp_client_config }} (obsolete) section from docs/template-markers.md
- Remove {{ copilot_version }} (removed) section from docs/template-markers.md
- Add test_template_marker_docs_coverage in tests/compiler_tests.rs to
catch future marker drift between src/data/*.yml and docs
- Extend rust-tests.yml trigger paths to include docs/template-markers.md
Co-authored-by: jamesadevine <4742697+jamesadevine@users.noreply.github.com>
Copilot created this pull request from a session on behalf of
jamesadevine
May 26, 2026 22:15
View session
jamesadevine
approved these changes
May 26, 2026
Open
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.
Two fully-removed template markers (
{{ mcp_client_config }}and{{ copilot_version }}) were still documented indocs/template-markers.mdwith no corresponding code insrc/. No mechanism existed to catch this kind of drift going forward.Changes
docs/template-markers.md{{ mcp_client_config }}section — marker was absorbed into the runtime MCPG→Copilot config pipeline step; nosrc/references remain{{ copilot_version }}section — absorbed into{{ engine_install_steps }}long ago; nosrc/references remainsrc/data/*.ymlare confirmed documented and accuratetests/compiler_tests.rstest_template_marker_docs_coverage: scans everysrc/data/*.ymlfor{{ marker }}patterns and asserts each has a matching## {{ marker }}heading indocs/template-markers.md; runs as part ofcargo test.github/workflows/rust-tests.ymldocs/template-markers.mdto the PR path filter so the drift test fires on doc-only edits tooTest plan
cargo test test_template_marker_docs_coverage— passes. Fullcargo testsuite — all 1800+ tests pass, 0 failures.