understand-dashboard
Understand Dashboard opens a web-based viewer for exploring the knowledge graph generated by the Understand Anything plugin. It provides an interactive interface to search and navigate your codebase structure, running locally with token-based access control.
Understand Dashboard launches an interactive web viewer to explore your codebase's knowledge graph.
AI-generated summary based on this skill's SKILL.md
Install
Egonex-AI/Understand-Anything/understand-dashboard · repository language: TypeScript
git clone https://github.com/Egonex-AI/Understand-Anything
cp -r Understand-Anything/understand-anything-plugin/skills/understand-dashboard ~/.claude/skills/understand-dashboardFrequently asked questions
AI-generated answers based on this skill's SKILL.md and metadata
What does understand-dashboard do?
Understand Dashboard opens a web-based viewer for exploring the knowledge graph generated by the Understand Anything plugin. It provides an interactive interface to search and navigate your codebase structure, running locally with token-based access control.
How do I visualize a codebase knowledge graph?
Understand Dashboard lets you visualize your codebase's knowledge graph in an interactive web interface. After running code analysis through Understand Anything, launch the dashboard to explore project structure, search relationships, and navigate dependencies through a local web server.
How do I start the understand dashboard?
To launch the Understand Anything dashboard, run the understand-dashboard skill after completing code analysis. It starts a local web server that hosts the interactive viewer, allowing you to access the dashboard through your browser with token-based authentication for secure exploration.
Can I view project knowledge graph in a web interface?
Yes, Understand Dashboard displays your project knowledge graph through an interactive web interface. The skill starts a local web server where you can view analyzed code relationships, search the codebase structure, and explore dependencies in a user-friendly dashboard environment.
What is the license for understand-dashboard?
Understand Dashboard is released under the MIT license, allowing free use, modification, and distribution with appropriate attribution.
SKILL.md
rendered from the published skill — quoted content, verbatim
/understand-dashboard
Start the Understand Anything dashboard to visualize the knowledge graph for the current project.
Instructions
- Determine the project directory and data directory:
- If
$ARGUMENTScontains 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 "Error: Project directory not found: ${PROJECT_ARG:-$PWD}" exit 1 fi
if [ -d "$PROJECT_DIR/.understand-anything" ]; then UA_DIR="$PROJECT_DIR/.understand-anything" else UA_DIR="$PROJECT_DIR/.ua" fi ```
- Check that
$UA_DIR/knowledge-graph.jsonexists in the project directory. If not, tell the user: ```
(truncated - see the full file via the links below)
Read as markdown · JSON record · Browse the source repository
File tree — 1 file
understand-anything-plugin/skills/understand-dashboard/SKILL.md