Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计通过

code-visualizer代码可视化工具

Agent Skill

用于辅助界面设计、视觉规范、排版、配色、布局和交互体验优化。它适合让 Agent 根据产品场景整理页面结构、生成 UI 方案、检查视觉一致性或改进组件层级。使用时需要结合现有品牌、设计系统和用户任务,不应只堆装饰元素;涉及真实页面改动时,应通过截图或浏览器预览检查文本溢出、对齐和响应式表现。

总安装

4,993

周安装

202

GitHub Stars

55

下载量

1,568
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:code-visualizer(代码可视化工具)
来源仓库:https://github.com/rysweet/amplihack
仓库路径:skills/code-visualizer
安装命令:
npx skills add https://github.com/rysweet/amplihack --skill code-visualizer
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/rysweet/amplihack --skill code-visualizer

简介

用于自动生成和维护代码结构可视化图表。code-visualizer 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 基于 Python AST 分析模块关系,输出 mermaid 流程图。
  • 监控代码变更与图表同步状态,防止信息滞后。
  • 遵循极简原则,仅关注结构展示,不引入复杂依赖。
  • 安装方式:github,通过 npx skills add 命令添加指定仓库技能。

SKILL.md

Code Visualizer Skill

Purpose

Automatically generate and maintain visual code flow diagrams. This skill analyzes Python module structure, detects import relationships, and generates mermaid diagrams. It also monitors for staleness when code changes but diagrams don't.

Philosophy Alignment

This skill embodies amplihack's core philosophy:

Ruthless Simplicity

  • Single responsibility: Visualize code structure - nothing more
  • Minimal dependencies: Uses only Python AST for analysis, delegates diagram syntax to mermaid-diagram-generator
  • No over-engineering: Timestamp-based staleness is simple and "good enough" for 90% of cases

Zero-BS Implementation

  • Real analysis: Actually parses Python AST to extract imports - no mock data
  • Honest limitations: Staleness detection is timestamp-based, not semantic (see Limitations section)
  • Working code: All algorithms shown are functional, not pseudocode

Modular Design (Bricks & Studs)

  • This skill is one brick: Code analysis and staleness detection
  • Delegates to other bricks: mermaid-diagram-generator for syntax, visualization-architect for complex diagrams
  • Clear studs (public contract): Analyze modules, generate diagrams, check freshness

Skill Delegation Architecture

code-visualizer (this skill)
├── Responsibilities:
│   ├── Python module analysis (AST parsing)
│   ├── Import relationship extraction
│   ├── Staleness detection (timestamp-based)
│   └── Orchestration of diagram generation
│
└── Delegates to:
    ├── mermaid-diagram-generator skill
    │   ├── Mermaid syntax generation
    │   ├── Diagram formatting and styling
    │   └── Markdown embedding
    │
    └── visualization-architect agent
        ├── Complex multi-level architecture
        ├── ASCII art alternatives
        └── Cross-module dependency graphs

Invocation Pattern:

# code-visualizer analyzes code structure
modules = analyze_python_modules("src/")
relationships = extract_import_relationships(modules)

# Then delegates to mermaid-diagram-generator for syntax
Skill(skill="mermaid-diagram-generator")
# Provide: Module relationships, diagram type (flowchart/class), styling preferences
# Receive: Valid mermaid syntax ready for embedding

# For complex architectures, delegates to visualization-architect
Task(subagent_type="visualization-architect", prompt="Create multi-level diagram for...")

When to Use This Skill

  • New Module Creation: Auto-generate architecture diagram for new modules
  • PR Reviews: Show architecture impact of proposed changes
  • Staleness Detection: Check if existing diagrams reflect current code
  • Dependency Analysis: Visualize import relationships
  • Refactoring: Understand module dependencies before changes

Quick Start

Generate Diagram for Module

User: Generate a code flow diagram for the authentication module

Check Diagram Freshness

User: Are my architecture diagrams up to date?

Show PR Impact

User: What architecture changes does this PR introduce?

Core Capabilities

1. Module Analysis

Analyzes Python files to extract:

  • Import statements (internal and external)
  • Class definitions and inheritance
  • Function exports (__all__)
  • Module dependencies

2. Diagram Generation

Creates mermaid diagrams showing:

  • Module relationships (flowchart)
  • Class hierarchies (class diagram)
  • Data flow between components
  • Dependency graphs

3. Staleness Detection

Compares:

  • File modification timestamps
  • Git history for changes
  • Diagram content vs actual code structure
  • Missing modules in diagrams

Analysis Process

Step 1: Discover Modules

# Scan target directory for Python modules
modules = glob("**/*.py")
packages = identify_packages(modules)

Step 2: Extract Relationships

