一键导入
rust
Apply when writing or editing Rust code in this crate — idioms, error handling, logging, docs, and lint rules.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Apply when writing or editing Rust code in this crate — idioms, error handling, logging, docs, and lint rules.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Apply for build/test/lint, dependency or feature changes, and editing Cargo.toml or .cargo config in this repo.
Apply when creating or tracking a GitHub issue, or planning multi-step work — the issue template and the task convergence loop.
Apply when changing the REST API surface — actix handlers, utoipa annotations, or request/response types under server/.
Apply when editing .proto files or the generated protobuf types (src/pbs/*) in this repo.
Apply when working with RocksDB storage — importing datasets, key encoding, column families, or query paths.
Apply when writing or running tests, or updating insta snapshots, in this repo.
| name | rust |
| description | Apply when writing or editing Rust code in this crate — idioms, error handling, logging, docs, and lint rules. |
anyhow::Result for application/CLI paths (add .context(...)); thiserror for library error types (central src/error.rs Error enum, #[from]/#[source]).unwrap/expect/panic!/todo! on reachable paths — return Result. Tests may unwrap.#![warn(missing_docs)] is on — every public item needs a doc comment.tracing spans/events, not println!. Verbosity via clap-verbosity-flag.rayon iterators for data-parallel imports (RAYON_NUM_THREADS honored).cargo clippy --all-features --workspace -- -D warnings — warnings fail the build. Run cargo fmt before finishing.