⚙️ [Maintenance]: New module repositories ship the Claude Code and Copilot agent routes - #50
Draft
Marius Storhaug (MariusStorhaug) wants to merge 1 commit into
Draft
Conversation
New module repositories carry .claude/CLAUDE.md and .github/copilot-instructions.md, so Claude Code and the Copilot surfaces that do not read AGENTS.md natively still reach the router. Each file holds only a route, per the agentic development standard. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
No Significant Changes DetectedThis PR does not contain changes to files that would trigger a new release:
Build, test, and publish stages will be skipped for this PR. If you believe this is incorrect, please verify that your changes are in the correct locations. |
This was referenced Aug 28, 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.
New module repositories created from this template carry the agent client routes that Claude Code and the Copilot surfaces need. Claude Code finds
.claude/CLAUDE.md, and the Copilot surfaces that do not readAGENTS.mdnatively — Copilot Chat on GitHub.com, Visual Studio, JetBrains, Eclipse, and Copilot code review outside GitHub.com — find.github/copilot-instructions.md. Both files hold a route to theAGENTS.mdrouter and nothing else, so every runtime resolves the same guidance with no second copy of it to drift.New: Claude Code reaches the repository router
.claude/CLAUDE.mdimports the router with the relative form@../AGENTS.md, which the file's position one directory below the root requires.New: Copilot surfaces without AGENTS.md support reach the repository router
.github/copilot-instructions.mdroutes toAGENTS.mdin a single sentence. Copilot Chat in VS Code and the Copilot cloud agent continue to readAGENTS.mddirectly and need no file of their own.Technical details
.claude/CLAUDE.md: anMD041disable comment and@../AGENTS.md..github/copilot-instructions.md: anMD041disable comment andFollow the instructions in [AGENTS.md](../AGENTS.md).MSXOrg/docsitself. TheMD041disable comment follows this repository's own convention from the removed rootCLAUDE.md, since the repository's.github/linters/.markdown-lint.ymldoes not disableMD041globally.markdownlint-cli2 --config .github/linters/.markdown-lint.yml: 0 issues.PSModule/Template-PSModule#48described both route files in its body, but its diff contains one file change — the deletion of the rootCLAUDE.md. Confirmed withgit show --stat dad7b12andgh pr view 48 --json files. No rootCLAUDE.mdis restored; its removal was correct, because the root file is not a path any runtime requires..claude/CLAUDE.md(client route).github/copilot-instructions.md(client route)PSModule/Template-PSModule#40, which concerns the pull request template's ending blocks. This diff does not touch it, so no additional issue is resolved.psmodule.github.io/docs/...links inAGENTS.mdreturn HTTP 404, as does the site root. Themsxorg.github.ioAgentic Development link also 404s, because that standard moved toCapabilities/agentic-development/. The remainingmsxorg.github.iolinks resolve. This needs tracking on its own.Relevant issues (or links)
Related work
PSModule/Template-PSModule#48— completes the two route files that pull request's description claimed while its diff only removed the rootCLAUDE.md.