full-stack-skills/rust-skills

rust-documentation

Design, write, build, test, and publish Rust documentation with rustdoc, cargo doc, doctests, intra-doc links, crate-level guides, examples, README synchronization, mdBook, docs.rs metadata, link checking, documentation CI, and the Rust API Guidelines Docum…

Ver código-fonte
Documento original do Skill

Renderizado do repositório de origem, preservando títulos, exemplos, código, tabelas, links e imagens.

Rust Documentation

Treat documentation as an executable interface. Keep API reference close to code, conceptual and operational guides in an appropriate book or repository document, and examples compiled against the supported API.

Scope and Routing

Use this skill for rustdoc comments, crate and module documentation, doctests, intra-doc links, README generation, mdBook, docs.rs configuration, link checking, spelling, and documentation release gates.

Route general test architecture to rust-testing, public API compatibility to rust-code-review, Cargo metadata and publishing to rust-cargo-build, API shape and trait design decisions to rust-api-design, and non-Rust office document formats to their dedicated document skills. This skill documents what already exists; rust-api-design decides what the API should be.

Workflow

1. Identify readers and documentation surfaces

Inventory public crates, binaries, features, targets, examples, READMEs, books, generated references, and hosted output. Define the audience and owner for each surface:

SurfacePrimary purpose
Crate and module docsEntry path, architecture, feature and platform overview
Item docsContract, errors, panics, safety, examples, complexity
Doctests and examplesExecutable usage and compatibility proof
READMEDiscovery, installation, minimal quick start, support policy
mdBookTutorials, concepts, operations, migration, long-form guides
docs.rsVersioned public API publication

Avoid duplicating the same prose across surfaces without a declared source of truth.

2. Document the contract

For each public API, document only applicable sections:

  • what the item does and important semantics;
  • # Examples with assertions and realistic imports;
  • # Errors for each meaningful failure category;
  • # Panics for reachable panic conditions;
  • # Safety for caller obligations on unsafe APIs;
  • cancellation, blocking, allocation, complexity, platform, feature, and MSRV constraints.

Prefer intra-doc links such as `[Client::send]` over brittle hand-written URLs. Enable broken-link checking at the crate boundary:

rust
#![deny(rustdoc::broken_intra_doc_links)]

Adopt missing_docs deliberately; do not enable it globally before deciding which public compatibility surface requires documentation.

Rust API Guidelines — Documentation Rules

The Rust API Guidelines define five documentation rules (C-DOC, C-DOC-COMMENT, C-META, C-EXAMPLE, C-LINK) that high-quality crates are expected to satisfy. Treat them as the acceptance bar for documentation of any public crate. Full rationale, anti-patterns, and worked examples live in API Guidelines — Documentation; this section is the routing summary.

C-DOC — Document all items

Every public item (function, struct, enum, trait, module, etc.) carries a doc comment. Enforce mechanically with the missing_docs lint:

rust
// src/lib.rs
#![deny(missing_docs)]

Decide the scope deliberately. #![deny(missing_docs)] at the crate root is the strongest policy; if some surfaces (sealed modules, generated code, deliberately unstable APIs) need exemptions, scope the lint with #[allow(missing_docs)] on the smallest possible item and record why.

C-DOC-COMMENT — /// versus //!

  • /// documents the next item (function, struct, field, module declared by name below it).
  • //! documents the current module or crate (placed at the top of a file, or inside a module body).
  • Both render Markdown and support intra-doc links [Foo].

Use //! at the top of src/lib.rs and any module root that needs an overview; use /// for every documented item.

C-META — Crate-level docs must cover essentials

src/lib.rs must open with //! documentation covering:

  • what the crate does and a link to usage examples;
  • how to get started (link to setup/integration docs or a quick start);
  • feature flags and what each enables;
  • Minimum Supported Rust Version (MSRV);
  • license, conventionally dual MIT OR Apache-2.0.

Run cargo doc --no-deps -p <crate> and check that the crate landing page reads as a self-contained overview, not just a module list.

C-EXAMPLE — Runnable examples with # Examples

Every public item should have a # Examples section. Examples should compile and run as doctests. Pick fence attributes precisely:

  • no attribute — compile and run;
  • ` no_run ``` — compile but skip execution (network, files, hardware);
  • ` ignore ``` — skip entirely, with a documented reason;
  • ` compile_fail ``` — only in proc-macro crates to demonstrate rejected input.

Avoid no_run as a disguise for broken examples; if a workflow needs files or credentials, move it into examples/ and test it as a real target.

C-LINK — Intra-doc links

Use [ItemType] and [ItemType::method] syntax so rustdoc resolves targets and tracks renames. Never hand-write paths to types in the same crate. Enable broken-link enforcement at the crate boundary:

rust
#![deny(rustdoc::broken_intra_doc_links)]

For full examples, anti-patterns, the lint matrix, and the verification commands per rule, read API Guidelines — Documentation.

3. Make examples executable

Use doctests for small public API contracts and examples/ crates for complete workflows. Mark fences precisely:

  • ordinary Rust fences compile and run;
  • no_run compiles code that requires unavailable external effects;
  • compile_fail proves rejected usage without locking full diagnostics;
  • ignore is a last resort with a documented reason.

