awesome-ai-rules copilot-instructions.md

awesome-ai-rules copilot-instructions.md is an instructions file for GitHub Copilot from Lay4U/awesome-ai-rules. It costs 396 tokens per session, scanned A, original, MIT.

A set of GitHub Copilot instructions for writing Go code, including guidance on completion style, APIs, interfaces, errors, and concurrency.

In plain words
What is it for?
Guiding Go code suggestions toward explicit error checks, small interfaces, composition, context-aware operations, consistent naming, and project-compatible generated code.
Why use it?
Copilot suggestions may otherwise conflict with a project’s preferred Go conventions. These instructions tell it to favor readable code and consistent error handling.

Instructions file for GitHub Copilot

Written for GitHub Copilot: a Copilot instructions file.

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/lay4u/awesome-ai-rules/copilot-instructions
Clone the repo
git clone --depth 1 https://github.com/Lay4U/awesome-ai-rules

Made for: GitHub Copilot.

Wrote 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.

agentmods badge for awesome-ai-rules copilot-instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/lay4u/awesome-ai-rules/copilot-instructions.svg)](https://agentmods.dev/instructions/lay4u/awesome-ai-rules/copilot-instructions)
Your own site
<a href="https://agentmods.dev/instructions/lay4u/awesome-ai-rules/copilot-instructions"><img src="https://agentmods.dev/badge/instructions/lay4u/awesome-ai-rules/copilot-instructions.svg" alt="Measured on agentmods" height="20"></a>
Per session 396 This file is loaded in full into every session.
When invoked 396 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.1 $0.00396 $0.00396
Opus 5 $0.00198 $0.00198
Sonnet 5 $0.00079 $0.00079
Haiku 4.5 $0.00040 $0.00040

Measured 6d ago against content hash 6a79c099b326, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

awesome-ai-rules 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 6d 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.

rules/copilot/go/.github/copilot-instructions.md · 44 lines

What it actually says

GitHub Copilot Instructions: Go

Inline Completion Priorities

  • Suggest idiomatic Go first, clever abstractions second.
  • Default to explicit error checks with immediate returns.
  • Prefer readable control flow over compressed one-liners.
  • Keep generated snippets aligned with existing package style.

Go API Conventions

  • Package names: short, lowercase, no underscores.
  • Export only what callers need; keep helpers unexported.
  • Favor composition via struct fields over inheritance-style hierarchies.
  • Avoid init() unless a framework requires automatic registration.

Interfaces

  • Prefer small interfaces focused on behavior.
  • Accept interfaces in inputs where mocking/substitution is needed.
  • Return concrete structs from constructors and factories.
  • Avoid generating broad "god interfaces".

Error Patterns

  • Use if err != nil { return ... } consistently.
  • Wrap with fmt.Errorf("context: %w", err) when propagating.
  • Use errors.Is / errors.As for branching logic.
  • Do not ignore returned errors from I/O, close, or encode/decode calls.

Concurrency

  • Include context.Context as first argument for cancellable work.
  • Suggest goroutines only with clear synchronization (WaitGroup, channels, errgroup).
  • Avoid channel misuse: sender closes, receiver ranges.
  • Prefer race-safe patterns and recommend go test -race when relevant.

Testing

  • Generate table-driven tests for function matrices.
  • Use subtests for each table row with descriptive names.
  • Prefer testify/require for setup-critical assertions.
  • Keep fixtures lightweight and deterministic.

Tooling Awareness

  • Assume gofmt/goimports will run; produce format-stable code.
  • Keep code compatible with golangci-lint defaults.
  • Favor stdlib dependencies unless a third-party package is clearly justified.
  • Keep module imports tidy and consistent with go.mod.
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. 6d ago First seen · 44 lines · 396 tokens per session scan A 6a79c099b326

Subscribe to this mod's changes

awesome-ai-rules copilot-instructions.md is an instructions file published in the GitHub repository Lay4U/awesome-ai-rules (5 stars, last pushed 6mo ago), licensed MIT. It adds 396 tokens to every session, about $0.0020 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.