claudette rust.instructions.md

Project instructions for writing and maintaining Rust code in a specific application. Rust is a programming language that emphasizes explicit handling of memory, errors, and data ownership.

In plain words
What is it for?
Use them when adding Rust features, reviewing code, writing database migrations, changing Tauri commands, modelling data, or modifying process, terminal, plugin, workspace, and agent behaviour.
Why use it?
They give contributors consistent rules for formatting, code checks, module boundaries, database migrations, and application-layer responsibilities. This reduces accidental changes to important lifecycle behaviour.

Instructions file for GitHub Copilot

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 instructions/utensils/claudette/rust
Clone the repo
git clone --depth 1 https://github.com/utensils/claudette

Made for: GitHub Copilot.

Per session 498 This file is loaded in full into every session.
When invoked 498 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.00498 $0.00498
Opus 5 $0.00249 $0.00249
Sonnet 5 $0.00100 $0.00100
Haiku 4.5 $0.00050 $0.00050

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

Security

Grade A, and why

claudette rust.instructions.md 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 2d 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.

.github/instructions/rust.instructions.md · 20 lines

What it actually says

Rust code uses edition 2024, default rustfmt, and clippy with warnings denied in CI. Prefer clear ownership, explicit error handling, and small focused modules over large multi-purpose functions.

Keep crate boundaries intact. Business logic belongs in the claudette crate under src/. Tauri command files should parse inputs, open state/resources, call core services, and return serializable results. Do not move durable logic into the webview or into Tauri wrappers just because the caller is UI-driven.

Model types belong in src/model/, should be IO-free, and should derive Serialize. Database code should open fresh rusqlite connections per command because Connection is not Send.

For migrations, create a new timestamped SQL file and add a Migration entry. Do not modify released migration SQL. Prefer additive, forward-only migrations and include IF NOT EXISTS where appropriate.

For process, git, terminal, MCP, plugin, workspace, and agent changes, preserve current lifecycle semantics unless the task explicitly changes them: cancellation, cleanup, event ordering, worktree branch state, persisted session state, and streaming message chronology are regression-sensitive.

When adding backend behavior, add focused tests close to the changed module. Use tempfile::tempdir() for git repos and transient DBs. Use #[tokio::test] for async behavior.

Avoid expanding god files. If adding a separate concern to src/diff.rs, src/git.rs, src/plugin.rs, src/mcp.rs, src/mcp_supervisor.rs, src-tauri/src/ipc.rs, src-tauri/src/voice.rs, or a large command file, extract a helper module or domain file and keep the entry point as orchestration.

Gate OS-specific code with #[cfg(windows)], #[cfg(unix)], #[cfg(target_os = "macos")], or matching negative cfgs. Do not assume Unix paths or shells in cross-platform code. Never spawn a subprocess with a raw std::process::Command::new / tokio::process::Command::new — on Windows that flashes a blank cmd.exe console window in release builds. Use the claudette::process helper or CommandWindowExt::no_console_window(); use .new_console_window() only for a terminal the user intentionally opens.

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. 2d ago First seen · 20 lines · 498 tokens per session scan A 1b3734a9b4f6

Subscribe to this mod's changes

claudette rust.instructions.md is an instructions file published in the GitHub repository utensils/claudette (75 stars, last pushed 2d ago), licensed MIT. It adds 498 tokens to every session, about $0.0025 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.

Related

Other instructions, from other repositories

kungfu copilot-instructions.md

Copilot instructions for kungfu-systems/kungfu: Read and follow AGENTS.md before proposing or running changes. It is the shared agent router for this repository, including the canonical Shifu development and build entrypoint.

kungfu-systems/kungfu · 45 tokens

sofagent GEMINI.md

Instructions for KongFangXun/sofagent, covering gemini.md · sofagent gemini cli 适配(薄挂载), 会话开始时按序加载(四层加载链), 审计强制(平台无关) and 连接 mcp server.

KongFangXun/sofagent · 464 tokens

agents CLAUDE.md

Instructions for eloylp/agents, covering claude.md, project overview, directory structure, config model and build & run.

eloylp/agents · 5,296 tokens

ideate AGENTS.md

Instructions for paultyng/ideate, covering agents.md, build features as mcp tools first, ui second, when to add ui and pattern.

paultyng/ideate · 641 tokens

growmos AGENTS.md

Instructions for codician-team/growmos: This repository keeps a knowledge graph in .growmos/ (entities, typed relations, provenance, profiles, a journal). It is the shared world model that survives context windows. Treat it as memory you read at the start of work and write to as you develop. Zero-config commands.

codician-team/growmos · 606 tokens

omk CLAUDE.md

Claude Code instructions for dmae97/omk, covering claude.md, precedence (read this first), omk runtime map (what you're operating inside), this repo: open-multi-agent-kit / omk monorepo and build / test / check commands.

dmae97/omk · 1,841 tokens