Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计未展示

rust-blockchain-devRust blockchain DEV 搜索

Agent Skill

rust-blockchain-dev 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

356

周安装

15

GitHub Stars

公开资料未说明

下载量

125
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add liuchengxu/dotfiles --skill "rust-blockchain-dev"

简介

rust-blockchain-dev 用于发现并安装 AI 代理的技能,扩展区块链开发能力。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中集成 Rust 相关工具链时使用。
  • 通过关键词检索快速定位所需技能模块。
  • 安装命令:npx skills add liuchengxu/dotfiles --skill "rust-blockchain-dev"。
  • 使用前请确认权限范围和维护状态,注意是否涉及网络请求或依赖安装。

SKILL.md

name
rust-blockchain-dev
description
Rust and blockchain development conventions including formatting (inline string interpolation), imports organization, checked arithmetic, error handling, unsafe code patterns, and documentation. Use for any Rust code or blockchain project work.

Rust & Blockchain Development Guidelines

This skill provides comprehensive Rust development best practices with emphasis on blockchain development patterns. It auto-activates when working on Rust files or discussing Rust/blockchain topics.

Quick Reference Checklist

When writing Rust code, always:

  1. Use inline string interpolation: format!("{name}") not format!("{}", name)
  2. Consolidate imports at file top: All use statements in single group
  3. Use checked arithmetic: value.checked_add() not value + amount
  4. Avoid .unwrap(): Use .expect() with clear reasoning or Result<T, E>
  5. Document all pub items: Add doc-comments for public APIs
  6. Add // SAFETY: comments: Required for all unsafe blocks
  7. Run before commit: cargo +nightly fmt --all and cargo clippy
  8. Prefer obvious over clever: Write idiomatic, maintainable Rust
  9. Keep dependencies sorted: Alphabetize [dependencies] in Cargo.toml
  10. Meaningful commits: Self-contained, logical commit history

When This Skill Activates

This skill automatically activates when:

  • Working on files matching **/*.rs or **/Cargo.toml
  • Discussing Rust topics (cargo, clippy, rustfmt, traits, async)
  • Implementing blockchain features (consensus, transactions, state machines)
  • Fixing Rust compilation errors (borrow checker, lifetimes, traits)
  • Adding dependencies or managing workspace structure

Navigation Guide

For detailed guidance on specific topics, see:

TopicResource File
Code Style & Formattingreference.md - String formatting, imports, unsafe, arithmetic
Working Examplesexamples.md - Correct patterns with explanations
Common Mistakesanti-patterns.md - What to avoid and why
Validation Scriptsscripts/ - Automated checking tools

Critical Anti-Patterns (❌ NEVER)

String Formatting:

// ❌ NEVER use positional arguments
println!("Hello {}", name);
format!("Value: {}", value);

// ✅ ALWAYS use inline interpolation
println!("Hello {name}");
format!("Value: {value}");

Import Organization:

// ❌ NEVER split imports
use std::path::Path;

fn my_function() {
    use std::fs::File;  // NEVER import within functions
}

// ✅ ALWAYS consolidate at top
use std::path::Path;
use std::fs::File;

fn my_function() { }

Arithmetic Operations:

// ❌ NEVER use unchecked arithmetic for values
let result = value + amount;  // Can panic or overflow

// ✅ ALWAYS use checked arithmetic
let result = value.checked_add(amount)
    .ok_or(Error::Overflow)?;

Error Handling:

// ❌ AVOID unwrap without justification
let value = some_option.unwrap();

// ✅ PREFER expect with reasoning or Result
let value = some_option.expect("Config::default always sets field");
// OR better:
fn load() -> Result<Config, Error> {
    let value = some_option.ok_or(Error::MissingField)?;
    Ok(Config { value })
}

Unsafe Code:

// ❌ NEVER use unsafe without SAFETY comments
unsafe { *ptr.add(index) = value }

// ✅ ALWAYS document invariants
// SAFETY: This pointer is guaranteed to be valid because the buffer is allocated
// with sufficient capacity and the index is bounds-checked above.
unsafe { *ptr.add(index) = value }

Comments:

// ❌ NEVER write comments that merely echo the code
// Increment counter by 1
counter += 1;

// Set the value to true
is_valid = true;

// ✅ ONLY write comments that explain WHY or provide context
// Reset counter after consensus round completes
counter = 0;

// Mark as valid once signature verification passes
is_valid = verify_signature(msg, sig);

Blockchain-Specific Patterns

When working on blockchain code:

  • Consensus logic: Ensure determinism, handle all edge cases
  • State transitions: Validate all inputs, prevent invalid states
  • Cryptography: Use audited libraries, document security assumptions
  • Economic models: Consider attack incentives, verify game theory
  • Performance: Benchmark critical paths, optimize database queries

Validation Tools

Use the provided scripts in scripts/:

  • check-fmt.sh - Verify code formatting
  • check-clippy.sh - Run clippy lints
  • validate-deps.sh - Check Cargo.toml dependency ordering

Pre-Commit Checklist

Before committing Rust code:

# Format code
cargo +nightly fmt --all

# Check for warnings
cargo clippy -- -D warnings

# Run tests
cargo test --workspace

# Verify builds
cargo build --workspace --all-features

Both formatting and clippy must complete with zero warnings or changes.

Additional Resources

For comprehensive details, progressive disclosure resources are available:

  • reference.md: Deep dive into formatting rules, import organization, unsafe code guidelines, checked arithmetic patterns, error handling best practices
  • examples.md: Working code samples demonstrating correct patterns
  • anti-patterns.md: Common mistakes with explanations and fixes

*This skill follows Anthropic's best practices for progressive disclosure. The main SKILL.md provides quick reference while detailed resources load on-demand to optimize context usage.*

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

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

平台分布

windsurf

30.22%
按下载量换算38

OpenCode

21.86%
按下载量换算27

Codex

20.46%
按下载量换算26

Claude Code

13.66%
按下载量换算17

Antigravity

7.4%
按下载量换算9

Gemini CLI

3.63%
按下载量换算5

安全审计

暂无安全审计结果可展示。

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills