Skip to content

Commit b08b945

Browse files
UltraDAGcomClaude Opus 4.6 (1M context)
andcommitted
site: add interactive knowledge graph explorer at /explore
Static build of the understand-anything dashboard with a full 979-node knowledge graph covering all 669 project files. 11 architectural layers, 15-step guided tour, 1201 edges. Visitors can explore the codebase architecture, search nodes, and follow the learning tour. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 45bcf70 commit b08b945

9 files changed

Lines changed: 48590 additions & 0 deletions

File tree

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
# .understandignore — patterns for files/dirs to exclude from analysis
2+
# Syntax: same as .gitignore (globs, # comments, ! negation, trailing / for dirs)
3+
#
4+
# Built-in defaults (always excluded unless negated):
5+
# node_modules/, .git/, dist/, build/, obj/, *.lock, *.min.js, etc.
6+
#
7+
8+
# --- Vendored dependencies (exclude from analysis) ---
9+
bridge/lib/
10+
_archives/
11+
12+
# --- Fuzz corpus (binary inputs, not source) ---
13+
crates/ultradag-coin/fuzz/corpus/
14+
crates/ultradag-coin/fuzz/artifacts/
15+
16+
# --- Generated / binary artifacts ---
17+
target/
18+
*.lock
19+
Cargo.lock
20+
package-lock.json
21+
*.DS_Store
22+
*.log
23+
*.jar
24+
25+
# --- Non-source assets ---
26+
*.png
27+
*.jpg
28+
*.jpeg
29+
*.gif
30+
*.svg
31+
*.ico
32+
*.woff
33+
*.woff2
34+
*.ttf
35+
*.eot
36+
*.mp3
37+
*.mp4
38+
*.pdf
39+
*.zip
40+
*.tar
41+
*.gz
42+
43+
# --- Config/tooling noise ---
44+
.cargo/
45+
.dockerignore
46+
.gitignore
47+
.editorconfig
48+
clippy.toml
49+
LICENSE
50+
51+
# --- Generated reports ---
52+
dashboard/playwright-report/
53+
dashboard/test-results.json
54+
dashboard/test-run-output.log
55+
dashboard/full-test-run.log
56+
formal/tlc-results-invariants.txt
57+
formal/tla2tools.jar
58+
59+
# --- Site public build artifacts ---
60+
site/public/dashboard/

0 commit comments

Comments
 (0)