ai-agents unified-software-engineering.instructions.md

ai-agents unified-software-engineering.instructions.md is an instructions file for GitHub Copilot from rjmurillo/ai-agents. It costs 1,447 tokens per session, scanned A, original, MIT.

A set of software-engineering guidelines for resolving design and implementation trade-offs. It favors code that is understandable, safe to change, and honest about its constraints.

In plain words
What is it for?
It guides architecture, scoping, refactoring, data ownership, error handling, and decisions about where complexity should live.
Why use it?
It gives an AI coding assistant a consistent way to choose between conflicting engineering practices.

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/unified-software-engineering
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 unified-software-engineering.instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/rjmurillo/ai-agents/unified-software-engineering.svg)](https://agentmods.dev/instructions/rjmurillo/ai-agents/unified-software-engineering)
Your own site
<a href="https://agentmods.dev/instructions/rjmurillo/ai-agents/unified-software-engineering"><img src="https://agentmods.dev/badge/instructions/rjmurillo/ai-agents/unified-software-engineering.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,447 This file is loaded in full into every session.
When invoked 1,447 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.01447 $0.01447
Opus 5 $0.00724 $0.00724
Sonnet 5 $0.00289 $0.00289
Haiku 4.5 $0.00145 $0.00145

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

Security

Grade A, and why

ai-agents unified-software-engineering.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/unified-software-engineering.instructions.md · 138 lines

How it starts

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

Unified Software Engineering

This rule resolves conflicts between engineering principles that models already know (Clean Code, DDD, Refactoring, Pragmatic Programmer, Code Complete) so that contradictions do not produce inconsistent agent behavior. Use it as a tiebreaker and as a concrete blocklist when reviewing or generating code.

Cherry-picked from agent-rules-books (MIT). The full upstream document is intentionally not imported. Adding the entire 46KB rule set duplicates content already known to the model and degrades response quality.

Primary Directive

When uncertain, choose the option that makes the system easier to understand, safer to change, and more honest about its real constraints.

Prefer designs that:

  1. reduce the number of facts a reader must hold at once
  2. put each business rule in one authoritative place
  3. keep volatile details behind stable boundaries
  4. make data ownership and consistency explicit
  5. survive partial failure, retries, and operational stress
  6. preserve behavior during structural change
  7. shorten feedback loops

Reject designs that merely appear simpler by hiding complexity in callers, frameworks, databases, global state, queues, or operational assumptions.

Conflict Resolution Rules

Apply these rules when engineering principles appear to disagree.

Simplicity vs Rich Modeling

  • Use the simplest design that honestly represents the problem.
  • Simple CRUD or administrative workflows may use transaction scripts or simple service-layer code.
  • Complex business rules, lifecycles, invariants, and language distinctions require richer domain modeling.
  • Do not use DDD patterns as ceremony in generic or low-complexity subdomains.
  • Do not flatten real domain complexity into passive records and procedural services.

Small Functions vs Deep Modules

  • Functions and routines should be cohesive and understandable.
  • Prefer small units when they clarify intent, isolate responsibility, or simplify testing.
  • Avoid chains of tiny pass-through functions that force readers to jump constantly.
  • A module may contain internal complexity when its public interface is small, meaningful, and stable.

Read the full file on GitHub · 138 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 · 138 lines · 1,447 tokens per session scan A 033f0f95b72c

Subscribe to this mod's changes

ai-agents unified-software-engineering.instructions.md is an instructions file published in the GitHub repository rjmurillo/ai-agents (45 stars, last pushed today), licensed MIT. It adds 1,447 tokens to every session, about $0.0072 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.