For each module:

  1. Parse import statements
  2. Identify local vs external imports
  3. Build dependency graph
  4. Detect circular dependencies

Step 3: Generate Diagram

flowchart TD
    subgraph core["Core Modules"]
        auth[auth.py]
        users[users.py]
        api[api.py]
    end

    subgraph utils["Utilities"]
        helpers[helpers.py]
        validators[validators.py]
    end

    api --> auth
    api --> users
    auth --> helpers
    users --> validators

Step 4: Check Freshness

Compare diagram timestamps with source files:

  • Diagram older than sources = STALE
  • Missing modules in diagram = INCOMPLETE
  • Extra modules in diagram = OUTDATED

Diagram Types

Module Dependency Graph

Best for: Showing import relationships between files

flowchart LR
    main[main.py] --> auth[auth/]
    main --> api[api/]
    auth --> models[models.py]
    api --> auth

Class Hierarchy

Best for: Showing inheritance and composition

classDiagram
    class BaseService {
        +process()
    }
    class AuthService {
        +login()
        +logout()
    }
    BaseService <|-- AuthService

Data Flow

Best for: Showing how data moves through system

flowchart TD
    Request[HTTP Request] --> Validate{Validate}
    Validate -->|Valid| Process[Process]
    Validate -->|Invalid| Error[Return Error]
    Process --> Response[HTTP Response]

Staleness Detection

How It Works

  1. Find Diagrams: Locate mermaid diagrams in README.md, ARCHITECTURE.md
  2. Extract Modules: Parse diagram for referenced modules
  3. Compare: Check if all current modules are represented
  4. Report: Generate freshness report

Freshness Report Format

## Diagram Freshness Report

### Status: STALE

**Diagrams Checked**: 3
**Fresh**: 1
**Stale**: 2

### Details

| File         | Last Updated | Code Changed | Status |
| ------------ | ------------ | ------------ | ------ |
| README.md    | 2025-01-01   | 2025-01-15   | STALE  |
| docs/ARCH.md | 2025-01-10   | 2025-01-10   | FRESH  |

### Missing from Diagrams

- `new_module.py` (added 2025-01-12)
- `api/v2.py` (added 2025-01-14)

### Recommended Actions

1. Update README.md architecture diagram
2. Add new_module.py to dependency graph

PR Architecture Impact

What It Shows

For a given PR or set of changes:

  1. New modules/files added
  2. Changed import relationships
  3. Deleted dependencies
  4. Modified class hierarchies

Impact Diagram

flowchart TD
    subgraph added["New"]
        style added fill:#90EE90
        new_api[api/v2.py]
    end

    subgraph modified["Modified"]
        style modified fill:#FFE4B5
        auth[auth.py]
    end

    subgraph existing["Unchanged"]
        users[users.py]
        models[models.py]
    end

    new_api --> auth
    auth --> models
    users --> models

Integration with Other Skills

Mermaid Diagram Generator

This skill uses mermaid-diagram-generator for:

  • Syntax generation
  • Diagram formatting
  • Embedding in markdown

Visualization Architect Agent

Delegates to visualization-architect for:

  • Complex architecture visualization
  • ASCII art alternatives
  • Multi-level diagrams

Usage Examples

Example 1: New Module Diagram

User: I just created a new payment module. Generate an architecture diagram.

Claude:
1. Analyzes payment/ directory
2. Extracts imports and dependencies
3. Generates mermaid flowchart
4. Suggests where to embed (README.md)

Example 2: Check Staleness

User: Are my diagrams up to date?

Claude:
1. Finds all mermaid diagrams in docs
2. Compares with current codebase
3. Reports stale diagrams
4. Lists missing modules
5. Suggests updates

Example 3: PR Impact

User: Show architecture impact of this PR

Claude:
1. Gets changed files from PR
2. Identifies new/modified/deleted modules
3. Generates impact diagram
4. Highlights dependency changes

Detection Algorithms

Import Analysis

# Extract imports from Python file
import ast

def extract_imports(file_path):
    """Extract import statements from Python file."""
    tree = ast.parse(Path(file_path).read_text())
    imports = []
    for node in ast.walk(tree):
        if isinstance(node, ast.Import):
            for alias in node.names:
                imports.append(alias.name)
        elif isinstance(node, ast.ImportFrom):
            if node.module:
                imports.append(node.module)
    return imports

Staleness Check

def check_staleness(diagram_file, source_dir):
    """Check if diagram is stale compared to source."""
    diagram_mtime = Path(diagram_file).stat().st_mtime

    for source in Path(source_dir).rglob("*.py"):
        if source.stat().st_mtime > diagram_mtime:
            return True, source  # Stale

    return False, None  # Fresh

Best Practices

