Token导航 LogoToken导航TokenDH.com
待分类需要联网github未标认证来源可访问许可证需确认审计通过

rust-knowledge-patchRust 知识 patch

Agent Skill

rust-knowledge-patch 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

470

周安装

19

GitHub Stars

17

下载量

147
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:rust-knowledge-patch(Rust 知识 patch)
来源仓库:https://github.com/nevaberry/nevaberry-plugins
仓库路径:skills/rust-knowledge-patch
安装命令:
npx skills add https://github.com/nevaberry/nevaberry-plugins --skill rust-knowledge-patch
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/nevaberry/nevaberry-plugins --skill rust-knowledge-patch

简介

用于处理 GitHub 仓库、Issue 和 Pull Request 协作信息。

  • 适合围绕代码变更和仓库状态进行整理与查询。
  • 可结合原始 README 进一步核验具体用法。
  • 安装前建议确认权限范围和是否会触发命令执行。
  • 需注意维护状态和网络访问限制。rust-knowledge-patch 属于待分类类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Rust Knowledge Patch

Covers Rust 1.84–1.94 (2025-01-09 through 2026-03-05). Claude Opus 4.6 knows Rust through 1.83 and the 2021 Edition. It is unaware of the Rust 2024 Edition and any of the features below.

Index

TopicReferenceKey features
Rust 2024 Editionreferences/rust-2024-edition.mdEdition migration, breaking changes, let chains
Language featuresreferences/language-features.mdAsync closures, trait upcasting, naked functions, cfg booleans
Collections & iteratorsreferences/collections.mdextract_if, as_chunks, array_windows, slice splits
Numeric methodsreferences/numerics.mdisqrt, midpoint, strict_*, sub_signed, const floats
Memory & unsafereferences/memory.mdProvenance APIs, NonNull, MaybeUninit, smart ptr alloc
Std library additionsreferences/std-additions.mdPipes, file locking, sync, paths, Duration, fmt::from_fn
Cargo & toolchainreferences/cargo.mdResolver v3, publish --workspace, LLD linker, TOML 1.1
Lints & diagnosticsreferences/lints.mdNew default warnings, never-type lints, diagnostic hints

Rust 2024 Edition — Breaking Changes (inline)

Enable with edition = "2024" in Cargo.toml. Migrate with cargo fix --edition.

ChangeBefore (2021)After (2024)
extern blocksextern "C" {fn foo();}unsafe extern "C" {fn foo();}
Link attributes#[no_mangle]#[unsafe(no_mangle)]
unsafe fn bodiesimplicit unsafe insiderequire explicit unsafe {}
static mut refswarnedhard error → use &raw const/&raw mut
set_var/remove_varsafenow unsafe
gen keywordvalid identifierreserved
impl Trait lifetime captureopt-incaptures all in-scope lifetimes by default
Future/IntoFuture in preludenot in preludeadded (may cause name conflicts)
// 2021 → 2024 migration examples

// extern blocks
unsafe extern "C" {
    fn foo();
    safe fn bar();  // opt-in safe: callable without unsafe
}

// attributes on linked items
#[unsafe(no_mangle)]
pub extern "C" fn my_fn() {}

// unsafe fn bodies
unsafe fn helper() {
    unsafe { some_unsafe_op(); }  // now required
}

// static mut: use raw refs instead
static mut GLOBAL: u32 = 0;
let r = &raw const GLOBAL;  // safe in 2024, was safe since 1.84

// impl Trait lifetime restriction
fn foo<'a>(x: &'a str) -> impl Display + use<'a> { x }  // restrict captures

Let Chains — 1.88 (Rust 2024 Edition only)

Chain let bindings with && in if/while. Earlier bindings are available in later conditions.

if let Channel::Stable(v) = release_info()
    && let Semver { major, minor, .. } = v
    && major == 1
    && minor == 88
{
    println!("let chains stabilized here");
}

while let Some(x) = iter.next() && x < 10 {
    process(x);
}

Async Closures — 1.85

async || {} can borrow captures across .await. Unlike || async {}, the inner future holds a borrow into the closure's environment. New traits: AsyncFn, AsyncFnMut, AsyncFnOnce.

let mut vec: Vec<String> = vec![];
let closure = async || {
    vec.push(ready(String::from("")).await);  // borrows vec across await point
};

