Skip to content
Development
Skill

/cpp

Use when writing modern C++ (17/20/23). Covers RAII, smart-pointer ownership, move semantics, ranges, concepts, and eliminating undefined behavior with sanitizers.

From plugin
claude-skills-collection
27137 skills
Install
$ npx -y skills add nimadorostkar/Claude-Skills-collection --skill cpp --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/cpp

Context preview

The summary Claude sees to decide when to auto-load this skill.

Use when writing modern C++ (17/20/23). Covers RAII, smart-pointer ownership, move semantics, ranges, concepts, and eliminating undefined behavior with sanitizers.

SKILL.md

cpp.SKILL.md
name: cpp
description: Use when writing modern C++ (17/20/23). Covers RAII, smart-pointer ownership, move semantics, ranges, concepts, and eliminating undefined behavior with sanitizers.
metadata:
  category: languages
  version: 1.0.0
  tags: [cpp, raii, move-semantics, concepts, sanitizers]

C++

Purpose

Write C++ where resources are owned by objects, ownership is visible in the type, and undefined behavior is actively hunted with tooling rather than hoped away.

When to Use

  • Writing or reviewing C++17 and later.
  • Modernizing code that uses raw `new`/`delete` or manual resource cleanup.
  • Diagnosing memory corruption, leaks, or data races.
  • Designing value types with correct copy/move semantics.
  • Optimizing hot paths where allocation or copying dominates.

Capabilities

  • RAII and ownership modeling with `unique_ptr`, `shared_ptr`, and value semantics.
  • Move semantics, the rule of zero/five, and copy elision.
  • Ranges, views, and algorithm composition.
  • Concepts for constrained templates and readable errors.
  • Sanitizer-driven debugging: ASan, UBSan, TSan.

Inputs

  • Source, build system (CMake preferred), and target standard.
  • Platform and toolchain constraints.
  • Performance budget for hot paths.

Outputs

  • Code with no raw owning pointers and no manual `delete`.
  • A CMake configuration with warnings-as-errors and sanitizer build types.
  • Benchmarks for any change justified on performance grounds.

Workflow

1. **Establish ownership** — Every resource has exactly one owner. Express it in the type: value, `unique_ptr`, or a documented non-owning `T*`/`span`. 2. **Apply the rule of zero** — If a class needs a destructor, it probably should not also hold business logic. 3. **Constrain templates** — Use concepts; unconstrained templates produce unreadable errors and accept nonsense. 4. **Sanitize** — Build and run the test suite under ASan+UBSan, then TSan separately. 5. **Measure before optimizing** — Profile, change one thing, benchmark again.

Best Practices

  • Prefer values and references. Reach for `shared_ptr` only when ownership is genuinely shared — it is not a default.
  • Pass by `const&` for large read-only inputs; pass by value and `std::move` when you intend to store.
  • Never return a reference or `string_view` to a temporary. This is the most common lifetime bug in modern C++.
  • Compile with `-Wall -Wextra -Wpedantic -Werror`. Warnings in C++ are usually latent bugs.
  • Use `std::span` instead of pointer+length parameter pairs.
  • Mark single-argument constructors `explicit` unless implicit conversion is genuinely desired.

Examples

**RAII wrapper with clear ownership:**

class FileHandle {
public:
    explicit FileHandle(const std::filesystem::path& path)
        : file_(std::fopen(path.c_str(), "rb")) {
        if (!file_) {
            throw std::system_error(errno, std::generic_category(), path.string());
        }
    }

    FileHandle(FileHandle&&) noexcept = default;
    FileHandle& operator=(FileHandle&&) noexcept = default;
    FileHandle(const FileHandle&) = delete;
    FileHandle& operator=(const FileHandle&) = delete;

    ~FileHandle() { if (file_) std::fclose(file_); }

    [[nodiscard]] std::FILE* get() const noexcept { return file_; }

private:
    std::FILE* file_;
};

**Constrained template with concepts:**

template <std::ranges::input_range R>
    requires std::totally_ordered<std::ranges::range_value_t<R>>
auto median(R&& range) {
    std::vector values(std::ranges::begin(range), std::ranges::end(range));
    if (values.empty()) throw std::invalid_argument("median of empty range");
    auto mid = values.begin() + std::ssize(values) / 2;
    std::ranges::nth_element(values, mid);
    return *mid;
}

Notes

  • ASan and TSan cannot be combined in a single build. Run them as separate CI jobs.
  • Copy elision is guaranteed for prvalues since C++17 — returning a local by value costs nothing.
  • `shared_ptr` cycles leak. Break them with `weak_ptr` on the back-reference.
Read more
Ships withclaude-skills-collection

A curated library of 137 production-grade skills for Claude and other AI coding agents. Every skill follows one structure, speaks with one voice, and earns its place by changing what the agent does.

Get the whole plugin
Stats
27
Stars
3
Forks
Maintained
Maintenance
Python
Language
MIT
License
1mo ago
Last commit
2mo ago
Created

Repo: nimadorostkar/Claude-Skills-collection

Other skills on claude-skills-collection.