Back to list
danballance

rust-dependency-analysis

by danballance

A place to share Claude skills and other supporting scaffolding for Claude Code

0🍴 0📅 Dec 31, 2025

SKILL.md


name: rust-dependency-analysis description: | Use this skill when the user asks about Rust module dependencies, dependency graphs, architecture visualization, cycle detection, DAG analysis, or module structure. Activate when you see phrases like "show module structure", "dependency graph", "visualize architecture", "check for circular dependencies", or "Mermaid diagram of modules". version: 2.0.0

Rust Dependency Analysis

Analyze internal module dependencies in Rust crates and generate Mermaid diagrams.

Prerequisites

Requires uv - dependencies are managed automatically, no pip install needed.

# Ask to install uv (if not already installed)
curl -LsSf https://astral.sh/uv/install.sh | sh

Quick Start

# Show module structure tree
rust-deps.sh structure

# Generate Mermaid dependency graph
rust-deps.sh graph

# Check for circular dependencies (CI-friendly)
rust-deps.sh check

Commands Reference

rust-deps.sh structure

Displays the hierarchical module tree of the crate.

rust-deps.sh structure                    # Full structure
rust-deps.sh structure --depth 2          # Limit depth
rust-deps.sh structure --focus api        # Focus on specific module

rust-deps.sh graph

Generates a Mermaid dependency diagram.

rust-deps.sh graph                        # Output to stdout
rust-deps.sh graph --output deps.md       # Save to file
rust-deps.sh graph --focus handlers       # Focus on module subtree
rust-deps.sh graph --direction LR         # Left-to-right layout (default: TD)

rust-deps.sh check

Verifies the module graph is acyclic (no circular dependencies). Returns exit code 0 if valid DAG, 1 if cycles exist.

rust-deps.sh check                        # Check at module level
rust-deps.sh check --depth 3              # Check at plugin level (e.g., crate::plugins::X)
rust-deps.sh check --quiet                # Silent, exit code only

The --depth flag aggregates module paths before cycle detection. Use --depth 3 for plugin-level cycles in typical Rust projects with src/plugins/ structure.

Mermaid Output

The graph command outputs Mermaid syntax that renders in GitHub, GitLab, and documentation tools:

```mermaid
graph TD
    lib --> config
    lib --> utils
    api --> lib
    handlers --> api
    handlers --> auth
```

Embedding in Documentation

Add to your README.md or rustdoc:

#[cfg_attr(doc, aquamarine::aquamarine)]
/// Module architecture:
/// ```mermaid
/// graph TD
///     lib --> config
///     api --> lib
/// ```
pub mod api {}

CI Integration

Add DAG verification to your GitHub Actions workflow:

name: Architecture Check
on: [push, pull_request]

jobs:
  dependency-check:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: astral-sh/setup-uv@v4
      - name: Verify no circular dependencies
        run: ./rust_deps.py check

How It Works

The analyzer uses tree-sitter to parse Rust source files directly, extracting:

  • mod declarations (inline and file-based)
  • use crate::, use super::, use self:: statements

This approach:

  • Uses minimal memory (~50-100 MB)
  • Runs in seconds, not minutes
  • Works on incomplete or broken code
  • Requires no compilation

Trade-off: May miss some indirect dependencies that only exist at the type level (e.g., trait implementations). For architecture visualization and cycle detection, this is typically sufficient.

Script Locations

The analysis scripts are located in this skill's scripts/ directory:

  • rust_deps.py - Main analyzer (can be run directly with ./rust_deps.py or uv run rust_deps.py)
  • rust-deps.sh - Shell wrapper

Score

Total Score

50/100

Based on repository quality metrics

SKILL.md

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

+20
LICENSE

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

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

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

0/5
Issue管理

オープンIssueが50未満

+5
言語

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

+5
タグ

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

0/5

Reviews

💬

Reviews coming soon