less-is-more

less-is-more is a cursor rule for Cursor from oddyblue/Less-Is-More-Skill. It costs 2,286 tokens per session, scanned A, original, MIT.

A set of coding rules that treats simplicity as reducing the number of moving parts in a system. It guides code changes, debugging, refactoring, and cleanup toward the smallest sound solution.

In plain words
What is it for?
Use it when investigating bugs, reviewing changes, simplifying code, removing duplication, or deciding whether a new edit is needed at all.
Why use it?
It helps prevent patches that add layers around the real problem, leaving competing logic, extra states, or obsolete code behind.

Cursor rule for Cursor

Written for Cursor: installed under .cursor/. Also seen: mentions AGENTS.md.

Good fit Use it when investigating bugs, reviewing changes, simplifying code, removing duplication, or…

Compare 6 cursor rules from other repositories ↓
Install with agentmods
npx agentmods add rules/oddyblue/less-is-more-skill/less-is-more
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.

Clone the repo
git clone --depth 1 https://github.com/oddyblue/Less-Is-More-Skill

Made for: Cursor.

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

README.md
[![agentmods](https://agentmods.dev/badge/rules/oddyblue/less-is-more-skill/less-is-more.svg)](https://agentmods.dev/rules/oddyblue/less-is-more-skill/less-is-more)
Your own site
<a href="https://agentmods.dev/rules/oddyblue/less-is-more-skill/less-is-more"><img src="https://agentmods.dev/badge/rules/oddyblue/less-is-more-skill/less-is-more.svg" alt="Measured on agentmods" height="20"></a>
Per session 2,286 This file is loaded in full into every session.
When invoked 2,286 The same file — it is already loaded in full.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.02286 $0.02286
Opus 5 $0.01143 $0.01143
Sonnet 5 $0.00457 $0.00457
Haiku 4.5 $0.00229 $0.00229

Measured 6d ago against content hash cfaa382a2bf0, 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 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.

.cursor/rules/less-is-more.mdc · 64 lines

How it starts

The opening of the file, as written. The whole thing — 64 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 · 64 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. 6d ago First seen · 64 lines · 2,286 tokens per session scan A cfaa382a2bf0

Subscribe to this mod's changes

less-is-more is a cursor rule published in the GitHub repository oddyblue/Less-Is-More-Skill (2 stars, last pushed 27d ago), licensed MIT. It adds 2,286 tokens to every session, about $0.0114 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.