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 rules/quinnjr/skia-rs/code-stylegit clone --depth 1 https://github.com/quinnjr/skia-rsWhat 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.00626 | $0.00626 |
| Opus 5 | $0.00313 | $0.00313 |
| Sonnet 5 | $0.00125 | $0.00125 |
| Haiku 4.5 | $0.00063 | $0.00063 |
Grade A, and why
code-style 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 yesterday.
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 — 99 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Code Style & Conventions
Rust Edition & Version
- Edition: 2024
- MSRV: 1.85
- All code must compile on stable Rust
Naming Conventions
- Follow Skia's naming where possible for API compatibility
- Use
snake_casefor functions and variables - Use
PascalCasefor types and traits - Prefix internal/private items with underscore only when necessary
- Crate names:
skia-rs-{module}(hyphenated) - Module imports:
skia_rs_{module}(underscored)
Type Aliases
// Core type alias - matches Skia's SkScalar
pub type Scalar = f32;
Documentation
- All public items MUST have doc comments
- Use
//!for module-level documentation - Include examples in doc comments for complex APIs
- Reference corresponding Skia types/functions in docs
/// A 2D point with floating-point coordinates.
///
/// Corresponds to Skia's `SkPoint`.
///
/// # Examples
/// ```
/// use skia_rs_core::Point;
/// let p = Point::new(10.0, 20.0);
/// assert_eq!(p.length(), (500.0_f32).sqrt());
/// ```
#[derive(Debug, Clone, Copy, PartialEq, Default)]
#[repr(C)]
pub struct Point {
pub x: Scalar,
pub y: Scalar,
}
Error Handling
- Use
thiserrorfor error types - Prefer
Option<T>overResult<T, E>for simple failure cases (matching Skia patterns) - Never panic in library code except for invariant violations
- Use
debug_assert!for development-time checks
Memory & Performance
- Use
#[repr(C)]for FFI-compatible structs - Derive
bytemuck::{Pod, Zeroable}for types that need zero-copy operations - Use
SmallVecfor small, stack-allocated collections - Prefer
&selfover&mut selfwhere possible - Avoid allocations in hot paths
use bytemuck::{Pod, Zeroable};
#[derive(Debug, Clone, Copy, Pod, Zeroable)]
#[repr(C)]
pub struct Color(pub u32);
Inline Hints
- Use
#[inline]for small, frequently-called methods - Use
#[inline(always)]sparingly, only for critical hot paths - Let the compiler decide for complex functions
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.
- yesterday First seen · 99 lines · 626 tokens per session scan A 48049c93b29a
code-style is a cursor rule published in the GitHub repository quinnjr/skia-rs (31 stars, last pushed 13d ago), licensed Apache-2.0. It adds 626 tokens to every session, about $0.0031 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-01.
Other cursor rules, from other repositories
rust
When working on imageflow, we want to preserve comments in the code - ALWAYS - since they help us remember corner cases. Always repeat them back out into the new code. And always load /imageflowtypes/src/lib.rs into memory, since we use it in every rust file.
core
Core STT/TTS abstraction layer documentation.
rust-architect
PoolAI — Rust Architect workflow: runtime stack, MSYS2, target/ disk, pre-push checks, docs sync.
collection-iterators
How to implement and test iterators on APAS-VERUS collection modules.
table-of-contents-standard
Standard section ordering and TOC format for Verus source files.
ptt-commands
Commands for building and running Proof Time Tests (PTTs).