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 skills add xonovex/platform --skill c99-opinionated-guidegit clone --depth 1 https://github.com/xonovex/platformWrote 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/xonovex/platform/c99-opinionated-guide)<a href="https://agentmods.dev/skills/xonovex/platform/c99-opinionated-guide"><img src="https://agentmods.dev/badge/skills/xonovex/platform/c99-opinionated-guide.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.1 | $0.00142 | $0.01761 |
| Opus 5 | $0.00071 | $0.00881 |
| Sonnet 5 | $0.00028 | $0.00352 |
| Haiku 4.5 | $0.00014 | $0.00176 |
Grade A, and why
c99-opinionated-guide 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 8d 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.
How it starts
The opening of the file, as written. The whole thing — 61 lines — stays where its author put it; the contents beside it link to each section on GitHub.
C99 Opinionated Guidelines (Systems/Game/Embedded)
Essentials
- Overlay on c99-guide - This guide carries only the opinionated decisions. For the shared C99 idioms:
const-correctness, designated initializers (ZII),inline-over-macros, compound literals, fixed-width types, value-oriented APIs, and baseline error/return patterns, follow c99-guide - Memory management - This style's defining choice is caller-owned storage with no hidden library allocation; apply memory-management-guide, then enforce the C99 buffer boundary in references/safety-validations.md
- Data-oriented design - Layout/cache is a core choice of this style: apply data-oriented-design-guide
- Quality - Pin strict C99,
-Werrorfor correctness but relax the unused-symbol family for libraries, keep an ASan/UBSan debug build, run static analysis, see references/build-warnings-policy.md
Architecture
- Implementation variants - Ship scalar → AoS → SoA → SIMD with
_*suffixes + parity tests; layout rationale in data-oriented-design-guide, see references/implementation-variants.md - Handles & indices - Apply data-oriented-design-guide for stable-handle layout and iteration tradeoffs; enforce C99 check ordering and pointer lifetime in references/safety-validations.md
- Alignment - Strict C99 has no portable over-alignment syntax; isolate a compiler-specific alignment macro and use an explicitly exposed platform allocator, see references/alignment.md; the why is in data-oriented-design-guide (SIMD) and lock-free-guide (false sharing)
- Composability - Composable stages/primitives over a uniform currency, explicit caller-wired composition, see references/composability.md
- Hot reload - Reloadable native modules via API/function-pointer tables + host-owned state, see references/hot-reload.md
- Physical design - Headers don't include headers; one header = one system's interface; opaque handles + forward declarations; acyclic deps and fast incremental builds, see references/physical-design.md
- Plugin architecture - Small plugins talking through a string-keyed registry of plain-C function-pointer interfaces; runtime discovery, lean core, see references/plugin-architecture.md
- Cross-language APIs - Plain-C portable-subset surface, flat data over pointers, call-scoped pointers, spec-generated bindings, see references/cross-language-api.md
- File naming -
*_type.h,*_impl.h,*_aos.h,*_soa.h,*_simde.h, see references/file-naming.md
What ships with it
14 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- eval-queries.json 5.9 KB
- evals.json 2.8 KB
- references/alignment.md 1.9 KB
- references/build-warnings-policy.md 1.8 KB
- references/composability.md 2.7 KB
- references/cross-language-api.md 3.1 KB
- references/file-naming.md 614 B
- references/hot-reload.md 2.9 KB
- references/implementation-variants.md 1.4 KB
- references/physical-design.md 2.8 KB
- references/plugin-architecture.md 3.5 KB
- references/safety-validations.md 1.7 KB
- references/testing-patterns.md 1008 B
- SOURCES.md 4.7 KB
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.
- 8d ago First seen · 61 lines · 142 tokens per session scan A a4ebe3a97b10
c99-opinionated-guide is a skill published in the GitHub repository xonovex/platform (5 stars, last pushed 2d ago), licensed MIT. It adds 142 tokens to every session and 1,761 once invoked, about $0.0007 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
implementing-jsc-classes-cpp
Implements JavaScript classes in C++ using JavaScriptCore. Use when creating new JS classes with C++ bindings, prototypes, or constructors.
code-navigation
Use when navigating or changing Swift, Objective-C, C or C++ code — finding where a symbol is defined, who calls it, what implements a protocol, what a change would break, what a package or type exposes, or what changed between revisions. Says when to ask the sextant MCP server instead of running Grep, Glob or reading…
cpp-pro
Write idiomatic C++ code with modern features, RAII, smart pointers, and STL algorithms. Handles templates, move semantics, and performance optimization. Use PROACTIVELY for C++ refactoring, memory safety, or complex C++ patterns.
c-pro
Write efficient C code with proper memory management, pointer arithmetic, and system calls. Handles embedded systems, kernel modules, and performance-critical code. Use PROACTIVELY for C optimization, memory issues, or system programming.
static-rust
Use for Soma built-in Rust actions, scaffold intent collection, MCP elicitation flows, and CLI/REST action reference.
windows-automation
Best-in-class Windows automation using Python (UI Automation) and AutoHotkey.