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/mbentham/sqlaugur/agents-mdgit clone --depth 1 https://github.com/mbentham/SqlAugurWhat 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.00650 | $0.00650 |
| Opus 5 | $0.00325 | $0.00325 |
| Sonnet 5 | $0.00130 | $0.00130 |
| Haiku 4.5 | $0.00065 | $0.00065 |
Grade A, and why
SqlAugur AGENTS.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 yesterday.
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 — 43 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Repository Guidelines
Project Structure & Module Organization
SqlAugur/: main MCP server (Program.cs) and production code.SqlAugur/Tools/: MCP tool endpoints (thin wrappers with[McpServerTool]).SqlAugur/Services/: business logic and SQL access (validation, schema, DBA integrations).SqlAugur/Configuration/: options, validators, and toolset registry.SqlAugur.Tests/: unit tests (xUnit v3, no external services).SqlAugur.IntegrationTests/: container-backed integration tests (SQL Server via Testcontainers/Podman).- Root docs:
README.md,CONTRIBUTING.md,SECURITY.md,CHANGELOG.md.
Build, Test, and Development Commands
dotnet build: build the full solution from repo root (SqlAugur.slnx).dotnet run --project SqlAugur: run the MCP server on stdio.dotnet test SqlAugur.Tests: run unit tests only.DOCKER_HOST=unix:///run/user/1000/podman/podman.sock TESTCONTAINERS_RYUK_DISABLED=true dotnet test SqlAugur.IntegrationTests: run integration tests.dotnet publish SqlAugur -c Release -o SqlAugur/publish: produce release output.dotnet pack SqlAugur -c Release: build the NuGet global tool package.
Coding Style & Naming Conventions
- Language: C# on
net10.0with nullable and implicit usings enabled. - Indentation: 4 spaces; keep formatting consistent with existing files.
- Naming:
PascalCasefor types/methods/properties;camelCasefor locals/parameters; interfaces prefixed withI(for exampleISqlServerService). - Design rule: keep tools thin; put behavior in services.
- Security-sensitive logic (especially query validation) should remain AST-based, not regex-based.
Testing Guidelines
- Framework: xUnit v3 with
Microsoft.NET.Test.Sdkandcoverlet.collector. - Test file naming:
*Tests.cs(for exampleQueryValidatorTests.cs). - Add or update tests for all behavior changes; include bypass/regression cases for validator changes.
- Helpful filters:
dotnet test --filter "DisplayName~TestNameHere"dotnet test --filter "FullyQualifiedName~QueryValidatorTests"
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.
- yesterday First seen · 43 lines · 650 tokens per session scan A 05393d6ce7cb
SqlAugur AGENTS.md is an instructions file published in the GitHub repository mbentham/SqlAugur (5 stars, last pushed 1mo ago), licensed MIT. It adds 650 tokens to every session, about $0.0032 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-31.
Other instructions, from other repositories
nina AGENTS.md
Instructions for isbeorn/nina, covering agents.md, scope, documentation boundary, repository knowledge and code style and formatting.
bitfinex-net
Use Bitfinex.Net when generating C#/.NET code that interacts with Bitfinex, including Spot, margin, derivatives symbols, funding, REST endpoints, WebSocket subscriptions, account management, market data, or order placement. Triggers on Bitfinex integration requests in C#, .NET, dotnet, F#, or VB.NET context.
Bitfinex.Net copilot-instructions.md
Instructions for JKorf/Bitfinex.Net, covering copilot instructions for bitfinex.net, use bitfinex.net, not raw http, client setup, result handling and api structure.
appointme CLAUDE.md
Instructions for bravodev-hub/appointme, covering claude.md, build and development commands, running the full stack (recommended), backend only and frontend only.
OpenGameAgent AGENTS.md
Instructions for EricSun0218/OpenGameAgent, covering coding agent guide, objective, repository map, non-negotiable boundaries and first commands.
Fluence.Wpf AGENTS.md
Instructions for sintaxasn/Fluence.Wpf, covering fluence.wpf - developer handbook, 1. project overview, solution layout, clr namespaces and 2. coding standards.