
Understand Domain
FreeExtract business domain knowledge from your codebase.
Free · Opens the source repo
What Understand Domain does
Understand Domain is a skill designed to help developers and designers extract valuable business domain knowledge from their codebases. By analyzing the structure and content of the code, it generates an interactive horizontal flow graph that visually represents the business domains, flows, and process steps. This can significantly enhance your understanding of complex systems, making it easier to communicate ideas and navigate through the intricacies of your project.
The skill operates in two modes: if a knowledge graph already exists, it can derive domain knowledge from it without the need for an extensive file scan, making it a quick and efficient option. If no existing graph is available, Understand Domain performs a lightweight scan of the project, identifying the file structure and entry points to create a fresh domain graph. Users can also enforce a complete scan using the --full flag, ensuring they have the most up-to-date representation of their project's domain.
This skill is particularly useful for teams working on large codebases or projects where understanding the business logic is crucial for development and design decisions. By visualizing the domain knowledge, stakeholders can gain insights that inform their strategies and improve collaboration among team members. The interactive nature of the generated flow graph allows for easy exploration and understanding of how different components of the codebase relate to one another.
However, it is important to note that this skill is best suited for projects where domain knowledge is needed for effective communication and decision-making. If your project is small or lacks complexity, the benefits of using Understand Domain may not be as pronounced. Additionally, if you are looking for features beyond domain extraction, such as code generation or debugging, this skill may not meet those needs.
When to use it
Use this skill when you need to gain insights into the business logic of a project, especially in large or complex codebases.
When not to use it
Avoid this skill for small projects or when you require functionalities beyond domain knowledge extraction, such as code generation or debugging.
What you can build with it
Large Codebase Analysis
When working on a large codebase, this skill helps teams visualize the business domain, aiding in understanding and communication.
Legacy Project Documentation
For legacy projects without clear documentation, Understand Domain can extract and visualize existing business logic, making it easier for new developers to onboard.
Process Flow Visualization
Use this skill to create interactive flow graphs that represent business processes, facilitating discussions and decisions among stakeholders.
How to install Understand Domain
View source1. Install with the skills CLI
npx skills add egonex-ai/understand-anything/understand-domain --agent claude-code2. Or install it manually
Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.
Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs
Inside SKILL.md
Written by egonex-ai/understand-domain
Extracts business domain knowledge — domains, business flows, and process steps — from a codebase and produces an interactive horizontal flow graph in the dashboard.
How It Works
- If a knowledge graph already exists (
.ua/knowledge-graph.json, or the legacy.understand-anything/knowledge-graph.jsonwhen that directory is present), derives domain knowledge from it (cheap, no file scanning) - If no knowledge graph exists, performs a lightweight scan: file tree + entry point detection + sampled files
- Use
--fullflag to force a fresh scan even if a knowledge graph exists
Instructions
Phase 0: Resolve PROJECT_ROOT
Set PROJECT_ROOT to the current working directory.
Worktree redirect. If PROJECT_ROOT is inside a git worktree (not the main checkout), redirect output to the main repository root. Worktrees managed by Claude Code are ephemeral — the data directory (.ua/, or legacy .understand-anything/) written there is destroyed when the session ends, taking the domain graph with it (issue #133). Detect a worktree by comparing git rev-parse --git-dir against git rev-parse --git-common-dir; in a normal checkout or submodule they resolve to the same path, in a worktree they differ and the parent of --git-common-dir is the main repo root.
COMMON_DIR=$(git -C "$PROJECT_ROOT" rev-parse --git-common-dir 2>/dev/null)
GIT_DIR=$(git -C "$PROJECT_ROOT" rev-parse --git-dir 2>/dev/null)
if [ -n "$COMMON_DIR" ] && [ -n "$GIT_DIR" ]; then
COMMON_ABS=$(cd "$PROJECT_ROOT" && cd "$COMMON_DIR" 2>/dev/null && pwd -P)
GIT_ABS=$(cd "$PROJECT_ROOT" && cd "$GIT_DIR" 2>/dev/null && pwd -P)
if [ -n "$COMMON_ABS" ] && [ "$COMMON_ABS" != "$GIT_ABS" ]; then
MAIN_ROOT=$(dirname "$COMMON_ABS")
if [ -d "$MAIN_ROOT" ] && [ "${UNDERSTAND_NO_WORKTREE_REDIRECT:-0}" != "1" ]; then
echo "[understand-domain] Detected git worktree at $PROJECT_ROOT"
echo "[understand-domain] Redirecting output to main repo root: $MAIN_ROOT"
echo "[understand-domain] (Set UNDERSTAND_NO_WORKTREE_REDIRECT=1 to keep PROJECT_ROOT as the worktree.)"
PROJECT_ROOT="$MAIN_ROOT"
fi
fi
fi
Use $PROJECT_ROOT (not the bare CWD) for every reference to "the current project" / <project-root> in subsequent phases.
Resolve the data directory $UA_DIR. All Understand-Anything artifacts live in the project's data directory. Resolve it once, now that $PROJECT_ROOT is known, and reuse $UA_DIR for every read and write in later phases:
UA_DIR="$PROJECT_ROOT/$([ -d "$PROJECT_ROOT/.understand-anything" ] && echo .understand-anything || echo .ua)"
This keeps the legacy .understand-anything/ directory when it already exists (existing projects keep working with no migration) and uses the new .ua/ otherwise. Because each phase may run in a fresh shell, carry $UA_DIR forward like $PROJECT_ROOT, re-resolving it with the line above if a later command block needs it.
Important: do not assume the plugin root is simply two directories above the skill path string. In many installations ~/.agents/skills/understand-domain is a symlink into the real plugin checkout. Prefer runtime-provided plugin roots first (for Claude), then fall back to universal symlinks, skill symlink resolution, and common clone-based install paths.
Resolve the plugin root like this:
SKILL_REAL=$(realpath ~/.agents/skills/understand-domain 2>/dev/null || readlink -f ~/.agents/skills/understand-domain 2>/dev/null || echo "")
SELF_RELATIVE=$([ -n "$SKILL_REAL" ] && cd "$SKILL_REAL/../.." 2>/dev/null && pwd || echo "")
COPILOT_SKILL_REAL=$(realpath ~/.copilot/skills/understand-domain 2>/dev/null || readlink -f ~/.copilot/skills/understand-domain 2>/dev/null || echo "")
COPILOT_SELF_RELATIVE=$([ -n "$COPILOT_SKILL_REAL" ] && cd "$COPILOT_SKILL_REAL/../.." 2>/dev/null && pwd || echo "")
PLUGIN_ROOT=""
for candidate in \
"${CLAUDE_PLUGIN_ROOT}" \
"$HOME/.understand-anything-plugin" \
"$SELF_RELATIVE" \
"$COPILOT_SELF_RELATIVE" \
"$HOME/.codex/understand-anything/understand-anything-plugin" \
"$HOME/.opencode/understand-anything/understand-anything-plugin" \
"$HOME/.pi/understand-anything/understand-anything-plugin" \
"$HOME/understand-anything/understand-anything-plugin"; do
if [ -n "$candidate" ] && [ -f "$candidate/package.json" ] && [ -f "$candidate/pnpm-workspace.yaml" ]; then
PLUGIN_ROOT="$candidate"
break
fi
done
if [ -z "$PLUGIN_ROOT" ]; then
echo "Error: Cannot find the understand-anything plugin root."
echo "Checked:"
echo " - ${CLAUDE_PLUGIN_ROOT:-<unset CLAUDE_PLUGIN_ROOT>}"
echo " - $HOME/.understand-anything-plugin"
echo " - ${SELF_RELATIVE:-<unresolved path derived from ~/.agents/skills/understand-domain>}"
echo " - ${COPILOT_SELF_RELATIVE:-<unresolved path derived from ~/.copilot/skills/understand-domain>}"
echo " - $HOME/.codex/understand-anything/understand-anything-plugin"
echo " - $HOME/.opencode/understand-anything/understand-anything-plugin"
echo " - $HOME/.pi/understand-anything/understand-anything-plugin"
echo " - $HOME/understand-anything/understand-anything-plugin"
echo "Make sure the plugin is installed correctly."
exit 1
fi
Use $PLUGIN_ROOT for every reference to agent definitions in subsequent phases.
Phase 1: Detect Existing Graph
- Check if
$UA_DIR/knowledge-graph.jsonexists - If it exists AND
--fullwas NOT passed, check freshness before deriving from it:- Read
project.gitCommitHashfrom the graph metadata asGRAPH_COMMIT_RAW. Change to$PROJECT_ROOT, resolve it as a commit before using it in any Git diff, compare the resolved commit withgit rev-parse HEAD, and inspect project-scoped committed and working-tree changes:GRAPH_COMMIT=$(git rev-parse --verify --end-of-options "${GRAPH_COMMIT_RAW}^{commit}" 2>/dev/null) git rev-parse HEAD git diff --name-only "$GRAPH_COMMIT" HEAD -- . git diff --cached --name-only -- . git diff --name-only -- . git ls-files --others --exclude-standard -- . - The
-- .pathspec is required: commits that only touch a sibling monorepo project must not make this graph stale. A hash mismatch alone is not stale when the project diff is empty. - Ignore the selected data directory (
.ua/or legacy.understand-anything/) in every command's output because it contains generated graph artifacts, not project source drift. - If the committed diff or any working-tree command reports project files, warn that domain extraction may omit those changes. Suggest: Run
/understandto refresh the knowledge graph. - Run the commit diff only when
GRAPH_COMMIT_RAWresolves successfully. If the graph commit or Git metadata is missing, invalid, or unavailable, give a brief best-effort warning and continue instead of blocking.
- Read
- After that preflight, proceed to Phase 3 (derive from graph).
- Otherwise, proceed to Phase 2 (lightweight scan). When
--fullis used, skip this preflight because the command performs a fresh scan instead of consuming the existing graph.
Phase 2: Lightweight Scan (Path 1)
The preprocessing script does NOT produce a domain graph — it produces raw material (file tree, entry points, exports/imports) so the domain-analyzer agent can focus on the actual domain analysis instead of spending dozens of tool calls exploring the codebase. Think of it as a cheat sheet: cheap Python preprocessing → expensive LLM gets a clean, small input → better results for less cost.
- Run the preprocessing script bundled with this skill, passing
$PROJECT_ROOTfrom Phase 0:
This outputspython ./extract-domain-context.py "$PROJECT_ROOT"$UA_DIR/intermediate/domain-context.jsoncontaining:- File tree (respecting
.gitignore) - Detected entry points (HTTP routes, CLI commands, event handlers, cron jobs, exported handlers)
- File signatures (exports, imports per file)
- Code snippets for each entry point (signature + first few lines)
- Project metadata (package.json, README, etc.)
- File tree (respecting
- Read the generated
domain-context.jsonas context for Phase 4 - Proceed to Phase 4
Phase 3: Derive from Existing Graph (Path 2)
- Read
$UA_DIR/knowledge-graph.json - Format the graph data as structured context:
- All nodes with their types, names, summaries, and tags
- All edges with their types (especially
calls,imports,contains) - All layers with their descriptions
- Tour steps if available
- This is the context for the domain analyzer — no file reading needed
- Proceed to Phase 4
Phase 4: Domain Analysis
- Read the domain-analyzer agent prompt from
$PLUGIN_ROOT/agents/domain-analyzer.md - Dispatch a subagent with the domain-analyzer prompt + the context from Phase 2 or 3
- The agent writes its output to
$UA_DIR/intermediate/domain-analysis.json
Phase 5: Validate and Save
- Read the domain analysis output
- Validate using the standard graph validation pipeline (the schema now supports domain/flow/step types)
- If validation fails, log warnings but save what's valid (error tolerance)
- Save to
$UA_DIR/domain-graph.json - Clean up
$UA_DIR/intermediate/domain-analysis.jsonand$UA_DIR/intermediate/domain-context.json
Phase 6: Launch Dashboard
- Auto-trigger
/understand-dashboardto visualize the domain graph - The dashboard will detect
domain-graph.jsonand show the domain view by default
Frequently asked questions about Understand Domain
Similar skills
Markdown to HTML Conversion
Efficiently convert Markdown documents to HTML.
Code Tour
Create structured walkthroughs for codebases.
Acquire Codebase Knowledge
Streamline onboarding with comprehensive codebase documentation.
Documentation & Modernization
Streamline codebase documentation and modernization planning.
Azure Resource Visualizer
Generate architecture diagrams for Azure resources.
CLAUDE.md Improver
Optimize your CLAUDE.md files for better project context.
