This handles the tricky problem of keeping Claude's knowledge current with your Rust project's actual dependencies. When you open a project with a Cargo.toml, it can detect which crates you're using and auto-generate local skills by scraping docs.rs documentation into ~/.claude/skills/. The implementation is clever: it tries to use the full plugin infrastructure with agents and commands if available, but falls back to inline mode with manual browser fetches if you only have the skills system installed. Worth noting that it explicitly won't run unless you invoke it with /sync-crate-skills or related commands, so it stays out of your way until you need it. Solves a real workflow gap for Rust development.
npx -y skills add actionbook/rust-skills --skill core-dynamic-skills --agent claude-codeInstalls into .claude/skills of the current project.
Select a file.
wshobson/agents