// Higher-ranked async bounds — not expressible with Fn + Future:
async fn call_it(_: impl for<'a> AsyncFn(&'a u8)) {}

Trait Upcasting — 1.86

Coerce &dyn Trait to &dyn Supertrait (or any pointer wrapper). Previously required manual as_supertrait() workarounds.

trait Trait: Supertrait {}
trait Supertrait {}

fn upcast(x: &dyn Trait) -> &dyn Supertrait { x }
// Also: Arc<dyn Trait> -> Arc<dyn Supertrait>

// Downcasting without external crates:
use std::any::Any;
trait MyAny: Any {}
impl dyn MyAny {
    fn downcast_ref<T: 'static>(&self) -> Option<&T> {
        (self as &dyn Any).downcast_ref()
    }
}

Quick Method Reference

New in 1.84

MethodDescription
n.isqrt() / n.checked_isqrt()Integer square root (floor); checked returns None for negative
ptr::dangling::<T>()Non-null, well-aligned dangling pointer
ptr.addr() / .with_addr(a) / .map_addr(f)Pointer provenance-preserving address ops
ptr.expose_provenance() / ptr::with_exposed_provenance(a)Round-trip through integer with provenance
ptr::without_provenance(a)Pointer with no provenance (sentinel values)
&raw const *pNow safe (was unsafe)

New in 1.85–1.86

MethodDescription
a.midpoint(b)Overflow-safe (a+b)/2 for floats and unsigned ints
`v.pop_if(\x\...)`Pop last element if predicate holds
v.get_disjoint_mut([i, j])Multiple &mut into slice/HashMap simultaneously
lock.wait()Block until OnceLock/Once is initialized

New in 1.87–1.88

MethodDescription
std::io::pipe()Returns (PipeReader, PipeWriter)
`v.extract_if(.., \x\...)`Drain matching elements (lazy iterator)
s.split_off(n) / split_off_first() / split_off_last()Split slice, return tuple
os_str.display()Lossily display OsStr / OsString
n.unbounded_shl(k) / unbounded_shr(k)Shift returning 0 instead of panic when k ≥ bits
s.as_chunks::<N>() / as_rchunks::<N>()Fixed-size array chunks with remainder
`map.extract_if(\k,v\...)`HashMap/HashSet drain by predicate
`cell.update(\x\...)`Update Cell<T> in place, return new value

New in 1.89–1.91

MethodDescription
f.lock() / f.try_lock() / f.unlock()Advisory file locking (no fs2 needed)
r.flatten()Result<Result<T,E>,E>Result<T,E>
NonNull::from_ref(&x) / from_mut(&mut x)Safe NonNull from references
x.checked_sub_signed(n) etc.Subtract signed from unsigned (checked_, wrapping_, saturating_, overflowing_)
n.strict_add(m) etc.Panic on overflow in debug AND release
s.ceil_char_boundary(i) / floor_char_boundary(i)Nearest valid UTF-8 boundary
Path::file_prefix()Stem with ALL extensions stripped
p.add_extension("gz")Append extension (unlike set_extension which replaces)
Duration::from_mins(n) / from_hours(n)Convenience constructors
Path == "/some/str"PartialEq<str> / PartialEq<String> now implemented

New in 1.92–1.94

MethodDescription
RwLockWriteGuard::downgrade(guard)Atomically write→read lock downgrade
Box::new_zeroed() / new_zeroed_slice(n)Zero-initialized allocation (also Rc, Arc)
s.into_raw_parts() / v.into_raw_parts()Decompose String/Vec to (ptr, len, cap)
Duration::from_nanos_u128(n)Like from_nanos but accepts u128
s.as_chunks::<N>()(also as_array::<N>() in 1.93: slice → fixed-size array ref)
`fmt::from_fn(\f\...)`Display value from closure, no new type needed
`dq.pop_front_if(\x\...) / pop_back_if(...)`Conditional pop from VecDeque
cell.get() on LazyCell/LazyLockOption<&T> without forcing init
LazyCell::force_mut(&mut cell)Force init, return &mut T
`iter.next_if_map(\x\...)`Peek + transform; advance only if Some
v.element_offset(&v[i])Index of element by reference
f64::consts::EULER_GAMMA / GOLDEN_RATIONew float constants

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.82%
按下载量换算54

Claude

28.44%
按下载量换算42

Cursor

18.58%
按下载量换算27

Gemini CLI

8.96%
按下载量换算13

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills