From rust-skills
Generates and syncs local skills for Rust crate dependencies from Cargo.toml. Prompts on project open or use /sync-crate-skills, /update-crate-skill, /clean-crate-skills.
How this skill is triggered — by the user, by Claude, or both
Slash command
/rust-skills:core-dynamic-skills [--force] | <crate_name>[--force] | <crate_name>general-purposeThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Orchestrates on-demand generation of crate-specific skills based on project dependencies.
Orchestrates on-demand generation of crate-specific skills based on project dependencies.
Dynamic skills are:
~/.claude/skills/When entering a directory with Cargo.toml:
/sync-crate-skills/sync-crate-skills - Sync all dependencies/clean-crate-skills [crate] - Remove skills/update-crate-skill <crate> - Update specific skillCargo.toml
↓
Parse dependencies
↓
For each crate:
├─ Check ~/.claude/skills/{crate}/
├─ If missing: Check actionbook for llms.txt
│ ├─ Found: /create-skills-via-llms
│ └─ Not found: /create-llms-for-skills first
└─ Load skill
~/.claude/skills/
├── tokio/
│ ├── SKILL.md
│ └── references/
├── serde/
│ ├── SKILL.md
│ └── references/
└── axum/
├── SKILL.md
└── references/
For Cargo workspace projects:
[workspace] members/sync-crate-skills - Main sync command/clean-crate-skills - Cleanup command/update-crate-skill - Update command/create-llms-for-skills - Generate llms.txt/create-skills-via-llms - Create skills from llms.txtnpx claudepluginhub zhangweiii/rust-skills --plugin rust-skills3plugins reuse this skill
First indexed Jul 14, 2026
Manages on-demand generation of Rust crate-specific skills from Cargo.toml dependencies using docs.rs documentation. Supports sync, update, and cleanup commands.
Generates skills and llms.txt from GitHub repos by extracting public APIs from Rust, TypeScript, or Python code. Use to convert libraries/frameworks into Claude Code skills.
Create, update, and manage Claude Code skills including SKILL.md files, slash commands, directory structures, frontmatter, substitutions, and invocation controls.