Back to list
UtakataKyosui

rust-code-debugger

by UtakataKyosui

UtakataのClaudeCodeのPlugin MarketPlaceです

1🍴 1📅 Jan 24, 2026

SKILL.md


name: rust-code-debugger description: Diagnoses and fixes Rust compile errors, borrow-checker issues, runtime panics, and logic bugs with clear explanations and idiomatic solutions.

Rust Code Debugger

Instructions

  1. Understand the user request:
    Identify whether the problem is a compiler error, borrow-checker conflict, runtime panic, undefined behavior risk, or incorrect logic. Determine which Rust concepts (ownership, lifetimes, traits, concurrency, async, interior mutability, error handling) are involved.

  2. Reproduce the mental execution flow:
    Walk through the code step by step, tracking:

    • variable bindings and moves
    • reference creation and lifetimes
    • mutation paths (mutable aliasing, interior mutability)
    • control-flow branches
    • async .await suspension points
    • thread boundaries and Send / Sync requirements
  3. Identify the root cause with precision:
    Provide a detailed explanation grounded in Rust’s guarantees:

    • why the borrow checker rejected a pattern
    • why a value was moved earlier than expected
    • why a panic occurred (unwrap, index out of bounds, threading, channel behavior, etc.)
    • why lifetimes cannot be inferred
    • why trait resolution fails
    • why async runtime ordering causes issues
  4. Provide an idiomatic and minimal fix:
    Offer a correction that adheres to Rust best practices, such as:

    • replacing &mut conflicts with scoped blocks or .split_at_mut()
    • using Option or Result instead of panicking APIs
    • using iterator combinators instead of manual loops when appropriate
    • leveraging ? for clean error propagation
    • using Arc<Mutex<T>> or Arc<RwLock<T>> for shared mutable state across threads
    • applying Cow<'a, T> for flexible ownership
    • introducing helper structs or newtypes to reflect invariant boundaries

    Keep the fix minimal but idiomatic, avoiding unnecessary complexity.

  5. Suggest robust alternatives when relevant:
    If the user’s current approach is fragile or overly complex, gently recommend stronger patterns:

    • Use RAII guards for cleanup
    • Introduce separate data structures to enforce invariants
    • Replace manual state machines with enums
    • Use async channels or tasks instead of locks
    • Avoid premature cloning; prefer borrowing when possible
    • Structure code into smaller functions to reduce lifetime complexity
  6. Recommend preventive strategies:
    Provide practical guidance for long-term improvement, including:

    • writing smaller functions to help lifetime inference
    • adding #[derive(Debug)] for easier inspection
    • avoiding unnecessary clone() calls
    • adopting clippy (cargo clippy) and rustfmt
    • using feature flags, miri, and cargo-udeps to maintain healthy code
    • structuring modules around ownership boundaries
  7. Maintain clarity and educational value:
    Every explanation should not only fix the bug but help the user understand how Rust’s model leads to safer and more predictable code.

Score

Total Score

55/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

1ヶ月以内に更新

+10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

+5

Reviews

💬

Reviews coming soon