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/securitycompliancegit 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/securitycompliance)<a href="https://agentmods.dev/instructions/fadwen/powershell-copilot-standards/securitycompliance"><img src="https://agentmods.dev/badge/instructions/fadwen/powershell-copilot-standards/securitycompliance.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.06468 | $0.06468 |
| Opus 5 | $0.03234 | $0.03234 |
| Sonnet 5 | $0.01294 | $0.01294 |
| Haiku 4.5 | $0.00647 | $0.00647 |
Grade A, and why
Powershell-Copilot-Standards securitycompliance.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 4d ago.
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 — 749 lines — stays where its author put it; the contents beside it link to each section on GitHub.
PowerShell Security and Compliance Implementation
Implement security controls for PowerShell solutions: input validation, credential handling, audit logging, and threat mitigation. Apply security-by-design principles throughout development.
These patterns support regulatory work such as SOX, GDPR, and HIPAA by producing the audit trails, access controls, and data-handling evidence those programmes rely on. They do not make a system compliant on their own — that depends on controls, evidence, and audit outside this codebase. Do not describe generated code as compliant with any regulation.
Security Assessment and Implementation
Security Requirements Analysis
Evaluate and implement security controls based on:
Security Classification
- Public: No restrictions, publicly accessible code
- Internal: Internal use only, basic access controls required
- Confidential: Sensitive data, enhanced protection required
- Restricted: Highly sensitive, strict access controls mandatory
- Top Secret: Maximum security, compartmentalized access
Threat Model Assessment
Identify and mitigate threats using STRIDE methodology:
- Spoofing: Identity verification and authentication controls
- Tampering: Data integrity and code signing requirements
- Repudiation: Audit logging and non-repudiation controls
- Information Disclosure: Data protection and access controls
- Denial of Service: Availability and resilience measures
- Elevation of Privilege: Authorization and privilege management
Input Validation and Sanitization
Implement comprehensive input validation for all user inputs:
function Protect-UserInput {
param(
[Parameter(Mandatory = $true)]
[string]$InputString,
[ValidateSet('ComputerName', 'FileName', 'UserName', 'FilePath', 'EmailAddress')]
[string]$InputType = 'General',
[string]$CorrelationId = [System.Guid]::NewGuid().ToString()
)
# Log security validation attempt
Write-SecurityLog -SecurityEventType 'DataValidation' -Message "Input validation requested" -Outcome 'Attempt' -CorrelationId $CorrelationId -SecurityContext @{
InputType = $InputType
InputLength = $InputString.Length
}
# Length validation
if ($InputString.Length -gt 1000) {
throw [SecurityException]::new("Input exceeds maximum length of 1000 characters", 'InputValidation', 'Length-Check')
}
# Type-specific validation patterns
switch ($InputType) {
'ComputerName' {
if ($InputString -notmatch '^[a-zA-Z0-9\-\.]+$') {
throw [SecurityException]::new("Invalid computer name format", 'InputValidation', 'Format-Check')
}
}
'FileName' {
$invalidChars = [System.IO.Path]::GetInvalidFileNameChars()
foreach ($char in $invalidChars) {
if ($InputString.Contains($char)) {
throw [SecurityException]::new("Invalid file name character: $char", 'InputValidation', 'Character-Check')
}
}
}
'FilePath' {
# Prevent path traversal attacks
$normalizedPath = [System.IO.Path]::GetFullPath($InputString)
if ($normalizedPath.Contains('..') -or $normalizedPath.Contains('~')) {
throw [SecurityException]::new("Path traversal attempt detected", 'InputValidation', 'Path-Traversal')
}
}
'EmailAddress' {
if ($InputString -notmatch '^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$') {
throw [SecurityException]::new("Invalid email address format", 'InputValidation', 'Email-Format')
}
}
}
# Check for common injection patterns
$dangerousPatterns = @(
';', # Command separator
'&', # Command separator
'|', # Pipe operator
'<', # Redirect
'>', # Redirect
'`', # Backtick execution
'$(', # Subexpression
'Invoke-', # Dangerous cmdlets
'iex', # Invoke-Expression alias
'Remove-', # Destructive operations
'Format-' # Format string attacks
)
foreach ($pattern in $dangerousPatterns) {
if ($InputString -like "*$pattern*") {
Write-SecurityLog -SecurityEventType 'SecurityViolation' -Message "Dangerous pattern detected in input" -Outcome 'Failure' -CorrelationId $CorrelationId -SecurityContext @{
Pattern = $pattern
InputSample = $InputString.Substring(0, [Math]::Min(50, $InputString.Length))
} -RiskLevel 'High'
throw [SecurityException]::new("Input contains potentially dangerous pattern: $pattern", 'InputValidation', 'Injection-Prevention')
}
}
Write-SecurityLog -SecurityEventType 'DataValidation' -Message "Input validation successful" -Outcome 'Success' -CorrelationId $CorrelationId
return $InputString.Trim()
}
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.
- 4d ago First seen · 749 lines · 6,468 tokens per session scan A 64c8fe01170d
Powershell-Copilot-Standards securitycompliance.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 6,468 tokens to every session, about $0.0323 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
ayunis-legal-mcp CLAUDE.md
Instructions for ayunis-core/ayunis-legal-mcp, covering legal mcp - architecture and development guide, project overview, architecture, directory structure and key components.
spain-ai-kit CLAUDE.md
Instructions for aplaceforallmystuff/spain-ai-kit, a project described as: MCP servers connecting AI applications to Spanish government open data and legal infrastructure.
law-mcp CLAUDE.md
Claude Code instructions for finalchild/law-mcp, covering claude.md, build and development commands, architecture overview, core components and key integration points.
vscode buildNext.instructions.md
Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).
spec-kit AGENTS.md
AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.
codex AGENTS.md
AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.