Run:

bash
cargo test --workspace --doc --all-features
RUSTDOCFLAGS="-D warnings" cargo doc --workspace --all-features --no-deps

Read rustdoc and Doctests when authoring API documentation.

4. Build long-form guides with mdBook

Use mdBook for tutorials, architecture, operations, and migration material that would overload API docs. Keep SUMMARY.md as the explicit navigation contract. Test Rust code samples with mdbook test, build in CI, and check internal plus external links. Read mdBook and Project Guides.

5. Prepare versioned publication

Inspect package metadata, docs.rs target and feature configuration, README links, repository URLs, licenses, examples, and hidden/private APIs. Verify docs using the locked dependency graph and supported MSRV/current stable rather than only the author's machine.

Do not publish, change hosted documentation, or enable external analytics without authorization. Read Documentation Release Quality.

Quality Gates

bash
cargo fmt --all --check
cargo test --workspace --doc --all-features
RUSTDOCFLAGS="-D warnings" cargo doc --workspace --all-features --no-deps
mdbook test path/to/book
mdbook build path/to/book
lychee README.md docs book/src
typos README.md docs book/src src

Run only tools present in the project or approved for installation. Pin non-Rust documentation tools in CI and do not silently rewrite prose during a check-only job.

Completion Criteria

  • Give each audience a clear entry point and avoid conflicting sources of truth.
  • Document public errors, panics, safety, features, targets, and compatibility where applicable.
  • Compile and run representative documentation examples.
  • Reject broken intra-doc and repository links.
  • Build the same feature and target documentation intended for publication.
  • Record skipped external, platform, or hosted verification explicitly.

Resources

Upstream Sources

Data Privacy

This skill does not collect, store, or transmit user data. Review examples, generated source links, build logs, and hosted analytics for secrets or proprietary paths before publication.

do mesmo repositório

Mais Skills

Todos os Skills
full-stack-skills
Comunidade

rust-api-design

Design Rust library APIs that follow the Rust API Guidelines — naming (C-CASE, C-CONV, C-GETTER), interop traits (C-COMMON-TRAITS, C-CONVERT, C-ITER, C-SERDE), predictability (C-INTUITIVE, C-CONST), flexibility (C-GENERIC, C-NEWTYPE, C-EXT), type safety (C-BOOL, C-NONZERO, C-WRAPPER, C-STR), dependability (C-PANIC, C-UNWRAP), debuggability (C-DEBUG), and future-proofing (C-SEALED, C-STRUCT-FIELD, C-NON-EXHAUSTIVE). Use when users design a public crate API, choose between generics/concrete/newtype, decide trait bounds, hide implementation, avoid breakage, or ask "what is idiomatic Rust API design"; hand semver and publish workflow to rust-semver, lint config to rust-style-clippy, and in-crate layout to rust-module-layout.

instalações
1
GitHub Stars
5
Atualizado
19 de set.
full-stack-skills
Comunidade

rust-by-example

Show Rust patterns through short compilable examples — type conversions (From/Into/TryFrom/as/Deref), flow control (if let/while let/match/loop), functions and closures (Fn/FnMut/FnOnce, captures), modules (mod/use/pub/super/self), generics and traits (bounds/associated types/trait objects), error handling (?/Result/thiserror/anyhow), attributes (derive/cfg/inline/allow), unsafe (raw pointers/unions/ABI), procedural macros (derive/attribute/function-like), and inline asm. Use when users ask "how do I write X in Rust", need a concrete pattern with copy-pasteable code, or are migrating from Java/Python/Go/C++ and want the Rust equivalent; hand architecture decisions to rust-api-design/rust-workspace, std API selection to rust-stdlib, and async runtime to rust-concurrency.

instalações
1
GitHub Stars
5
Atualizado
19 de set.
full-stack-skills
Comunidade

rust-cargo-build

Configure, operate, diagnose, and automate Cargo for Rust packages and workspaces. Cover manifests and targets, commands, dependency resolution and features, profiles, build scripts, configuration and environment variables, caches and build diagnostics, cross-compilation, registries, packaging, publishing, metadata, CI reproducibility, and stable-versus-nightly feature gates. Use for Cargo.toml, Cargo.lock, .cargo/config.toml, cargo build/check/run/tree/metadata/package/publish, resolver or feature problems, build output and performance, private registries, and beginner Cargo workflows. Route crate selection and supply-chain audits to rust-dependencies, workspace topology to rust-workspace, test design to rust-testing, documentation design to rust-documentation, lint policy to rust-style-clippy, and API compatibility decisions to rust-semver.

instalações
1
GitHub Stars
5
Atualizado
19 de set.
full-stack-skills
Comunidade

rust-cli

Design, implement, test, and release production Rust command-line applications, including command contracts, subcommands, configuration precedence, stdin/stdout/stderr, exit codes, file safety, daemon IPC, terminal handling, packaging, and process-level tests. Use when users ask for a Rust CLI, command parser, clap integration, Unix-style pipelines, daemon clients, PTY/TUI behavior, shell completion, or CLI release engineering.

instalações
1
GitHub Stars
5
Atualizado
19 de set.