rust▌
37 indexed skills · max 10 per page
ralph-tui-create-beads-rust
subsy/ralph-tui · Frontend
Convert PRDs to executable beads for ralph-tui using beads-rust CLI. \n \n Extracts quality gates from PRD and appends them to every story's acceptance criteria \n Creates an epic with right-sized child beads (one story per bead, completable in a single agent iteration) \n Establishes dependencies between beads using br dep add to enforce execution order (schema → backend → UI) \n Outputs br create and br dep add commands with safe HEREDOC syntax for special characters \n Syncs beads to .beads/
rust-call-graph
zhanghandong/rust-skills · Backend
Visualize Rust function call graphs with configurable depth and direction using LSP. \n \n Supports three query directions: incoming calls (who calls this), outgoing calls (what this calls), and bidirectional analysis \n Configurable traversal depth (default 3 levels) to control graph scope and complexity \n Generates ASCII tree visualizations with entry points, leaf functions, and hot path analysis \n Includes complexity insights and potential issues flagging (high fan-out, multiple callers) \n
rust-code-navigator
zhanghandong/rust-skills · Backend
Navigate Rust code using Language Server Protocol for definitions, references, and symbol information. \n \n Supports three core LSP operations: go to definition, find references, and hover information for type/documentation lookup \n Handles workspace symbol search with disambiguation when multiple results exist, plus file-specific navigation with line numbers \n Includes error handling for missing rust-analyzer, typos, and generics/macros that produce multiple definitions \n Output formatted a
rust-daily
actionbook/rust-skills · Backend
Version: 2.1.0 | Last Updated: 2025-01-27
rust-deps-visualizer
actionbook/rust-skills · Backend
Generate ASCII art visualizations of your Rust project's dependency tree.
rust-router
actionbook/rust-skills · Backend
Version: 2.0.0 | Last Updated: 2025-01-22
rust-code-navigator
actionbook/rust-skills · Backend
Navigate large Rust codebases efficiently using Language Server Protocol.
rust-trait-explorer
actionbook/rust-skills · Backend
Discover trait implementations and understand polymorphic designs.
rust-symbol-analyzer
actionbook/rust-skills · Backend
Analyze project structure by examining symbols across your Rust codebase.
rust-desktop-applications
bobmatnyc/claude-mpm-skills · Backend
Rust has emerged as a premier language for building desktop applications that combine native performance with memory safety. The ecosystem offers two main approaches: Tauri for hybrid web UI + Rust backend apps (think Electron but 10x smaller and faster), and native GUI frameworks like egui, iced, and slint for pure Rust interfaces.