plurigrid/asi

cargo

Rust package manager (36 subcommands).

First seen Jan 29, 2026

Installation

$ npx skills add plurigrid/asi --skill cargo

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from plurigrid/asi · top by installs.

npx skills add plurigrid/asi

Browse all from 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.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 62
License LICENSE
Default branch main
Open issues 3
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

More metadata
trit
0

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 680 B
  • docs SUMMARY.md 51 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 7 installs

SKILL.md

cargo

Rust package manager (36 subcommands).

Build

cargo build --release
cargo check
cargo test
cargo run
cargo bench

Package

cargo new myproject
cargo init
cargo add serde
cargo remove tokio

Dependencies

cargo tree
cargo update
cargo fetch

Publish

cargo publish
cargo search regex
cargo install ripgrep

Workspace

# Cargo.toml
[workspace]
members = ["crates/*"]

[dependencies]
serde = { version = "1.0", features = ["derive"] }

Fix

cargo fix --edition
cargo clippy --fix
cargo fmt