ai-agents code-quality.instructions.md

ai-agents code-quality.instructions.md is an instructions file for GitHub Copilot from rjmurillo/ai-agents. It costs 3,178 tokens per session, scanned A, original, MIT.

General code-quality instructions based on established clean-code practices. They cover naming, readability, consistency, and other rules for code changes.

In plain words
What is it for?
Use them during any code edit, especially when choosing names, designing APIs, or reviewing implementation quality.
Why use it?
They make code easier to understand, search, review, and maintain by keeping names and structure clear.

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/rjmurillo/ai-agents/code-quality
Clone the repo
git clone --depth 1 https://github.com/rjmurillo/ai-agents

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 ai-agents code-quality.instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/rjmurillo/ai-agents/code-quality.svg)](https://agentmods.dev/instructions/rjmurillo/ai-agents/code-quality)
Your own site
<a href="https://agentmods.dev/instructions/rjmurillo/ai-agents/code-quality"><img src="https://agentmods.dev/badge/instructions/rjmurillo/ai-agents/code-quality.svg" alt="Measured on agentmods" height="20"></a>
Per session 3,178 This file is loaded in full into every session.
When invoked 3,178 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.03178 $0.03178
Opus 5 $0.01589 $0.01589
Sonnet 5 $0.00636 $0.00636
Haiku 4.5 $0.00318 $0.00318

Measured yesterday against content hash 09b6b94a49d0, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

ai-agents code-quality.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 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.

.github/instructions/code-quality.instructions.md · 238 lines

How it starts

The opening of the file, as written. The whole thing — 238 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Code Quality

This rule sets the baseline quality standard for all code you write or change. It merges the everyday fundamentals from Robert Martin's Clean Code and Steve McConnell's Code Complete. Apply these rules on every edit. They override stylistic preferences but defer to project conventions found in AGENTS.md, .editorconfig, and .markdownlint-cli2.yaml.

Naming

Names are documentation. A reader who knows nothing about the change should understand the code from the names alone.

  • Choose intention-revealing names. daysSinceLastLogin beats d or delta. isExpired beats flag.
  • Use pronounceable, searchable names. customerCount beats cc.
  • Drop abbreviations and Hungarian prefixes. userList beats usrLst or lstUsr.
  • Use one word per concept across the whole codebase. Pick fetch, get, or retrieve and stay with it.
  • Names track scope. Short names fit short scopes. Long names fit long-lived classes and public APIs.
  • Class names are nouns. Method names are verbs. Boolean methods read as predicates: isReady, hasChildren, canCommit.
  • Avoid disinformation. Do not call something accountList if it is a Set. Do not name a boolean status.
  • Mirror the domain. If the team says "tenant," do not write customer in code. Ubiquitous language reduces translation cost.

When you find yourself writing a comment to explain a name, rename instead.

Functions

Functions are the core unit of design. Keep them small, single-purpose, and easy to test.

  • Functions should do one thing. If you can describe the function as "X and Y," split it.
  • Prefer 20 lines or fewer. The project ceiling is 60. Past that, extract.
  • Aim for cyclomatic complexity of 10 or lower. Past that, extract or use table-driven logic.
  • Limit parameters to three. Prefer two. Zero is best. Bundle related parameters into a parameter object.
  • Avoid flag arguments. A boolean argument means the function does two things. Split it into renderTextual() and renderHtml().
  • Output parameters are confusing. Return a value, a tuple, or a small record.
  • One level of abstraction per function. A high-level orchestrator should not parse strings; a parser should not log analytics.
  • Apply the Stepdown Rule. Read top to bottom: each function calls the next level of detail.
  • No side effects beyond the function's name. validatePassword(user) should not also log the user in.

Read the full file on GitHub · 238 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. yesterday First seen · 238 lines · 3,178 tokens per session scan A 09b6b94a49d0

Subscribe to this mod's changes

ai-agents code-quality.instructions.md is an instructions file published in the GitHub repository rjmurillo/ai-agents (45 stars, last pushed today), licensed MIT. It adds 3,178 tokens to every session, about $0.0159 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-09-03.