Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add instructions/fadwen/powershell-copilot-standards/platypsgit clone --depth 1 https://github.com/fadwen/Powershell-Copilot-StandardsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/instructions/fadwen/powershell-copilot-standards/platyps)<a href="https://agentmods.dev/instructions/fadwen/powershell-copilot-standards/platyps"><img src="https://agentmods.dev/badge/instructions/fadwen/powershell-copilot-standards/platyps.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.05112 | $0.05112 |
| Opus 5 | $0.02556 | $0.02556 |
| Sonnet 5 | $0.01022 | $0.01022 |
| Haiku 4.5 | $0.00511 | $0.00511 |
Grade A, and why
Powershell-Copilot-Standards platyps.instructions.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured today.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 456 lines — stays where its author put it; the contents beside it link to each section on GitHub.
PowerShell Help Documentation with PlatyPS
Every module generates its command help with Microsoft.PowerShell.PlatyPS and ships compiled
MAML external help. Markdown under docs/ is the source you edit; en-US/<ModuleName>-Help.xml is
the build output that Get-Help actually reads.
Use the Supported Module
Target version: Microsoft.PowerShell.PlatyPS 1.0.3+.
Install-PSResource -Name Microsoft.PowerShell.PlatyPS
The original platyPS v0.14.2 is no longer supported. It is a different module with different
cmdlet names, and its Markdown uses an older schema. Never generate platyPS 0.14 commands:
| Do not use (platyPS 0.14.2) | Use instead (Microsoft.PowerShell.PlatyPS 1.x) |
|---|---|
New-MarkdownHelp |
New-MarkdownCommandHelp |
Update-MarkdownHelp |
Update-MarkdownCommandHelp |
New-ExternalHelp |
Export-MamlCommandHelp |
New-ExternalHelpCab |
New-HelpCabinetFile |
Get-HelpPreview |
Show-HelpPreview |
Update-MarkdownHelpModule |
Update-MarkdownModuleFile |
Update-MarkdownCommandHelp can read 0.14.2-era Markdown and rewrite it in the current schema, so
migrating an existing project does not mean starting the documentation over. See
Migrating existing docs.
Authoring Model
Markdown is the source of truth for public command help. Comment-based help seeds it once, then the
Markdown is what you edit. The seeding only works if .EXTERNALHELP is added after the first
generation — see that ordering rule.
Public/Get-Thing.ps1
| <# .EXTERNALHELP ModuleName-Help.xml <-- required; see below
| .SYNOPSIS one line for source readers #>
|
| New-MarkdownCommandHelp (once, at first generation)
| Update-MarkdownCommandHelp (every time the signature changes)
v
docs/ModuleName/Get-Thing.md <-- EDIT HERE. Canonical. Committed.
docs/ModuleName/ModuleName.md <-- module page. Committed.
|
| Export-MamlCommandHelp (build step)
v
en-US/ModuleName-Help.xml <-- build output. What Get-Help reads.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- today Changed · +21 lines · +314 tokens per session c6fbaa30cbdb
- 4d ago First seen · 435 lines · 4,798 tokens per session scan A 7dc18f85c549
Powershell-Copilot-Standards platyps.instructions.md is an instructions file published in the GitHub repository fadwen/Powershell-Copilot-Standards (18 stars, last pushed 4d ago), licensed MIT. It adds 5,112 tokens to every session, about $0.0256 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other instructions, from other repositories
oh-my-posh AGENTS.md
AGENTS.md instructions for JanDeDobbeleer/oh-my-posh, covering agent instructions, project overview, tech stack, key commands and go - run from src/.
oh-my-posh copilot-instructions.md
Copilot instructions for JanDeDobbeleer/oh-my-posh: All agent guidance for this repository lives in AGENTS.md: project overview, key commands, architecture orientation, coding and commit conventions, skills, and the project-knowledge workflow. Follow it in full.
oh-my-posh markdown.instructions.md
Instructions for JanDeDobbeleer/oh-my-posh: Refer to skills/markdown/SKILL.md for the full Markdown formatting standards.
oh-my-posh powershell.instructions.md
Instructions for JanDeDobbeleer/oh-my-posh: Refer to skills/powershell/SKILL.md for the full PowerShell coding standards.
oh-my-posh golang.instructions.md
Instructions for JanDeDobbeleer/oh-my-posh: Refer to skills/golang/SKILL.md for the full Go coding standards.
psmux AGENTS.md
AGENTS.md instructions for psmux/psmux, covering agent instructions and test isolation.