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/guigui42/mcp-vosdroits/dockergit clone --depth 1 https://github.com/guigui42/mcp-vosdroitsWrote 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/guigui42/mcp-vosdroits/docker)<a href="https://agentmods.dev/instructions/guigui42/mcp-vosdroits/docker"><img src="https://agentmods.dev/badge/instructions/guigui42/mcp-vosdroits/docker.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.00622 | $0.00622 |
| Opus 5 | $0.00311 | $0.00311 |
| Sonnet 5 | $0.00124 | $0.00124 |
| Haiku 4.5 | $0.00062 | $0.00062 |
Grade B, and why
mcp-vosdroits docker.instructions.md scanned grade B with 1 finding 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.
Asks for rootmediumPrivilege escalation
A mod that escalates privileges can change anything on the machine, not only the project.
- Don't run as root in production How it starts
The opening of the file, as written. The whole thing — 111 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Docker Guidelines
Multi-Stage Builds
Use multi-stage builds to create minimal production images:
- Build stage: Compile the Go binary with all dependencies
- Production stage: Copy only the binary to a minimal base image
Go-Specific Best Practices
Static Compilation
Build statically-linked binaries for minimal images:
CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o app .
Base Images
- Use
golang:1.23-alpinefor build stage (smaller than full golang image) - Use
scratchoralpinefor production stage - For
scratchimages, ensure binary is statically linked - For
alpine, include necessary CA certificates
Binary Optimization
- Use
-ldflags="-w -s"to strip debug information and reduce binary size - Consider using UPX for further compression (if acceptable)
Security
User Permissions
- Don't run as root in production
- Create a non-root user in the image
- Use
USERdirective to switch to non-root user
Image Scanning
- Regularly scan images for vulnerabilities
- Keep base images updated
- Minimize the number of layers
Secrets Management
- Never hardcode secrets in Dockerfile
- Use build arguments for build-time secrets
- Use environment variables or secret management for runtime secrets
- Don't commit sensitive files
Image Optimization
Layer Caching
- Order commands from least to most frequently changing
- Copy
go.modandgo.sumfirst, then download dependencies - Copy source code last
Size Reduction
- Remove unnecessary files
- Use
.dockerignoreto exclude files from build context - Combine RUN commands to reduce layers
- Clean up package manager caches
Health Checks
- Add
HEALTHCHECKinstruction for container health monitoring - Keep health checks lightweight
- Set appropriate timeout and interval
Labels
- Use
LABELinstructions for metadata - Include version, description, maintainer
- Follow OCI image spec annotations
Example Structure
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 · 111 lines · 622 tokens per session scan B d0681406ebdc
mcp-vosdroits docker.instructions.md is an instructions file published in the GitHub repository guigui42/mcp-vosdroits (105 stars, last pushed 6mo ago), licensed MIT. It adds 622 tokens to every session, about $0.0031 per session on Opus 5. A static security scan graded it B with 1 finding (asks for root). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other instructions, from other repositories
appwrite AGENTS.md
AGENTS.md instructions for appwrite/appwrite, covering appwrite, commands, stack, layout and libraries.
openlakeforge AGENTS.md
Instructions for malon64/openlakeforge, covering agent and contributor guide, what this project is, orientation — read in this order, repository map and architectural rules.
docker-zoneminder CLAUDE.md
Instructions for jantman/docker-zoneminder, covering claude.md, project overview, build and test, ci/cd and architecture.
mitos CLAUDE.md
Instructions for mitos-run/mitos, covering claude.md, project overview, operating principles, commands and architecture.
observability-mcp CLAUDE.md
Instructions for ThoTischner/observability-mcp, covering observability-mcp development guide, docker-first development, quick start, rebuild a single service and view logs.
workshop copilot-instructions.md
Copilot instructions for canonical/workshop, covering github copilot instructions, project overview, tech stack, repository structure and core directories.