بنقرة واحدة
testing
Apply when writing or running tests, or updating insta snapshots, in this repo.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Apply when writing or running tests, or updating insta snapshots, in this repo.
التثبيت باستخدام 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 editing Rust code in this crate — idioms, error handling, logging, docs, and lint rules.
| name | testing |
| description | Apply when writing or running tests, or updating insta snapshots, in this repo. |
cargo test --all-features. Prefer red-green (see karpathy-principle).cargo insta review (or cargo insta accept). Never blindly accept. Snapshots live in per-module snapshots/ dirs.src/gnomad_sv/cli/snapshots/*.snap is LFS-tracked; other .snap files are plain git. Have git lfs installed so those resolve.rstest for parameterized tests/fixtures; test-log + tracing-test to capture/assert on logs; temp_testdir/tempfile for scratch dirs; pretty_assertions for diffs.tests/ mirror the module list.