← スキル一覧に戻る

complete-rust-development
by Dicklesworthstone
complete-rust-developmentは、other分野における実用的なスキルです。複雑な課題への対応力を強化し、業務効率と成果の質を改善します。
⭐ 93🍴 18📅 2026年1月23日
SKILL.md
id: rust-complete name: Complete Rust Development description: >- A comprehensive skill for Rust development that combines error handling, testing, and logging patterns. Demonstrates the 'includes' composition feature by merging content from multiple standalone skills. tags: [rust, complete, example] includes:
- skill: rust-error-handling into: rules
- skill: testing-patterns into: checklist
- skill: logging-patterns into: rules prefix: "[Logging] "
Complete Rust Development
A comprehensive Rust development skill that combines error handling, testing, and logging patterns through composition.
This skill demonstrates the includes feature:
- Error handling rules from
rust-error-handlingare merged into Rules - Testing checklist from
testing-patternsis merged into Checklist - Logging rules from
logging-patternsare merged into Rules with a prefix
Rules
- Follow Rust idioms and conventions
- Use
clippyfor linting:cargo clippy -- -D warnings - Format code with
rustfmt:cargo fmt - Keep unsafe blocks minimal and well-documented
Examples
// Idiomatic Rust with proper error handling, logging, and tests
use anyhow::{Context, Result};
use tracing::{info, instrument};
#[instrument]
pub fn process_data(input: &str) -> Result<Output> {
info!("processing data");
let parsed = parse_input(input)
.context("failed to parse input")?;
let result = transform(parsed)
.context("transformation failed")?;
info!(output_size = result.len(), "processing complete");
Ok(result)
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_process_data_happy_path() {
let input = "valid input";
let result = process_data(input);
assert!(result.is_ok());
}
#[test]
fn test_process_data_invalid_input() {
let input = "";
let result = process_data(input);
assert!(result.is_err());
}
}
Checklist
- Code passes
cargo clippy -- -D warnings - Code is formatted with
cargo fmt - No
unsafeblocks (or they are justified and documented) - Dependencies are minimal and audited
スコア
総合スコア
75/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
✓説明文
100文字以上の説明がある
+10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
✓フォーク
10回以上フォークされている
+5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です