When to Update Diagrams

  1. New modules: Add to dependency graph
  2. Changed imports: Update relationships
  3. Deleted files: Remove from diagrams
  4. Architectural changes: Regenerate completely

Diagram Placement

Diagram TypeRecommended Location
Module overviewREADME.md
Detailed architecturedocs/ARCHITECTURE.md
Package structurepackage/README.md
API flowapi/README.md

Naming Conventions

## Architecture

<!-- code-visualizer:auto-generated -->
<!-- last-updated: 2025-01-15 -->
<!-- source-hash: abc123 -->

flowchart TD ...

Success Criteria

A good visualization:

  • Shows all current modules
  • Reflects actual import relationships
  • Uses appropriate diagram type
  • Placed in discoverable location
  • Includes freshness metadata
  • Clear and not overcrowded

Limitations

IMPORTANT: Understand these limitations before relying on this skill:

Staleness Detection Limitations

  1. Timestamp-based, not semantic: Detection compares file modification times, not actual code changes

- A file touched but not meaningfully changed will trigger "stale" - Reformatting code triggers false positives - Git operations that update mtime trigger false positives

  1. Cannot detect logic changes: Adding a function that doesn't change imports won't be detected

- Internal refactoring within a module is invisible - Changes to function signatures not reflected - New class methods added without import changes won't show

  1. Import-centric view: Only tracks import relationships

- Runtime dependencies (dependency injection) not detected - Configuration-based connections invisible - Duck typing relationships not captured

Scope Limitations

  1. Python-only: Currently only analyzes Python files

- No TypeScript, JavaScript, Rust, Go support - Multi-language projects partially covered

  1. Static analysis only: No runtime information

- Dynamic imports (__import__, importlib) not detected - Conditional imports may be missed - Plugin architectures not fully represented

  1. Single-project scope: Cannot analyze cross-repository dependencies

- External package internals not shown - Monorepo relationships require manual configuration

Accuracy Expectations

ScenarioAccuracyNotes
New module detection95%+Reliable for Python modules
Import relationship mapping90%+Misses dynamic imports
Staleness detection70-80%False positives common
Circular dependency detection85%+May miss complex cycles
Class hierarchy extraction85%+Mixins can be tricky

When NOT to Use This Skill

  • Security-critical dependency audits: Use proper security scanning tools
  • Runtime dependency analysis: Use profilers or dynamic analysis tools
  • Cross-language projects: Manual analysis may be more accurate
  • Heavily dynamic codebases: Plugin architectures, metaprogramming

Dependencies

This skill requires:

  1. mermaid-diagram-generator skill: Must be available for diagram syntax generation
  2. Python 3.8+: For AST parsing features used
  3. Git (optional): For enhanced staleness detection using git history

If mermaid-diagram-generator is unavailable, this skill will provide raw relationship data but cannot generate embedded diagrams.

PR Review Integration

How Diagrams Appear in PRs

When reviewing PRs, this skill generates impact diagrams that can be added to PR descriptions:

PR Description Template:

## Architecture Impact

<!-- Generated by code-visualizer -->

### Changed Dependencies

flowchart LR subgraph changed["Modified Modules"] style changed fill:#FFE4B5 auth[auth/service.py] api[api/routes.py] end

subgraph added["New Modules"] style added fill:#90EE90 oauth[auth/oauth.py] end

subgraph unchanged["Existing"] models[models/user.py] db[db/connection.py] end

oauth --> auth auth --> models api --> auth api --> db


### Impact Summary

- **New modules**: 1 (oauth.py)
- **Modified modules**: 2 (auth/service.py, api/routes.py)
- **New dependencies**: oauth.py -> auth/service.py
- **Diagrams to update**: README.md (STALE)

CI Integration Example

Add to .github/workflows/pr-review.yml:

- name: Check Diagram Staleness
  run: |
    # Claude Code analyzes and reports
    # Outputs: STALE diagrams that need updating
    # Generates: Suggested diagram updates

Reviewer Workflow

  1. PR opened -> code-visualizer generates impact diagram
  2. Reviewer sees -> Visual diff of architecture changes
  3. Staleness check -> Warns if existing diagrams need updates
  4. Action items -> Lists diagrams requiring manual update

Remember

This skill automates what developers often forget:

  • Keeping diagrams in sync with code
  • Documenting architecture changes
  • Understanding dependency impacts

The goal is diagrams that stay fresh automatically.

But remember the limitations: Staleness detection is approximate. When accuracy matters, verify manually.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

27.75%
按下载量换算435

OpenCode

25.84%
按下载量换算405

Antigravity

17.74%
按下载量换算278

Gemini CLI

14.47%
按下载量换算227

windsurf

8.02%
按下载量换算126

Cursor

4.07%
按下载量换算64

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills