npx skills add smithery/plurigrid --skill cargo-rust
plurigrid/asi
cargo-rust
Rust package manager and build system. Cargo commands, dependency management, and workspace patterns.
Installation
npx skills add plurigrid/asi --skill cargo-rust
Similar popular skills
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Guidance for distinctive, intentional visual design when building new UI or reshaping an existi…
866.4K installsBrowser automation CLI for AI agents. Use when the user needs to interact with websites, includ…
810.4K installsReview UI code for Web Interface Guidelines compliance. Use when asked to "review my UI", "chec…
617.3K installsBuild, deploy, evaluate, optimize, fine-tune, and manage Microsoft Foundry agents, models, and …
576.5K installsDebug Azure production issues on Azure using AppLens, Azure Monitor, resource health, and safe …
568.9K installsAlso in this package
Other skills from plurigrid/asi · top by installs.
npx skills add plurigrid/asi
More details
Agent compatibility
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Also listed on
Alternate registries and mirrors of this skill.
Repository health
main
Skill metadata
Parsed from SKILL.md frontmatter.
More metadata
- trit
- -1
- version
- 1.0.0
- bundle
- tooling
Package contents
Files included with this skill beyond the listing page.
-
skill md
SKILL.md1,376 B -
docs
SUMMARY.md119 B
History
- First seen on skills.sh
- First recorded snapshot · 10 installs
SKILL.md
Cargo Rust Skill
Trit: -1 (MINUS - build verification and constraint checking) Foundation: Cargo + rustc + crates.io
Core Concept
Cargo manages Rust projects with:
- Dependency resolution
- Build orchestration
- Testing and benchmarking
- Publishing to crates.io
Commands
# Build
cargo build
cargo build --release
# Test
cargo test
cargo test --lib
# Check (fast)
cargo check
cargo clippy
# Run
cargo run
cargo run --release
# Add dependency
cargo add serde
cargo add serde --features derive
Workspace Pattern
# Cargo.toml (workspace root)
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.dependencies]
serde = { version = "1.0", features = ["derive"] }
GF(3) Integration
fn trit_from_build(result: &BuildResult) -> i8 {
match result {
BuildResult::Error(_) => -1, // MINUS: compilation failure
BuildResult::Warning(_) => 0, // ERGODIC: warnings
BuildResult::Success => 1, // PLUS: clean build
}
}
Canonical Triads
cargo-rust (-1) ⊗ acsets (0) ⊗ gay-mcp (+1) = 0 ✓
cargo-rust (-1) ⊗ nickel (0) ⊗ world-hopping (+1) = 0 ✓