OpenSource-Hub

Understand-Anything

CLI 도구

Lum1104/Understand-Anything

코드 라이브러리를 대화형 지식 그래프로 변환하여 검색과 질의응답을 지원합니다.

개요

이 프로젝트는 다중 에이전트 파이프라인을 통해 코드베이스나 문서를 분석하여 파일, 함수, 클래스 및 종속 관계의 검색 가능한 지식 그래프를 구축합니다. 대화형 대시보드를 제공하며 퍼지 검색, 안내, 차이 영향 분석 및 적응형 인터페이스를 지원하고 다양한 AI 코딩 플랫폼과 호환됩니다.

README 미리보기

Understand Anything\n\n\n  Turn any codebase, knowledge base, or docs into an interactive knowledge graph you can explore, search, and ask questions about.\n  \n  Works with Claude Code, Codex, Cursor, Copilot, Gemini CLI, and more.\n\n\n\n  \n\n\n\n  English | 简体中文 | 繁體中文 | 日本語 | 한국어 | Español | Türkçe | Русский\n\n\n\n  \n  \n  \n  \n  \n  \n  \n  \n  \n  \n  \n\n\n\n  \n\n\n\n  💬 Join the Discord community →\n  \n  Ask questions, share what you've built, get help from the community.\n\n\n---\n\n**You just joined a new team. The codebase is 200,000 lines of code. Where do you even start?**\n\nUnderstand Anything is a [Claude Code Plugin](https://code.claude.com/docs/en/plugins-reference#plugins-reference) that analyzes your project with a multi-agent pipeline, builds a knowledge graph of every file, function, class, and dependency, then gives you an interactive dashboard to explore it all visually. Stop reading code blind. Start seeing the big picture.\n\n> **The goal isn't a graph that wows you with how complex your codebase is — it's a graph that quietly teaches you how every piece fits together.**\n\n---\n\n## ✨ Features\n\n> [!NOTE]\n> **Want to skip the reading?** Try the [live demo](https://understand-anything.com/demo/) in our [homepage](https://understand-anything.com/) — a fully interactive dashboard you can pan, zoom, search, and explore right in your browser.\n\n### Explore the structural graph\n\nNavigate your codebase as an interactive knowledge graph — every file, function, and class is a node you can click, search, and explore. Select any node to see plain-English summaries, relationships, and guided tours.\n\n### Understand business logic\n\nSwitch to the domain view and see how your code maps to real business processes — domains, flows, and steps laid out as a horizontal graph.\n\n### Analyze knowledge bases\n\nPoint `/understand-knowledge` at a [Karpathy-pattern LLM wiki](https://gist.github.com/karpathy/442a6bf555914893e9891c11519de94f) an

FAQ (1)

문제 해결
내 프로젝트의 의존성 그래프가 "@/*": ["./*"] 같은 tsconfig 경로를 사용할 때 교차 모듈 임포트를 누락하는 이유는 무엇인가요?

extract-import-map 도구(v2.7.5)의 버그로 인해 tsconfig가 프로젝트 루트에 있을 때 경로 별칭 대상의 선행 './'를 정규화하지 못합니다. 이로 인해 '@/lib/thing'과 같은 임포트가 조용히 제거되어, 디렉터리 내 간선만 남게 됩니다. 수정하려면 extract-import-map.mjs를 편집하고 매핑된 후보를 정규화합니다. 예를 들어 const mapped = applyTsAlias(target, aliasMatch)const mapped = applyTsAlias(target, aliasMatch).replace(/^\\.\\//, '')로 변경합니다. 이렇게 하면 후보가 정규화된 파일 경로와 일치하게 됩니다. 이 수정 사항은 향후 릴리스에 포함될 예정입니다.

원본 Issue #214