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.
npx agentmods add skills/cassettetapecrackle/claude-starters/clean-code-cppnpx skills add CassetteTapeCrackle/claude-starters --skill clean-code-cppgit clone --depth 1 https://github.com/CassetteTapeCrackle/claude-startersWrote 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.
[](https://agentmods.dev/skills/cassettetapecrackle/claude-starters/clean-code-cpp)<a href="https://agentmods.dev/skills/cassettetapecrackle/claude-starters/clean-code-cpp"><img src="https://agentmods.dev/badge/skills/cassettetapecrackle/claude-starters/clean-code-cpp.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00042 | $0.00386 |
| Opus 5 | $0.00021 | $0.00193 |
| Sonnet 5 | $0.00008 | $0.00077 |
| Haiku 4.5 | $0.00004 | $0.00039 |
Grade A, and why
clean-code-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 3d 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.
What it actually says
Clean-code C++ (depth)
Apply on top of the project's base rules (C++20/17, CMake+CPM, clang-tidy, sanitizers, Catch2).
Error handling
- Pick one policy per module and state it: exceptions, or
std::expected/error codes. - Exceptions are fine on the general/message path. Never let exceptions cross a real-time/audio callback.
- Exception messages carry full context (offending value + expected shape).
Ownership & lifetime
- Prefer
std::unique_ptr+ raw non-owning pointers/references. Reach forstd::shared_ptronly when ownership is genuinely shared — it is not a default. - Make ownership legible: one owner, clear handoff. Rule of zero; let RAII types manage resources.
const / noexcept / constexpr
const-correct by default;constexprwhat can be evaluated at compile time.- Mark leaf functions
noexceptwhen they truly can't throw (moves, swaps, small getters) — it enables optimizations and documents intent.
Views & interfaces
std::span/std::string_viewfor non-owning views; take them by value in parameters.- Concrete before abstract: don't introduce templates, interfaces, or virtual layers until a second concrete case demands them.
Signals it's going wrong
- A
shared_ptryou can't explain the sharing for → probably aunique_ptr+ reference. - A template with one instantiation → make it concrete.
- A
try/catchin an inner loop → wrong layer for error handling.
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.
- 3d ago First seen · 31 lines · 42 tokens per session scan A 312ef1dd3b03
clean-code-cpp is a skill published in the GitHub repository CassetteTapeCrackle/claude-starters (1 stars, last pushed 15d ago), licensed MIT. It adds 42 tokens to every session and 386 once invoked, about $0.0002 per session on Opus 5. 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-31.
Other skills, from other repositories
cpp-specifications
Structural verification and quality patterns for C and C++ — sanitizers (ASAN/UBSAN/TSAN/MSAN), const correctness, ownership, thread safety, modern idioms. Load when planning, implementing, or reviewing C/C++ code (.c, .cc, .cpp, .h, .hpp; CMake, Makefile).
minicpm5-deploy-arclight
ArcLight is a lightweight C/C++ LLM inference framework for unified-memory systems. The recommended path is to build from source, then run a GGUF model with al-gen, al-chat, or al-ppl.
add-uint-support
Add unsigned integer (uint) type support to PyTorch operators by updating ATDISPATCH macros. Use when adding support for uint16, uint32, uint64 types to operators, kernels, or when user mentions enabling unsigned types, barebones unsigned types, or uint support.
sqlitecpp-doxygen-guide
SQLiteCpp Doxygen standards and templates for public API docs and file headers.
cuda-index-width
Choose 32-bit vs 64-bit index math in PyTorch CUDA kernels. Use when fixing large-tensor indexing overflows, deciding whether to use int64t, canUse32BitIndexMath, CUDAKERNELLOOPTYPE, or ATDISPATCHINDEXTYPES, and when considering binary-size or performance impact of index-type templating.
spec-kitty-git-workflow
Understand how Spec Kitty manages git: what git operations Python handles automatically, what agents must do manually, worktree lifecycle, auto-commit behavior, merge execution, and the safe-commit pattern. Triggers: "how does spec-kitty use git", "worktree management", "auto-commit", "who commits what", "git…