一键导入
cargo-ecosystem
Master Cargo, testing, and Rust development tools. Use when configuring Cargo.toml, setting up workspaces, build profiles, or development tooling.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Master Cargo, testing, and Rust development tools. Use when configuring Cargo.toml, setting up workspaces, build profiles, or development tooling.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Create or update a release version entry in version.md. Use when drafting a new version, cutting a release, or when the user asks to create or update release notes.
Application overview for frename. Use when: orienting to the project for the first time, deciding which crate or module to touch, understanding what the app does end-to-end, looking up where a concept lives (tags, files, ordering, colors), or understanding keyboard shortcuts and the tag/file lifecycle.
Core development guide for frename-core. Use when: adding or changing traits (StoredTagStore, AppStateStore), modifying TagList logic, working with OrderedCollection, adding Tag fields, changing FileSnapshot/FileTagger, writing core tests, or adding database schema/migrations.
Image preview implementation guide for frename. Use when: adding or changing the media_viewer feature, working with FileKind classification, changing how FolderWorkspace opens files, adding JPEG or HEIC/HEIF decoding, understanding the no-unload path for images, or moving video_player into media_viewer.
UI + core combination guide for frename. Use when: wiring a new feature that spans both UI state and core data, deciding where logic lives (core vs UI), connecting a new message to a core operation, changing how file workspace or folder workspace coordinates with TagList or AppDatabase, or understanding the data flow between a user action and disk write.
Undo/redo implementation guide for frename. Use when: implementing the undo infrastructure in frename-core, adding a new undoable command, wiring Ctrl+Z/Ctrl+Y in the UI, or understanding how History, UndoContext, and commands interact.
| name | cargo-ecosystem |
| description | Master Cargo, testing, and Rust development tools. Use when configuring Cargo.toml, setting up workspaces, build profiles, or development tooling. |
Master Rust's build system, package manager, and development tools.
# Project management
cargo new my_project # Create binary project
cargo new my_lib --lib # Create library project
cargo init # Initialize in existing dir
# Build & Run
cargo build # Debug build
cargo build --release # Optimized build
cargo run # Build and run
cargo run --release # Optimized run
# Testing
cargo test # Run all tests
cargo test test_name # Run specific test
cargo test -- --nocapture # Show output
# Quality
cargo fmt # Format code
cargo clippy # Lint code
cargo doc --open # Generate docs
[package]
name = "my-app"
version = "0.1.0"
edition = "2021"
rust-version = "1.75"
authors = ["You <you@example.com>"]
description = "A sample application"
license = "MIT"
repository = "https://github.com/you/my-app"
[dependencies]
tokio = { version = "1", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
thiserror = "1.0"
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
proptest = "1.0"
[profile.release]
lto = true
codegen-units = 1
opt-level = 3
[[bin]]
name = "my-app"
path = "src/main.rs"
[[bench]]
name = "my_benchmark"
harness = false
pub fn add(a: i32, b: i32) -> i32 {
a + b
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_add() {
assert_eq!(add(2, 2), 4);
}
#[test]
#[should_panic(expected = "overflow")]
fn test_panic() {
// Expected to panic
}
#[test]
#[ignore]
fn slow_test() {
// Run with: cargo test -- --ignored
}
}
// tests/integration_test.rs
use my_crate::public_function;
#[test]
fn test_public_api() {
assert!(public_function().is_ok());
}
// benches/my_benchmark.rs
use criterion::{criterion_group, criterion_main, Criterion};
fn benchmark(c: &mut Criterion) {
c.bench_function("my_function", |b| {
b.iter(|| my_function())
});
}
criterion_group!(benches, benchmark);
criterion_main!(benches);
# Install components
rustup component add rustfmt clippy
# Format
cargo fmt
cargo fmt -- --check # CI check
# Lint
cargo clippy
cargo clippy -- -D warnings # Strict mode
cargo clippy --fix # Auto-fix
# Install useful tools
cargo install cargo-watch # Auto-rebuild
cargo install cargo-edit # cargo add/rm
cargo install cargo-nextest # Fast parallel tests
cargo install cargo-audit # Security check
cargo install cargo-bloat # Binary size analysis
edition = "2021"
max_width = 100
use_small_heuristics = "Max"
tab_spaces = 4
[alias]
t = "test"
c = "clippy"
b = "build --release"
[build]
rustflags = ["-D", "warnings"]
# Root Cargo.toml
[workspace]
members = [
"core",
"cli",
"server",
]
[workspace.dependencies]
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }