awesome-agv: Skill for Claude Code

.agents/skills/cpp-idioms/SKILL.md

cpp-idioms is a skill for Claude Code from irahardianto/awesome-agv. It costs 0 tokens per session (2,072 once invoked), scanned A, original, MIT.

A guide to modern C++ programming patterns for versions 17, 20, and 23. It emphasizes safe resource ownership, value-based code, smart pointers, and efficient use of the type system.

In plain words
What is it for?
Use it when writing or reviewing C++ code involving object ownership, resource cleanup, move operations, smart pointers, or class design.
Why use it?
It reduces memory-management mistakes and makes C++ code safer, more predictable, and easier to maintain.

Skill for Claude Code

Written for Claude Code: paths in frontmatter. Also seen: installed under .agents/ (shared by several agents).

This is irahardianto/awesome-agv's own configuration. It tells Claude Code how to work on awesome-agv itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything awesome-agv configures →

Reuse

Borrowing it

Nothing to install: this file belongs to irahardianto/awesome-agv. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/irahardianto/awesome-agv/main/.agents/skills/cpp-idioms/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/irahardianto/awesome-agv

Made for: Claude Code.

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 cpp-idioms

README.md
[![agentmods](https://agentmods.dev/badge/skills/irahardianto/awesome-agv/cpp-idioms.svg)](https://agentmods.dev/skills/irahardianto/awesome-agv/cpp-idioms)
Your own site
<a href="https://agentmods.dev/skills/irahardianto/awesome-agv/cpp-idioms"><img src="https://agentmods.dev/badge/skills/irahardianto/awesome-agv/cpp-idioms.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,072 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00000 $0.02072
Opus 5 $0.00000 $0.01036
Sonnet 5 $0.00000 $0.00414
Haiku 4.5 $0.00000 $0.00207

Measured 8d ago against content hash 6520119de50f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

cpp-idioms 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 8d 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/skills/cpp-idioms/SKILL.md · 260 lines

How it starts

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

C++ Idioms and Patterns

Modern C++ (17/20/23) rewards RAII, value semantics, and zero-cost abstractions. Lean into the type system and smart pointers. Idiomatic C++ = safe, deterministic, performant.

Scope: C++ coding idioms. Test naming: .agents/rules/testing-strategy.md.

Ownership and Memory

  1. RAII — resources tied to object lifetime. No manual new/delete.

  2. std::unique_ptr for exclusive ownership, std::shared_ptr only when sharing is necessary.

  3. Move semantics — prefer moving over copying for expensive types.

  4. Rule of Five/Zero:

    // ✅ Rule of Zero — let compiler-generated defaults work
    class TaskService {
        std::unique_ptr<TaskStorage> storage_;
        std::shared_ptr<Logger> logger_;
    public:
        // No destructor, copy/move constructors needed — smart pointers handle it
        explicit TaskService(std::unique_ptr<TaskStorage> storage, std::shared_ptr<Logger> logger)
            : storage_(std::move(storage)), logger_(std::move(logger)) {}
    };
    
    // ✅ Rule of Five — when managing raw resources (rare)
    class Buffer {
        char* data_;
        size_t size_;
    public:
        ~Buffer();                                   // Destructor
        Buffer(const Buffer&);                       // Copy constructor
        Buffer& operator=(const Buffer&);            // Copy assignment
        Buffer(Buffer&&) noexcept;                   // Move constructor
        Buffer& operator=(Buffer&&) noexcept;        // Move assignment
    };
    
  5. Pass by value and move for sink parameters:

    // ✅ Sink parameter — takes ownership
    void addTask(Task task) {
        tasks_.push_back(std::move(task));
    }
    
    // ✅ Read-only — const reference
    void printTask(const Task& task);
    
    // ❌ Never pass smart pointers unless transferring ownership
    void processTask(std::shared_ptr<Task> task);  // Unnecessary ref-count bump
    
    // ✅ If function doesn't need ownership
    void processTask(const Task& task);
    

Read the full file on GitHub · 260 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. 8d ago First seen · 260 lines · 0 tokens per session scan A 6520119de50f

Subscribe to this mod's changes

cpp-idioms is a skill published in the GitHub repository irahardianto/awesome-agv (156 stars, last pushed 17d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 2,072 tokens. 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-30.

Related

Other skills, from other repositories

unreal-cpp-gameplay

Write Unreal Engine 5 C++ gameplay code: the UCLASS/UPROPERTY/UFUNCTION reflection macros, the Gameplay Framework (GameMode, Pawn, Character, PlayerController, Actor components), and the module Build.cs. Use when writing or debugging UE C++, deriving from AActor/ACharacter/ AGameModeBase, exposing properties to the…

gamedev-skills/awesome-gamedev-agent-skills · 105 tokens

refactoring-csharp

Rename and refactor C# symbols in a .NET solution or multi-solution monorepo with a one-shot Roslyn CLI. Use when the user asks to rename a symbol, preview impact, update references across a solution, or refactor shared projects across several solutions.

CodeAlive-AI/ai-driven-development · 60 tokens

cpp-pro

Write idiomatic C++ code with modern features, RAII, smart pointers, and STL algorithms. Handles templates, move semantics, and performance optimization. Use PROACTIVELY for C++ refactoring, memory safety, or complex C++ patterns.

rmyndharis/antigravity-skills · 53 tokens

c-pro

Write efficient C code with proper memory management, pointer arithmetic, and system calls. Handles embedded systems, kernel modules, and performance-critical code. Use PROACTIVELY for C optimization, memory issues, or system programming.

rmyndharis/antigravity-skills · 47 tokens

memory-safety-patterns

Implement memory-safe programming with RAII, ownership, smart pointers, and resource management across Rust, C++, and C. Use when writing safe systems code, managing resources, or preventing memory bugs.

rmyndharis/antigravity-skills · 45 tokens

rust-skills

Comprehensive Rust coding guidelines with 265 rules across 26 categories. Use when writing, reviewing, or refactoring Rust code. Covers ownership, error handling, async patterns, concurrency, unsafe code, API design, memory optimization, performance, numeric safety, conversions, serde, pattern matching, macros…

leonardomso/rust-skills · 84 tokens