dbatools is a PowerShell toolkit for automating SQL Server administration and moving SQL Server instances between environments. It is for database administrators who manage SQL Server systems and migrations.
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/dataplat/dbatools/claude-mdgit clone --depth 1 https://github.com/dataplat/dbatoolsWrote 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/dataplat/dbatools/claude-md)<a href="https://agentmods.dev/instructions/dataplat/dbatools/claude-md"><img src="https://agentmods.dev/badge/instructions/dataplat/dbatools/claude-md.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.1 | $0.02644 | $0.02644 |
| Opus 5 | $0.01322 | $0.01322 |
| Sonnet 5 | $0.00529 | $0.00529 |
| Haiku 4.5 | $0.00264 | $0.00264 |
Grade A, and why
dbatools CLAUDE.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 2d 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 — 299 lines — stays where its author put it; the contents beside it link to each section on GitHub.
dbatools PowerShell Style Guide
This is the single source for repository-wide PowerShell style and workflow conventions. It applies to every PowerShell file under public/, private/, tests/, and the repository scripts, regardless of which agent or contributor makes the change.
CRITICAL COMMAND SYNTAX RULES
NO BACKTICKS - ALWAYS USE SPLATS
ABSOLUTE RULE: NEVER suggest or use backticks (`) for line continuation. Backticks are an anti-pattern in modern PowerShell development.
PARAMETER ATTRIBUTES - NO = $true SYNTAX
MODERN RULE: Do NOT use Mandatory = $true or similar boolean attribute assignments.
# CORRECT - Modern attribute syntax (no = $true)
param(
[Parameter(Mandatory)]
[string]$SqlInstance,
[Parameter(ValueFromPipeline)]
[object[]]$InputObject,
[switch]$EnableException
)
# WRONG - Outdated PSv2 syntax
param(
[Parameter(Mandatory = $true)]
[string]$SqlInstance
)
Guidelines:
- Use
[Parameter(Mandatory)]not[Parameter(Mandatory = $true)] - Use
[switch]for boolean flags, not[bool]parameters - Avoid ParameterSets - use Test-Bound instead with useful error messages
- No extra line breaks between parameter declarations
POWERSHELL v3 COMPATIBILITY
CRITICAL RULE: dbatools must support PowerShell v3. NEVER use ::new() or other PowerShell v5+ syntax.
# CORRECT - PowerShell v3 compatible
$object = New-Object -TypeName System.Collections.Hashtable
# WRONG - PowerShell v5+ only
$object = [System.Collections.Hashtable]::new()
SPLAT USAGE REQUIREMENT
- 1-2 parameters: Use direct parameter syntax
- 3+ parameters: Use splatted hashtables with
$splat<Purpose>naming
# CORRECT - 2 parameters, direct syntax
$database = Get-DbaDatabase -SqlInstance $instance -Name "master"
# CORRECT - 5 parameters, must use splat
$splatConnection = @{
SqlInstance = $instance
SqlCredential = $credential
Database = $dbName
EnableException = $true
Confirm = $false
}
$result = New-DbaDatabase @splatConnection
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.
- 2d ago First seen · 299 lines · 2,644 tokens per session scan A 8f612ea6a8e0
dbatools CLAUDE.md is an instructions file published in the GitHub repository dataplat/dbatools (2,829 stars, last pushed 2d ago), licensed MIT. It adds 2,644 tokens to every session, about $0.0132 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-09-03.
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 golang.instructions.md
Instructions for JanDeDobbeleer/oh-my-posh: Refer to skills/golang/SKILL.md for the full Go coding standards.
fastapi-best-practices AGENTS.md
AGENTS.md instructions for zhanymkanov/fastapi-best-practices, covering fastapi best practices for ai agents, compatibility matrix, project structure, async routes and decision rule.
Powershell-Copilot-Standards platyps.instructions.md
Generates and maintains module help documentation with Microsoft.PowerShell.PlatyPS, shipping MAML external help.
battle-tested-patterns AGENTS.md
AGENTS.md instructions for Totoro-jam/battle-tested-patterns, a project described as: Battle-tested programming patterns from production codebases — React, Linux, Go, Chromium, and more. Precise source links, multi-language examples, runnable exercises.
rust-skills AGENTS.md
Instructions for leonardomso/rust-skills, a project described as: A collection of 265 rules across 26 categories that AI coding agents can use to write idiomatic, fast, and safe Rust.