systems-programming-rust-project

systems-programming-rust-project is a skill for Claude Code from hainamchung/agent-assistant. It costs 36 tokens per session (2,571 once invoked), scanned A, original, MIT.

A Rust project scaffolding guide for creating applications, libraries, workspaces, web APIs, and WebAssembly projects with an organized structure and Cargo configuration.

In plain words
What is it for?
Use it to plan or generate Rust project structures, configure Cargo, organize modules, and set up testing for new Rust software.
Why use it?
It removes the guesswork of starting a Rust codebase and helps keep modules, dependencies, builds, and tests arranged consistently.

Skill for Claude Code

Written for Claude Code: $ARGUMENTS substitution.

Good fit Use it to plan or generate Rust project structures, configure Cargo, organize modules, and set up testing for new Rust software.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/hainamchung/agent-assistant/systems-programming-rust-project
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add hainamchung/agent-assistant --skill systems-programming-rust-project
Clone the repo
git clone --depth 1 https://github.com/hainamchung/agent-assistant

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for systems-programming-rust-project

README.md
[![agentmods](https://agentmods.dev/badge/skills/hainamchung/agent-assistant/systems-programming-rust-project/github.svg)](https://agentmods.dev/skills/hainamchung/agent-assistant/systems-programming-rust-project)
Your own site
<a href="https://agentmods.dev/skills/hainamchung/agent-assistant/systems-programming-rust-project"><img src="https://agentmods.dev/badge/skills/hainamchung/agent-assistant/systems-programming-rust-project/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for systems-programming-rust-project

Your own site · 80×15
<a href="https://agentmods.dev/skills/hainamchung/agent-assistant/systems-programming-rust-project"><img src="https://agentmods.dev/badge/skills/hainamchung/agent-assistant/systems-programming-rust-project.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 36 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,571 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00036 $0.02571
Opus 5 $0.00018 $0.01286
Sonnet 5 $0.00007 $0.00514
Haiku 4.5 $0.00004 $0.00257

Measured 8d ago against content hash 61b250c41b39, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

systems-programming-rust-project scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/systems-programming-rust-project/SKILL.md · 444 lines

How it starts

The opening of the file, as written. The whole thing — 444 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Rust Project Scaffolding

You are a Rust project architecture expert specializing in scaffolding production-ready Rust applications. Generate complete project structures with cargo tooling, proper module organization, testing setup, and configuration following Rust best practices.

Use this skill when

  • Working on rust project scaffolding tasks or workflows
  • Needing guidance, best practices, or checklists for rust project scaffolding

Do not use this skill when

  • The task is unrelated to rust project scaffolding
  • You need a different domain or tool outside this scope

Context

The user needs automated Rust project scaffolding that creates idiomatic, safe, and performant applications with proper structure, dependency management, testing, and build configuration. Focus on Rust idioms and scalable architecture.

Requirements

$ARGUMENTS

Instructions

1. Analyze Project Type

Determine the project type from user requirements:

  • Binary: CLI tools, applications, services
  • Library: Reusable crates, shared utilities
  • Workspace: Multi-crate projects, monorepos
  • Web API: Actix/Axum web services, REST APIs
  • WebAssembly: Browser-based applications

2. Initialize Project with Cargo

# Create binary project
cargo new project-name
cd project-name

# Or create library
cargo new --lib library-name

# Initialize git (cargo does this automatically)
# Add to .gitignore if needed
echo "/target" >> .gitignore
echo "Cargo.lock" >> .gitignore  # For libraries only

3. Generate Binary Project Structure

binary-project/
├── Cargo.toml
├── README.md
├── src/
│   ├── main.rs
│   ├── config.rs
│   ├── cli.rs
│   ├── commands/
│   │   ├── mod.rs
│   │   ├── init.rs
│   │   └── run.rs
│   ├── error.rs
│   └── lib.rs
├── tests/
│   ├── integration_test.rs
│   └── common/
│       └── mod.rs
├── benches/
│   └── benchmark.rs
└── examples/
    └── basic_usage.rs

Cargo.toml:

[package]
name = "project-name"
version = "0.1.0"
edition = "2021"
rust-version = "1.75"
authors = ["Your Name <[email protected]>"]
description = "Project description"
license = "MIT OR Apache-2.0"
repository = "https://github.com/user/project-name"

[dependencies]
clap = { version = "4.5", features = ["derive"] }
tokio = { version = "1.36", features = ["full"] }
anyhow = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"

[dev-dependencies]
criterion = "0.5"

[[bench]]
name = "benchmark"
harness = false

[profile.release]
opt-level = 3
lto = true
codegen-units = 1

Read the full file on GitHub · 444 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 444 lines · 36 tokens per session scan A 61b250c41b39

Subscribe to this mod's changes

systems-programming-rust-project is a skill published in the GitHub repository hainamchung/agent-assistant (54 stars, last pushed 3mo ago), licensed MIT. It adds 36 tokens to every session and 2,571 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.