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/arxdsilva/opencoverage/copilot-instructionsgit clone --depth 1 https://github.com/arxdsilva/opencoverageWhat 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.01256 | $0.01256 |
| Opus 5 | $0.00628 | $0.00628 |
| Sonnet 5 | $0.00251 | $0.00251 |
| Haiku 4.5 | $0.00126 | $0.00126 |
Grade A, and why
opencoverage copilot-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 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 — 148 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Copilot Instructions for coverage-api
Never commit generated code, all code must be manually reviewed and edited as needed to fit architecture and style guidelines. Always follow the architecture and coding standards defined in copilot-instructions.md.
Mission
Build and evolve a Go REST API for coverage ingestion and comparison using Hexagonal Architecture, clean boundaries, and production-grade engineering practices.
Core Architecture: Hexagonal (Ports and Adapters)
Always organize code by domain boundaries and dependency direction.
- Domain is at the center and knows nothing about frameworks, transport, or databases.
- Application layer orchestrates use cases and depends only on domain + ports.
- Adapters implement ports for HTTP, PostgreSQL, auth, and observability.
- Dependencies point inward only.
Required Layers
Use this structure (or equivalent naming):
cmd/api- entrypoint and bootstrap wiringinternal/domain- entities, value objects, domain services, domain errorsinternal/application- use cases and port interfacesinternal/adapters/http- handlers, request/response DTOs, middlewareinternal/adapters/postgres- repository implementationsinternal/adapters/auth- API key validation adapterinternal/platform- config, logger, metrics, tracing, db client, clock/uuid abstractions
Do not place business rules in handlers, SQL repositories, or middleware.
Go Language Standards
- Target the current stable Go version used by the project.
- Keep packages cohesive and small.
- Prefer composition over inheritance-like patterns.
- Return errors, do not panic in normal control flow.
- Wrap errors with context using
fmt.Errorf("...: %w", err). - Keep interfaces near the consumer (application ports), not global interface files.
- Accept
context.Contextas first parameter for request-scoped operations. - Avoid package-level mutable state.
- Keep functions short and intention-revealing.
- Use constructor functions with explicit dependencies.
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 · 148 lines · 1,256 tokens per session scan A 8ecf3063a428
opencoverage copilot-instructions.md is an instructions file published in the GitHub repository arxdsilva/opencoverage (5 stars, last pushed 1mo ago), licensed MIT. It adds 1,256 tokens to every session, about $0.0063 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
scaffold AGENTS.md
AGENTS.md instructions for AlexSkrypnyk/scaffold, covering agents.md, project overview, php application architecture, symfony console application and adding new commands.
scaffold CLAUDE.md
Claude Code instructions for AlexSkrypnyk/scaffold, a project described as: 🪜 Generic project scaffold template.
openlens CLAUDE.md
Instructions for Traves-Theberge/openlens, covering claude.md, build & development commands, debugging, git hooks and architecture.
go-proxmox AGENTS.md
Instructions for luthermonson/go-proxmox, covering agents.md, build, test, lint, integration test env vars, architecture and client and request layer (proxmox.go).
pruna-skills AGENTS.md
Instructions for PrunaAI/pruna-skills, covering pruna skills (agent notes), how it works, clarification (library-wide), install and layout.
mcp-agent-langchainjs webapp.instructions.md
Instructions for Azure-Samples/mcp-agent-langchainjs: If you get it right you'll get a 1000$ bonus, but if you get it wrong you'll be fired.