Agent skill
commands-actionbook-rust-skills
Update a specific crate skill to latest version
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/commands-actionbook-rust-skills
SKILL.md
Update Crate Skill
Force regenerate a crate skill with the latest documentation.
Arguments: $ARGUMENTS
crate_name(required): The crate to updateversion(optional): Specific version to target
Instructions
1. Check Current Skill
# Check if skill exists
cat ~/.claude/skills/{crate_name}*/SKILL.md | head -20
Display current version info if exists:
Current skill:
- Crate: tokio
- Version: 1.38.0
- Last Updated: 2025-01-01
2. Get Latest Version
If version not provided, fetch latest from crates.io:
cargo search {crate_name} --limit 1
Or use crate-researcher agent to get latest version.
3. Remove Old Skill
rm -rf ~/.claude/skills/{crate_name}*
4. Generate Fresh llms.txt
/create-llms-for-skills https://docs.rs/{crate_name}/{version}/{crate_name}/
5. Create Updated Skill
/create-skills-via-llms {crate_name} {llms_path} {version}
6. Report Results
Updated skill:
- Crate: tokio
- Old Version: 1.38.0
- New Version: 1.40.0
- Location: ~/.claude/skills/tokio/
Example Usage
# Update tokio to latest version
/update-crate-skill tokio
# Update to specific version
/update-crate-skill tokio 1.40.0
# Update serde
/update-crate-skill serde
When to Update
- Crate has new major/minor release
- API has changed significantly
- Existing skill has incorrect information
- Documentation has improved
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?