opencoverage copilot-instructions.md

Repository-specific instructions for opencoverage’s Go REST API, which collects and compares software test-coverage data. They require a layered design where the core domain stays independent of web and database details.

In plain words
What is it for?
Use them when changing API endpoints, business logic, PostgreSQL storage, authentication, observability, or other parts of the coverage service.
Why use it?
They help contributors preserve clear boundaries, avoid generated code, and meet the project’s architecture and Go coding standards.

Instructions file for GitHub Copilot

Install

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.

agentmods
npx agentmods add instructions/arxdsilva/opencoverage/copilot-instructions
Clone the repo
git clone --depth 1 https://github.com/arxdsilva/opencoverage

Made for: GitHub Copilot.

Per session 1,256 This file is loaded in full into every session.
When invoked 1,256 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 2d ago against content hash 8ecf3063a428, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

.github/copilot-instructions.md · 148 lines

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.

  1. Domain is at the center and knows nothing about frameworks, transport, or databases.
  2. Application layer orchestrates use cases and depends only on domain + ports.
  3. Adapters implement ports for HTTP, PostgreSQL, auth, and observability.
  4. Dependencies point inward only.

Required Layers

Use this structure (or equivalent naming):

  • cmd/api - entrypoint and bootstrap wiring
  • internal/domain - entities, value objects, domain services, domain errors
  • internal/application - use cases and port interfaces
  • internal/adapters/http - handlers, request/response DTOs, middleware
  • internal/adapters/postgres - repository implementations
  • internal/adapters/auth - API key validation adapter
  • internal/platform - config, logger, metrics, tracing, db client, clock/uuid abstractions

Do not place business rules in handlers, SQL repositories, or middleware.

Go Language Standards

  1. Target the current stable Go version used by the project.
  2. Keep packages cohesive and small.
  3. Prefer composition over inheritance-like patterns.
  4. Return errors, do not panic in normal control flow.
  5. Wrap errors with context using fmt.Errorf("...: %w", err).
  6. Keep interfaces near the consumer (application ports), not global interface files.
  7. Accept context.Context as first parameter for request-scoped operations.
  8. Avoid package-level mutable state.
  9. Keep functions short and intention-revealing.
  10. Use constructor functions with explicit dependencies.

Read the full file on GitHub · 148 lines

Changes

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.

  1. 2d ago First seen · 148 lines · 1,256 tokens per session scan A 8ecf3063a428

Subscribe to this mod's changes

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.