coding-guidelines

coding-guidelines is a cursor rule for Cursor from ragnar-johannsson/mcp-sgf. It costs 620 tokens per session, scanned A, a copy of javascript-typescript-code-quality-cursorrules-pro, MIT.

A set of rules for writing simpler, readable, maintainable, reusable, and testable code. It includes guidance such as early returns, descriptive names, reusable components, and avoiding repeated code.

In plain words
What is it for?
Use it as a review or implementation checklist when naming code, structuring conditions, choosing constants, sharing logic, and balancing performance with readability.
Why use it?
It gives developers consistent decisions for reducing unnecessary complexity and making code easier to change and test.

Cursor rule for Cursor

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 rules/ragnar-johannsson/mcp-sgf/coding-guidelines
Clone the repo
git clone --depth 1 https://github.com/ragnar-johannsson/mcp-sgf

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 coding-guidelines

README.md
[![agentmods](https://agentmods.dev/badge/rules/ragnar-johannsson/mcp-sgf/coding-guidelines.svg)](https://agentmods.dev/rules/ragnar-johannsson/mcp-sgf/coding-guidelines)
Your own site
<a href="https://agentmods.dev/rules/ragnar-johannsson/mcp-sgf/coding-guidelines"><img src="https://agentmods.dev/badge/rules/ragnar-johannsson/mcp-sgf/coding-guidelines.svg" alt="Measured on agentmods" height="20"></a>
Per session 620 This file is loaded in full into every session.
When invoked 620 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin 86% copy Near-identical to another mod 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.00620 $0.00620
Opus 5 $0.00310 $0.00310
Sonnet 5 $0.00124 $0.00124
Haiku 4.5 $0.00062 $0.00062

Measured 3d ago against content hash 1f66aa9cb458, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

coding-guidelines 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 3d 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.

Origin

This is a copy

86% identical to javascript-typescript-code-quality-cursorrules-pro — 27 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.cursor/rules/coding-guidelines.mdc · 53 lines

How it starts

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

Coding Guidelines

Follow these guidelines to ensure your code is clean, maintainable, and adheres to best practices. Remember, less code is better. Lines of code = Debt.

Key Mindsets

1 Simplicity: Write simple and straightforward code. 2 Readability: Ensure your code is easy to read and understand. 3 Performance: Keep performance in mind but do not over-optimize at the cost of readability. 4 Maintainability: Write code that is easy to maintain and update. 5 Testability: Ensure your code is easy to test. 6 Reusability: Write reusable components and functions.

Code Guidelines

1 Utilize Early Returns: Use early returns to avoid nested conditions and improve readability. 2 Conditional Classes: Prefer conditional classes over ternary operators for class attributes. 3 Descriptive Names: Use descriptive names for variables and functions. Prefix event handler functions with "handle" (e.g., handleClick, handleKeyDown). 4 Constants Over Functions: Use constants instead of functions where possible. Define types if applicable. 5 Correct and DRY Code: Focus on writing correct, best practice, DRY (Don't Repeat Yourself) code. 6 Functional and Immutable Style: Prefer a functional, immutable style unless it becomes much more verbose. 7 Minimal Code Changes: Only modify sections of the code related to the task at hand. Avoid modifying unrelated pieces of code. Accomplish goals with minimal code changes. 8 Formatting: Use the same formatting as the rest of the project. Use a tab indentation level of 2. Do not end lines with a semi-colon. No trailing whitespaces.

Comments and Documentation

  • Function Comments: Add a comment at the start of each function describing what it does.
  • JSDoc Comments: Use JSDoc comments.

Function Ordering

  • Order functions with those that are composing other functions appearing earlier in the file. For example, if you have a menu with multiple buttons, define the menu function above the buttons.

Read the full file on GitHub · 53 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. 3d ago First seen · 53 lines · 620 tokens per session scan A 1f66aa9cb458

Subscribe to this mod's changes

coding-guidelines is a cursor rule published in the GitHub repository ragnar-johannsson/mcp-sgf (0 stars, last pushed 1y ago), licensed MIT. It adds 620 tokens to every session, about $0.0031 per session on Opus 5. A static security scan graded it A with 0 findings. It is 86% identical to javascript-typescript-code-quality-cursorrules-pro, differing in 27 lines, and is treated as a copy.