understand-dashboard

仓库创建 2026年3月15日最近提交 2 天前SkillHot 收录 21 天前
▸ 精选理由

以图形化方式查看架构与依赖,便于团队讨论与审查。

这个 Skill 做什么

启动交互式仪表盘以可视化并探索代码库的知识图谱。

启动一个交互式的 web 仪表盘来可视化并探索项目的知识图谱(knowledge graph),把实体、依赖和流程以图形方式呈现。在需要浏览全局架构、查找上下游关系或把代码知识分享给团队时打开,能自动选取项目目录和历史数据目录。支持兼容旧目录(.understand-anything)并提供直观的搜索与导航体验,便于快速定位问题。

▸ 展开 SKILL.md 英文原文

Launch the interactive web dashboard to visualize a codebase's knowledge graph

开发编程可视化仪表盘图谱通用
7.6w
Stars
6.4k
Forks
9
仓库内 Skill
+4.9k
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/Egonex-AI/Understand-Anything/main/understand-anything-plugin/skills/understand-dashboard/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/Egonex-AI/Understand-Anything/main/understand-anything-plugin/skills/understand-dashboard/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# /understand-dashboard

Start the Understand Anything dashboard to visualize the knowledge graph for the current project.

## Instructions

1. Determine the project directory and data directory:
   - If `$ARGUMENTS` contains a path, use that as the project directory
   - Otherwise, use the current working directory
   - Prefer the legacy `.understand-anything/` data directory when it exists, otherwise use `.ua/`

   Use the Bash tool to resolve:
   ```bash
   PROJECT_ARG="$ARGUMENTS"
   if [ -n "$PROJECT_ARG" ]; then
     PROJECT_DIR=$(cd "$PROJECT_ARG" 2>/dev/null && pwd -P)
   else
     PROJECT_DIR=$(pwd -P)
   fi

   if [ -z "$PROJECT_DIR" ] || [ ! -d "$PROJECT_DIR" ]; then
     echo "Er
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有