📖 [Docs]: AGENTS.md added to Memory Repository Template scaffold#77
Merged
Merged
Conversation
A live audit found MSXOrg/memory and PSModule/memory both missing AGENTS.md - the cross-client agent entry point every repository in the framework is supposed to carry per design.md's client behavior table. Those two repos were already patched directly. This closes the actual gap: memory-template.md (introduced in #70) never listed AGENTS.md in its scaffold, so any future memory repository would have been instantiated missing it too. - Add AGENTS.md to the Scaffold file tree, right after README.md/CONTRIBUTING.md. - Explain why it doesn't map to a memory ownership bullet: it's the framework's client-behavior-table pointer, distinct from CONTRIBUTING.md's contribution-process framing. - Update the Repository Standard exception sentence to list AGENTS.md among the files a memory repository still carries. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
Marius Storhaug (MariusStorhaug)
marked this pull request as ready for review
July 25, 2026 15:48
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.
Why
A sibling session auditing the live ecosystem found that both instantiated memory
repos —
MSXOrg/memoryandPSModule/memory— were missingAGENTS.md, thecross-client agent entry point that design.md's client behavior
table
says every repository in the framework carries: "Cross-client agents |
AGENTS.md|Read the shared project pointer and local nuance."
Tracing it back, the gap isn't just in those two repos — it's in the template they
were scaffolded from.
memory-template.md(introduced in #70) never listedAGENTS.mdin its## Scaffoldfile tree, so any future memory repositoryinstantiated from this template would launch missing it too.
Note:
MSXOrg/memoryandPSModule/memoryhave already been fixed directly(their
AGENTS.mdfiles exist and work today). This PR doesn't need to land forthose two repos to be correct — it's solely so future memory repositories get
AGENTS.mdfrom day one.What changed
AGENTS.mdto the## Scaffoldcode-fence tree, right afterREADME.md/CONTRIBUTING.md, with an inline comment describing its purpose.AGENTS.mddoesn't map to amemoryownershipbullet from
design.md#memory— it's the framework's client-behavior-table entrypoint instead, distinct from
CONTRIBUTING.md's contribution-process framing eventhough this repo's real audience is agents.
.gitattributes, and .gitignore" sentence in the Repository Standard exception
section to include
AGENTS.md.Validation
.github/scripts/Test-DocumentationLink.ps1— all links resolve.markdownlint-cliagainst.github/linters/.markdown-lint.ymlon the changedfile — clean.
.github/scripts/Update-DocumentationIndex.ps1 -Checkreports pre-existing driftacross many unrelated index files on
main(confirmed by stashing this change andre-running) — not caused by this PR, and this page's front matter (
title/description) is unchanged, so it adds no new drift.Follow-up to #70 (which introduced
memory-template.md).