rust

rust is a cursor rule for coding agents from ItamarZand88/awesome-agent-conventions. It costs 1,058 tokens per session, scanned A, original, MIT.

A set of Rust coding guidelines for Solana smart contracts built with Anchor, a framework for writing and checking Solana programs. It covers program structure, account validation, data serialization, cross-program calls, and testing.

In plain words
What is it for?
Use it when creating or reviewing Anchor programs, instruction handlers, account definitions, errors, utilities, serialization code, and related tests.
Why use it?
It gives agents established patterns for separating program logic and validating accounts safely. This reduces ambiguity when working with Anchor programs and Solana’s account-based system.

Cursor rule

Install

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.

agentmods
npx agentmods add rules/itamarzand88/awesome-agent-conventions/rust
Clone the repo
git clone --depth 1 https://github.com/ItamarZand88/awesome-agent-conventions

Wrote 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.

agentmods badge for rust

README.md
[![agentmods](https://agentmods.dev/badge/rules/itamarzand88/awesome-agent-conventions/rust.svg)](https://agentmods.dev/rules/itamarzand88/awesome-agent-conventions/rust)
Your own site
<a href="https://agentmods.dev/rules/itamarzand88/awesome-agent-conventions/rust"><img src="https://agentmods.dev/badge/rules/itamarzand88/awesome-agent-conventions/rust.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,058 This file is loaded in full into every session.
When invoked 1,058 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5 $0.01058 $0.01058
Opus 5 $0.00529 $0.00529
Sonnet 5 $0.00212 $0.00212
Haiku 4.5 $0.00106 $0.00106

Measured 4d ago against content hash afe2b3e22302, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

rust 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 4d 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.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

  • rust — 94% identical, 5 lines differ
conventions/agent-rules/examples/awesome-cursorrules-rust/rust.mdc · 87 lines

How it starts

The opening of the file, as written. The whole thing — 87 lines — stays where its author put it; the contents beside it link to each section on GitHub.


description: "Rust best practices for Solana smart contract development using Anchor framework and Solana SDK" globs: programs//*.rs, src//.rs, tests/**/.ts alwaysApply: false

Rust + Solana (Anchor) Best Practices

Program Structure

  • Structure Solana programs using Anchor framework standards
  • Place program entrypoint logic in lib.rs, not main.rs
  • Organize handlers into modules (e.g., initialize, update, close)
  • Separate state definitions, errors, instructions, and utils
  • Group reusable logic under a utils module (e.g., account validation)
  • Use declare_id!() to define program ID

Anchor Framework

  • Use #[derive(Accounts)] for all instruction contexts
  • Validate accounts strictly using constraint macros (e.g., #[account(mut)], seeds, bump])
  • Define all state structs with #[account] and #[derive(AnchorSerialize, AnchorDeserialize)]
  • Prefer Init, Close, Realloc, Mut, and constraint macros to avoid manual deserialization
  • Use ctx.accounts to access validated context accounts
  • Handle CPI (Cross-Program Invocation) calls via Anchor’s CPI helpers

Serialization

  • Use Borsh or Anchor's custom serializer (not Serde) for on-chain data
  • Always include #[account(zero_copy)] or #[repr(C)] for packed structures
  • Avoid floating point types — use u64, u128, or fixed-point math
  • Zero out or close unused accounts to reduce rent costs

Testing

  • Write tests in TypeScript using Anchor’s Mocha + Chai setup (tests/*.ts)
  • Use anchor.workspace.MyProgram to load deployed contracts
  • Use provider.simulate() to inspect failed txs
  • Spin up a local validator (anchor test) and reset between tests
  • Airdrop SOL to wallets with provider.connection.requestAirdrop(...)
  • Validate program logs using tx.confirmation.logMessages

Solana SDK (Manual)

  • Use solana_program crate when not using Anchor (bare-metal programs)
  • Carefully deserialize accounts using AccountInfo, try_from_slice_unchecked
  • Use solana_program::msg! for lightweight debugging logs
  • Verify accounts via is_signer, is_writable, key == expected
  • Never panic! Use ProgramError::Custom(u32) or ErrorCode enums

Read the full file on GitHub · 87 lines

Changes

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.

  1. 4d ago First seen · 87 lines · 1,058 tokens per session scan A afe2b3e22302

Subscribe to this mod's changes

rust is a cursor rule published in the GitHub repository ItamarZand88/awesome-agent-conventions (29 stars, last pushed 1mo ago), licensed MIT. It adds 1,058 tokens to every session, about $0.0053 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-30.