Less-Is-More-Skill AGENTS.md

Less-Is-More-Skill AGENTS.md is an instructions file for Codex, OpenCode from oddyblue/Less-Is-More-Skill. It costs 2,213 tokens per session, scanned A, original, MIT.

Instructions for simplifying software by first questioning whether an edit is needed, then preferring deletion, consolidation, replacement, or a small addition. The focus is reducing competing mechanisms and keeping the system easy to inspect.

In plain words
What is it for?
Finding the real problem, simplifying designs, reviewing proposed changes, and checking that the final solution has no needless machinery.
Why use it?
They help prevent unnecessary layers and patches that make code harder to understand, change, and trust.

Instructions file for CodexOpenCode

Written for Codex and OpenCode: the file is AGENTS.md.

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/oddyblue/less-is-more-skill/agents-md
Clone the repo
git clone --depth 1 https://github.com/oddyblue/Less-Is-More-Skill

Made for: Codex, OpenCode.

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 Less-Is-More-Skill AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/oddyblue/less-is-more-skill/agents-md.svg)](https://agentmods.dev/instructions/oddyblue/less-is-more-skill/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/oddyblue/less-is-more-skill/agents-md"><img src="https://agentmods.dev/badge/instructions/oddyblue/less-is-more-skill/agents-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 2,213 This file is loaded in full into every session.
When invoked 2,213 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.02213 $0.02213
Opus 5 $0.01107 $0.01107
Sonnet 5 $0.00443 $0.00443
Haiku 4.5 $0.00221 $0.00221

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

Security

Grade A, and why

Less-Is-More-Skill AGENTS.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 5d 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.

AGENTS.md · 59 lines

How it starts

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

Less Is More

Leave the system easier to inspect, explain, change, and trust.

Prefer, in order: no edit, deletion, consolidation, replacement, then a narrow addition. This is a decision order, not a checklist to perform or narrate. Correctness, explicit product requirements, user data, and useful product character outrank line count. Simplicity is measured in mechanisms, not lines: competing owners, sources of truth, states, branches, fallbacks, abstractions, dependencies, and things that must change together. Smallest means fewest mechanisms at the right depth, never the smallest diff — a bandaid at the wrong layer is a large change disguised as a small one, and a larger edit that deletes a mechanism is often the smaller change.

This skill is a loop, not a preamble: re-apply the decision order at each new sub-task, and re-read "Finish subtractively, then stop" immediately before reviewing the final diff.

Establish the real problem

Know which kind of work the request is — audit, bug fix, feature, simplification — and do not call new product behavior simplification. If the request is materially ambiguous, contradictory, destructive, or likely to affect user data, ask one precise question; otherwise state the narrowest safe assumption and proceed.

  1. Start from real state. Read the applicable repository instructions, current files, configuration, dependencies, tests, generated sources, and working tree. Protect unrelated user changes. Do not reason from memory when the current system can be inspected — and that includes data: print an artifact's actual shape (top-level keys, one row) before parsing or mutating it.
  2. Name the invariant and owner. State what must be true, which component enforces it, what state and side effects it owns, and what success and failure mean. If the invariant or owner is unclear, keep investigating.
  3. Verify what can drift. Confirm framework behavior, platform rules, external APIs, dependencies, and other time-sensitive facts against current primary sources. Say unknown when evidence is unavailable.
  4. Trace end to end. Follow inputs, state, persistence, concurrency, cancellation, lifecycle, side effects, callers, and downstream consumers. Work from the ownership boundary, not only the reported symptom or diff window.
  5. Audit the shape before writing. Look for duplicate state, competing owners, second sources of truth, obsolete branches, abandoned migrations, unsupported compatibility, unacceptable fallbacks, unused configuration, hand-edited generated output, and abstractions that guard no real boundary. Before deleting apparently dead code, check reachable callers, supported clients, persisted data, migrations, and deployment paths.
  6. Choose the smallest coherent operation. Consider no edit, deletion, consolidation, and direct replacement before addition. Reuse the project's existing owner, idiom, helper, or platform primitive before creating another. For non-trivial work, be able to say briefly why the choice beats the strongest realistic alternative; do not produce a ritual options table.
  7. Verify the real outcome. Use focused regression tests where behavior changed. A new regression test is evidence only after it has been shown able to fail — run it against the unfixed behavior, or break the fix once — and its fixture must provably reach the code under test; prefer exact assertions, since a negative assertion ("does not contain") passes vacuously when the setup silently produces nothing. Remove tests that pin behavior the change deliberately made obsolete, naming the requirement that obsoleted them; never delete a test merely because it fails. Match verification to the claim: an internal event is not proof of audible playback, visible rendering, durable persistence, delivered data, or completed teardown. Use real integration, lifecycle, device, or human checks when software tests cannot establish the result.

Read the full file on GitHub · 59 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. 5d ago First seen · 59 lines · 2,213 tokens per session scan A 2b7522e8e2cc

Subscribe to this mod's changes

Less-Is-More-Skill AGENTS.md is an instructions file published in the GitHub repository oddyblue/Less-Is-More-Skill (2 stars, last pushed 26d ago), licensed MIT. It adds 2,213 tokens to every session, about $0.0111 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.