Problem
Three entries in Repository Defaults describe a state that does not match how PSModule module repositories actually work, so anyone following the page literally produces a broken or redundant repository.
1. .github/copilot-instructions.md is no longer the agent entry point
Both the "Default repository layout" table and the "Required common files" table list .github/copilot-instructions.md as a required file.
The agent onboarding model is AGENTS.md at the repository root, with CLAUDE.md importing it. Agent runtimes, including VS Code and GitHub Copilot, read AGENTS.md natively, so a separate Copilot-only pointer file is duplication that can drift. Agentic Development already describes the per-repository pointer files as AGENTS.md, the CLAUDE.md that imports it, and path-scoped instruction files — it does not mention copilot-instructions.md.
The page's own "Agent onboarding files" section is already correct and lists only AGENTS.md and CLAUDE.md. The two tables contradict it.
Only two repositories in the organization carry the file at all (PSModule/docs and PSModule/GitHub), and Template-PSModule removed it in PSModule/Template-PSModule#33.
2. Workflow filename
The "Default repository layout" table lists .github/workflows/workflow.yml as the "Reusable Process-PSModule workflow entry point".
Every module repository actually uses .github/workflows/Process-PSModule.yml. Surveyed 24 module repositories — GitHub, Context, Sodium, Utilities, Domeneshop, Ast, Base64, Jwt, Markdown, Yaml, Toml, Json, Path, PSSemVer, DynamicParams, Fonts, NerdFonts, Dns, PublicIP, Uri, CasingStyle, TimeSpan, PowerShellGallery, and Lovdata — plus Template-PSModule. All 24 use Process-PSModule.yml; none has a workflow.yml.
workflow.yml is the filename of the called reusable workflow inside PSModule/Process-PSModule, not the caller in the module repository. The table has confused the callee with the caller.
3. Dependabot ecosystems are documented as a fixed list containing one that does not exist
The "Supply-chain defaults" section shows a literal configuration block that module repositories should use, containing package-ecosystem: "github-actions" and package-ecosystem: "powershell".
Dependabot has no powershell package ecosystem. As of dependabot-core@dc2e4422d (2026-07-24) the supported ecosystems are bazel, bun, bundler, cargo, composer, conda, deno, devcontainers, docker, dotnet_sdk, elm, git_submodules, github_actions, go_modules, gradle, helm, hex, julia, maven, nix, npm_and_yarn, nuget, omnibus, opentofu, pre_commit, pub, python, rust_toolchain, sbt, swift, terraform, uv, and vcpkg. There is nothing for PowerShell or the PowerShell Gallery.
A repository that adds the documented block gets a Dependabot configuration error and stops receiving update pull requests entirely, including the github-actions ones it would otherwise get.
No module repository uses it. Of the 24 surveyed, all configure github-actions, and Sodium adds nuget because it ships a .NET assembly. The only place the powershell entry exists is the managed source in PSModule/Distributor (Repos/Module/dependabot.yml), which has never been distributed.
The deeper problem is the shape of the guidance, not just the one wrong value. A hardcoded literal block goes stale every time Dependabot's ecosystem support changes, and it cannot express "this repository also ships a .NET assembly". The rule should be stated as a requirement, not a copy-paste snippet.
Desired outcome
Repository Defaults describes the agent onboarding model, layout, and supply-chain configuration that module repositories actually use, so Template-PSModule and generated repositories can match the page exactly, and so the supply-chain guidance stays correct as Dependabot evolves.
Acceptance criteria
.github/copilot-instructions.md is removed from both the layout table and the required-files table, leaving AGENTS.md and CLAUDE.md as the agent entry points, consistent with the page's own "Agent onboarding files" section.
- The layout table names
.github/workflows/Process-PSModule.yml as the workflow entry point.
- The supply-chain section states the rule rather than a fixed list: a module repository configures
github-actions, plus every additional ecosystem that applies to the repository and is supported by the current version of Dependabot. It links to the supported ecosystems reference as the authority for what is currently available, so the page does not need editing each time Dependabot adds or removes support.
- The
powershell entry is removed. If PowerShell Gallery support is wanted, it is captured as a future capability that must not be configured today, with a note that adding an unsupported ecosystem breaks the entire Dependabot configuration.
- The
PSModule/Distributor managed dependabot.yml is flagged for the same correction so the broken powershell entry is not carried into MSXOrg/Custo.
References
Problem
Three entries in Repository Defaults describe a state that does not match how PSModule module repositories actually work, so anyone following the page literally produces a broken or redundant repository.
1.
.github/copilot-instructions.mdis no longer the agent entry pointBoth the "Default repository layout" table and the "Required common files" table list
.github/copilot-instructions.mdas a required file.The agent onboarding model is
AGENTS.mdat the repository root, withCLAUDE.mdimporting it. Agent runtimes, including VS Code and GitHub Copilot, readAGENTS.mdnatively, so a separate Copilot-only pointer file is duplication that can drift. Agentic Development already describes the per-repository pointer files asAGENTS.md, theCLAUDE.mdthat imports it, and path-scoped instruction files — it does not mentioncopilot-instructions.md.The page's own "Agent onboarding files" section is already correct and lists only
AGENTS.mdandCLAUDE.md. The two tables contradict it.Only two repositories in the organization carry the file at all (
PSModule/docsandPSModule/GitHub), andTemplate-PSModuleremoved it in PSModule/Template-PSModule#33.2. Workflow filename
The "Default repository layout" table lists
.github/workflows/workflow.ymlas the "Reusable Process-PSModule workflow entry point".Every module repository actually uses
.github/workflows/Process-PSModule.yml. Surveyed 24 module repositories —GitHub,Context,Sodium,Utilities,Domeneshop,Ast,Base64,Jwt,Markdown,Yaml,Toml,Json,Path,PSSemVer,DynamicParams,Fonts,NerdFonts,Dns,PublicIP,Uri,CasingStyle,TimeSpan,PowerShellGallery, andLovdata— plusTemplate-PSModule. All 24 useProcess-PSModule.yml; none has aworkflow.yml.workflow.ymlis the filename of the called reusable workflow insidePSModule/Process-PSModule, not the caller in the module repository. The table has confused the callee with the caller.3. Dependabot ecosystems are documented as a fixed list containing one that does not exist
The "Supply-chain defaults" section shows a literal configuration block that module repositories should use, containing
package-ecosystem: "github-actions"andpackage-ecosystem: "powershell".Dependabot has no
powershellpackage ecosystem. As ofdependabot-core@dc2e4422d(2026-07-24) the supported ecosystems arebazel,bun,bundler,cargo,composer,conda,deno,devcontainers,docker,dotnet_sdk,elm,git_submodules,github_actions,go_modules,gradle,helm,hex,julia,maven,nix,npm_and_yarn,nuget,omnibus,opentofu,pre_commit,pub,python,rust_toolchain,sbt,swift,terraform,uv, andvcpkg. There is nothing for PowerShell or the PowerShell Gallery.A repository that adds the documented block gets a Dependabot configuration error and stops receiving update pull requests entirely, including the
github-actionsones it would otherwise get.No module repository uses it. Of the 24 surveyed, all configure
github-actions, andSodiumaddsnugetbecause it ships a .NET assembly. The only place thepowershellentry exists is the managed source inPSModule/Distributor(Repos/Module/dependabot.yml), which has never been distributed.The deeper problem is the shape of the guidance, not just the one wrong value. A hardcoded literal block goes stale every time Dependabot's ecosystem support changes, and it cannot express "this repository also ships a .NET assembly". The rule should be stated as a requirement, not a copy-paste snippet.
Desired outcome
Repository Defaults describes the agent onboarding model, layout, and supply-chain configuration that module repositories actually use, so
Template-PSModuleand generated repositories can match the page exactly, and so the supply-chain guidance stays correct as Dependabot evolves.Acceptance criteria
.github/copilot-instructions.mdis removed from both the layout table and the required-files table, leavingAGENTS.mdandCLAUDE.mdas the agent entry points, consistent with the page's own "Agent onboarding files" section..github/workflows/Process-PSModule.ymlas the workflow entry point.github-actions, plus every additional ecosystem that applies to the repository and is supported by the current version of Dependabot. It links to the supported ecosystems reference as the authority for what is currently available, so the page does not need editing each time Dependabot adds or removes support.powershellentry is removed. If PowerShell Gallery support is wanted, it is captured as a future capability that must not be configured today, with a note that adding an unsupported ecosystem breaks the entire Dependabot configuration.PSModule/Distributormanageddependabot.ymlis flagged for the same correction so the brokenpowershellentry is not carried intoMSXOrg/Custo.References
dependabot-core: https://github.com/dependabot/dependabot-core