cppAvoid common C++ mistakes β memory leaks, dangling references, undefined behavior, and ownership confusion.
Install via ClawdBot CLI:
clawdbot install ivangdavila/cppRequires:
| Topic | File |
|-------|------|
| RAII, smart pointers, new/delete | memory.md |
| Raw pointers, references, nullptr | pointers.md |
| Rule of 3/5/0, inheritance, virtual | classes.md |
| Containers, iterators, algorithms | stl.md |
| Templates, SFINAE, concepts | templates.md |
| Threads, mutex, atomics | concurrency.md |
| C++11/14/17/20, move semantics | modern.md |
| Undefined behavior traps | ub.md |
new without delete leaks β use std::unique_ptr or std::make_unique== for C-strings compares pointers β use std::string or strcmp()std::move doesn't move β it casts to rvalue, enabling move semanticsstd::mutex or std::atomicvector is not a real container β returns proxy, use dequemap[key] inserts default if missing β use find() or contains() to check{} prevents narrowing β int x{3.5} errors, int x(3.5) truncatespush_back β vector may relocate, invalidating iteratorsstring_view doesn't own data β underlying string must outlive the viewAI Usage Analysis
Analysis is being generated⦠refresh in a few seconds.
Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.
Provides a 7-step debugging protocol plus language-specific commands to systematically identify, verify, and fix software bugs across multiple environments.
A comprehensive skill for using the Cursor CLI agent for various software engineering tasks (updated for 2026 features, includes tmux automation guide).
Write, run, and manage unit, integration, and E2E tests across TypeScript, Python, and Swift using recommended frameworks.
Control and operate Opencode via slash commands. Use this skill to manage sessions, select models, switch agents (plan/build), and coordinate coding through Opencode.
Coding style memory that adapts to your preferences, conventions, and patterns for consistent coding.