**rust-skills** banner
actionbook actionbook

**rust-skills**

AI community intermediate

Description

[中文](./README-zh.md) | [日本語](./README-ja.md)

Installation

Terminal
claude install-skill https://github.com/actionbook/rust-skills

README

Rust Skills

[中文](./README-zh.md) | [日本語](./README-ja.md)

AI-powered Rust development assistant with meta-cognition framework

[](https://github.com/actionbook/rust-skills/releases) [](https://opensource.org/licenses/MIT) [](https://github.com/anthropics/claude-code)

What is Rust Skills?

**Rust Skills** is a Claude Code plugin that transforms how AI assists with Rust development. Instead of giving surface-level answers, it traces through cognitive layers to provide **domain-correct architectural solutions**.

The Problem

Traditional AI assistance for Rust:

User: "My trading system reports E0382"
AI: "Use .clone()"  ← Surface fix, ignores domain constraints

The Solution

Rust Skills with meta-cognition:

User: "My trading system reports E0382"

AI (with Rust Skills):
├── Layer 1: E0382 = ownership error → Why is this data needed?
│       ↑
├── Layer 3: Trade records are immutable audit data → Should share, not copy
│       ↓
├── Layer 2: Use Arc as shared immutable value
│       ↓
└── Recommendation: Redesign as Arc, not clone()

Features

    undefined

Installation

Rust Skills supports two installation modes:

    undefined

Skills-only Install (Recommended)

...