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/jxoesneon/ciel/cpp-developmentnpx skills add jxoesneon/Ciel --skill cpp-developmentgit clone --depth 1 https://github.com/jxoesneon/CielWrote 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/jxoesneon/ciel/cpp-development)<a href="https://agentmods.dev/skills/jxoesneon/ciel/cpp-development"><img src="https://agentmods.dev/badge/skills/jxoesneon/ciel/cpp-development.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.00024 | $0.00564 |
| Opus 5 | $0.00012 | $0.00282 |
| Sonnet 5 | $0.00005 | $0.00113 |
| Haiku 4.5 | $0.00002 | $0.00056 |
Grade A, and why
cpp-development 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 today.
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
CIEL ADAPTATION: C++ Development (Core Guidelines)
This skill formalizes the use of modern C++ (C++17/20+). it prioritizes resource safety (RAII) and the C++ Core Guidelines.
The Integrity Layer (RAII)
- No Raw Ownership: Never transfer ownership via raw pointers (
T*). Usestd::unique_ptrorstd::shared_ptr. - Resource Binding: Bind all resource lifetimes (Files, Locks, Sockets) to object lifetimes via RAII classes.
- Smart Allocation: Avoid
newanddelete. Usestd::make_uniqueandstd::make_shared.
Architectural Standards
- Immutability: Declaring objects
constorconstexprby default. Member functions must beconstunless they mutate state. - Type Safety: Use
enum classover plainenum. Prohibit C-style casts; usestatic_castordynamic_cast. - Interfaces: Pass "in" parameters by value for cheap types and
const&for expensive types.
TDD & Verification
- Framework: GoogleTest (gtest) + GoogleMock (gmock).
- CMake/CTest: Use
gtest_discover_tests()for stable discovery. Run with--output-on-failure. - Sanitizers: ALWAYS run tests with AddressSanitizer (ASan) and UndefinedBehaviorSanitizer (UBSan) in CI.
Anti-Patterns
- Naked New: Calling
newwithout immediately wrapping it in a smart pointer or RAII class. - Global Variables: Using non-const globals (violates I.2).
- Implicit Conversions: Allowing narrowing/lossy arithmetic conversions without explicit casting.
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.
- today First seen · 50 lines · 24 tokens per session scan A 5e20a2ad2d97
cpp-development is a skill published in the GitHub repository jxoesneon/Ciel (1 stars, last pushed 4d ago), licensed Apache-2.0. It adds 24 tokens to every session and 564 once invoked, about $0.0001 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-09-03.
Other skills, from other repositories
test-scaffold
Gera estrutura completa de testes automatizados (unitários, integração e edge cases) com base no código existente. Use para "escrever testes para este arquivo", "aumentar cobertura" ou "criar mocks".
cpp-testing
Use only when writing/updating/fixing C++ tests, configuring GoogleTest/CTest, diagnosing failing or flaky tests, or adding coverage/sanitizers.
verify
Run ACN's full Rust verification — formatting, Clippy, tests, and type checking — plus the canonical tmux smoke test when interactive TUI behavior is affected.
redpolicy-guide
Ред-политика для гайдов по вебинарам. Превращаем транскрибации вебинаров в структурированные самостоятельные тексты. Две части: быстрый старт + подробный разбор.
Code Quality Review
Conduct a comprehensive code quality review focused on clean code, architecture, and project standards.
ta-test-spec
Skill "ta-test-spec" from Grid0723/skills, covering ta-test-spec, leading words, 提交前检查, 测试规范 and 代码质量检查.