AI студия Владимира Ломтева
УСЛУГИПРОЕКТЫСТАТЬИБАЗА ЗНАНИЙМаркетплейсПолезные сервисы

Оставьте заявку,
чтобы обсудить проект

Напишите ваш вопрос, не забудьте указать телефон. Мы перезвоним и все расскажем.

Контакты

Москва

Работаем по всей России
и миру (онлайн)

+7 (999) 760-24-41

Ежедневно с 9:00 до 21:00

lamooof@gmail.com

По вопросам сотрудничества

TelegramWhatsApp

Есть предложение?

Напишите нам в мессенджеры

© 2025 AI студия Владимира Ломтева

Политика конфиденциальностиСогласие на обработку ПДн|ИНН 623412173261
    Rust Best Practices — Скилл для ИИ-агентов | AI Рассвет

    Rust Best Practices

    Guide for writing idiomatic Rust code based on Apollo GraphQL's best practices handbook. Use this skill when: (1) writing new Rust code or functions, (2) reviewing or refactoring existing Rust code, (3) deciding between borrowing vs cloning or ownership patterns, (4) implementing error handling with Result types, (5) optimizing Rust code for performance, (6) writing tests or documentation for Rust projects.

    Скиллы для разработки#GitHub#apollographql/skills#skills.sh
    Скачивания
    0
    В избранном
    0
    Комментарии
    0
    Просмотры
    3

    Установить скилл

    Добавьте инструмент одной командой или скачайте проверенный архив версии.

    npx skills add apollographql/skills --skill rust-best-practices
    Скачать ZIP
    Версия
    1.0.0+c288eb80629d
    Автор
    Владимир Ломтев
    Репозиторий
    apollographql/skills
    GitHub: apollographql/skills

    Как установить

    1. 1Скопируйте команду из блока установки.
    2. 2Запустите её в терминале из каталога проекта.

    Документация

    Rust Best Practices

    Apply these guidelines when writing or reviewing Rust code. Based on Apollo GraphQL's Rust Best Practices Handbook.

    Best Practices Reference

    Before reviewing, familiarize yourself with Apollo's Rust best practices. Read ALL relevant chapters in the same turn in parallel. Reference these files when providing feedback:

    • Chapter 1 - Coding Styles and Idioms: Borrowing vs cloning, Copy trait, Option/Result handling, iterators, comments, when to extract a function (duplication vs. wrong abstraction)
    • Chapter 2 - Clippy and Linting: Clippy configuration, important lints, workspace lint setup
    • Chapter 3 - Performance Mindset: Profiling, avoiding redundant clones, stack vs heap, zero-cost abstractions
    • Chapter 4 - Error Handling: Result vs panic, thiserror vs anyhow, error hierarchies
    • Chapter 5 - Automated Testing: Test naming, one assertion per test, snapshot testing
    • Chapter 6 - Generics and Dispatch: Static vs dynamic dispatch, trait objects
    • Chapter 7 - Type State Pattern: Compile-time state safety, when to use it
    • Chapter 8 - Comments vs Documentation: When to comment, doc comments, rustdoc
    • Chapter 9 - Understanding Pointers: Thread safety, Send/Sync, pointer types

    Quick Reference

    Borrowing & Ownership

    • Prefer &T over .clone() unless ownership transfer is required
    • Use &str over String, &[T] over Vec<T> in function parameters
    • Small Copy types (≤24 bytes) can be passed by value
    • Use Cow<'_, T> when ownership is ambiguous

    Error Handling

    • Return Result<T, E> for fallible operations; avoid panic! in production
    • Never use unwrap()/expect() outside tests
    • Use thiserror for library errors, anyhow for binaries only
    • Prefer ? operator over match chains for error propagation

    Performance

    • Always benchmark with --release flag
    • Run cargo clippy -- -D clippy::perf for performance hints
    • Avoid cloning in loops; use .iter() instead of .into_iter() for Copy types
    • Prefer iterators over manual loops; avoid intermediate .collect() calls

    Linting

    Run regularly: cargo clippy --all-targets --all-features --locked -- -D warnings

    Key lints to watch:

    • redundant_clone - unnecessary cloning
    • large_enum_variant - oversized variants (consider boxing)
    • needless_collect - premature collection

    Use #[expect(clippy::lint)] over #[allow(...)] with justification comment.

    Testing

    • Name tests descriptively: process_should_return_error_when_input_empty()
    • One assertion per test when possible
    • Use doc tests (///) for public API examples
    • Consider cargo insta for snapshot testing generated output

    Generics & Dispatch

    • Prefer generics (static dispatch) for performance-critical code
    • Use dyn Trait only when heterogeneous collections are needed
    • Box at API boundaries, not internally

    Type State Pattern

    Encode valid states in the type system to catch invalid operations at compile time:

    struct Connection<State> { /* ... */ _state: PhantomData<State> }
    struct Disconnected;
    struct Connected;
    
    impl Connection<Connected> {
        fn send(&self, data: &[u8]) { /* only connected can send */ }
    }
    

    Documentation

    • // comments explain why (safety, workarounds, design rationale)
    • /// doc comments explain what and how for public APIs
    • Every TODO needs a linked issue: // TODO(#42): ...
    • Enable #![deny(missing_docs)] for libraries

    Требования и возможности

    Источник пакета
    https://github.com/apollographql/skills/tree/c288eb80629dd2309eed81f23d693f66a452d043/skills/rust-best-practices

    Файлы версии

    ПутьРазмерSHA256
    SKILL.md4405e2e93a95c899079e...
    references/chapter_01.md2526705aed21a95cce7a9...
    references/chapter_02.md545305c6495150ea1b3a...
    references/chapter_03.md8785160883f80db912c7...
    references/chapter_04.md70823257b7dfa06698bd...

    Частые вопросы

    Как установить Rust Best Practices?
    Используйте команду npx skills add apollographql/skills --skill rust-best-practices или скачайте ZIP-архив.
    Можно ли скачать Rust Best Practices бесплатно?
    Да, опубликованную версию можно скачать из маркетплейса бесплатно.

    Похожие инструменты

    Смотреть все
    React DoctorUse when finishing a feature, fixing a bug, before committing React code, or when the user types `/doctor`, asks to scan, triage, or clean up React diagnostics. Covers lint, accessibility, bundle size, architecture. Includes a regression check and a full local-triage workflow that fetches the canonical playbook.Argent Android Emulator SetupSet up and connect to an Android emulator using argent MCP tools. Use when starting a new session on Android, booting an emulator, getting a device serial, or before any UI interaction task.Fireworks Tech GraphCreate technical diagrams such as software architecture, data flow, flowcharts, sequence diagrams, C4 reviews, cloud deployments, event streams, observability investigations, agent/memory systems, UML, ER, network topology, timelines, and technical concept maps, then export SVG, PNG, focused semantic SVG-to-GIF motion, or offline interactive HTML. Treat direct requests such as "Generate a GIF", "生成 GIF", or "制作 GIF" as motion requests, and use this skill when the user asks to visualize a system or engineering concept. Do not use for photos, raster artwork, or quantitative data charts.
    Комментарии

    Войдите, чтобы оставить комментарий.

    Комментариев пока нет.

    Установить скилл

    Добавьте инструмент одной командой или скачайте проверенный архив версии.

    npx skills add apollographql/skills --skill rust-best-practices
    Скачать ZIP
    Версия
    1.0.0+c288eb80629d
    Автор
    Владимир Ломтев
    Репозиторий
    apollographql/skills
    GitHub: apollographql/skills
    Modern Web GuidanceSearch tool for modern web development best practices. MANDATORY: Execute FIRST for all HTML/CSS and clientside JS tasks. Do NOT skip — web APIs evolve rapidly and training weights contain obsolete patterns.