cpp

Coding rules for modern C++ and CMake projects, covering naming, types, documentation, memory safety, and error handling. CMake is a tool that configures and builds C++ projects.

In plain words
What is it for?
Guide the writing and review of C++ classes, functions, variables, build files, comments, resource management, and error-handling code.
Why use it?
They make generated code more consistent and help avoid common C++ problems such as unclear ownership, unsafe memory use, and hard-to-maintain structure.

Cursor rule

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/patrickjs/awesome-cursorrules/cpp
Clone the repo
git clone --depth 1 https://github.com/PatrickJS/awesome-cursorrules
Per session 1,118 This file is loaded in full into every session.
When invoked 1,118 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin 95% 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.01118 $0.01118
Opus 5 $0.00559 $0.00559
Sonnet 5 $0.00224 $0.00224
Haiku 4.5 $0.00112 $0.00112

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

Security

Grade A, and why

cpp 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 2d 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

95% identical to cpp-programming-guidelines-cursorrules-prompt-file — 4 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.

rules/cpp.mdc · 134 lines

How it starts

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

C++ Programming Guidelines

Basic Principles

  • Use English for all code and documentation.
  • Always declare the type of each variable and function (parameters and return value).
  • Create necessary types and classes.
  • Use Doxygen style comments to document public classes and methods.
  • Don't leave blank lines within a function.
  • Follow the one-definition rule (ODR).

Nomenclature

  • Use PascalCase for classes and structures.
  • Use camelCase for variables, functions, and methods.
  • Use ALL_CAPS for constants and macros.
  • Use snake_case for file and directory names.
  • Use UPPERCASE for environment variables.
  • Avoid magic numbers and define constants.
  • Start each function with a verb.
  • Use verbs for boolean variables. Example: isLoading, hasError, canDelete, etc.
  • Use complete words instead of abbreviations and ensure correct spelling.
    • Except for standard abbreviations like API, URL, etc.
    • Except for well-known abbreviations:
      • i, j, k for loops
      • err for errors
      • ctx for contexts
      • req, res for request/response parameters

Functions

  • Write short functions with a single purpose. Less than 20 instructions.
  • Name functions with a verb and something else.
  • If it returns a boolean, use isX or hasX, canX, etc.
  • If it doesn't return anything (void), use executeX or saveX, etc.
  • Avoid nesting blocks by:
    • Early checks and returns.
    • Extraction to utility functions.
  • Use standard library algorithms (std::for_each, std::transform, std::find, etc.) to avoid function nesting.
  • Use lambda functions for simple operations.
  • Use named functions for non-simple operations.
  • Use default parameter values instead of checking for null or nullptr.
  • Reduce function parameters using structs or classes
    • Use an object to pass multiple parameters.
    • Use an object to return multiple results.
    • Declare necessary types for input arguments and output.
  • Use a single level of abstraction.

Data

  • Don't abuse primitive types and encapsulate data in composite types.
  • Avoid data validations in functions and use classes with internal validation.
  • Prefer immutability for data.
  • Use const for data that doesn't change.
  • Use constexpr for compile-time constants.
  • Use std::optional for possibly null values.

Read the full file on GitHub · 134 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. 2d ago First seen · 134 lines · 0 tokens per session scan A 6fec962c756d

Subscribe to this mod's changes

cpp is a cursor rule published in the GitHub repository PatrickJS/awesome-cursorrules (40,694 stars, last pushed 3mo ago), licensed CC0-1.0. It adds 1,118 tokens to every session, about $0.0056 per session on Opus 5. A static security scan graded it A with 0 findings. It is 95% identical to cpp-programming-guidelines-cursorrules-prompt-file, differing in 4 lines, and is treated as a copy.