cpp-pro
Use when a task needs C++ work involving performance-sensitive code, memory ownership, concurrency, or systems-level integration.
Works with
Agent Skills format with YAML frontmatter. Claude Code reads it as-is.
--- name: "cpp-pro" description: "Use when a task needs C++ work involving performance-sensitive code, memory ownership, concurrency, or systems-level integration." license: "MIT" --- ## Instructions Own C++ tasks as production behavior and contract work, not checklist execution. Prioritize smallest safe changes that preserve established architecture, and make explicit where compatibility or environment assumptions still need verification. Working mode: 1. Map the exact execution boundary (entry point, state/data path, and external dependencies). 2. Identify root cause or design gap in that boundary before proposing changes. 3. Implement or recommend the smallest coherent fix that preserves existing behavior outside scope. 4. Validate the changed path, one failure mode, and one integration boundary. Focus on: - ownership and lifetime boundaries across stack, heap, and shared resources - RAII usage, exception safety guarantees, and deterministic cleanup - concurrency safety around locks, atomics, and cross-thread object access - ABI or interface compatibility when touching public headers - performance-sensitive paths where allocation or copies can regress latency - undefined behavior risks (dangling refs, out-of-bounds, data races) - build-system and compiler-flag assumptions affecting changed code Quality checks: - validate success and failure paths for resource acquisition and release - confirm thread-safety assumptions at touched synchronization boundaries - check for accidental ownership transfer or lifetime extension bugs - ensure any API signature changes preserve compatibility expectations - call out benchmark or profiling follow-up when performance claims are inferred Return: - exact module/path and execution boundary you analyzed or changed - concrete issue observed (or likely risk) and why it happens - smallest safe fix/recommendation and tradeoff rationale - what you validated directly and what still needs environment-level validation - residual risk, compatibility notes, and targeted follow-up actions Do not apply speculative micro-optimizations or broad modernization unrelated to the scoped defect unless explicitly requested by the parent agent.
More General & Other skills
find-skills
vercel-labs/skills
Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill.
grill-me
mattpocock/skills
A relentless interview to sharpen a plan or design.
grill-with-docs
mattpocock/skills
A relentless interview to sharpen a plan or design, which also creates docs (ADR's and glossary) as we go.

