Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
33280fc
docs(superpowers): add design spec for domain-node mermaid flowchart …
lxb12123 Apr 20, 2026
00be36c
docs(superpowers): add implementation plan for mermaid flowchart popup
lxb12123 Apr 20, 2026
99fa120
feat(core): add optional DomainMeta.mermaid field to schema
lxb12123 Apr 20, 2026
67cbc92
test(core): verify sanitizeGraph preserves DomainMeta.mermaid
lxb12123 Apr 20, 2026
770a7da
feat(plugin): add validate-mermaid.mjs dry-run parser script
lxb12123 Apr 20, 2026
2b1f186
feat(agents): instruct domain-analyzer to emit Mermaid flowcharts
lxb12123 Apr 20, 2026
277372b
feat(agents): assemble-reviewer dry-run validates Mermaid sources
lxb12123 Apr 20, 2026
018af56
chore(dashboard): add Vitest + testing-library test infrastructure
lxb12123 Apr 20, 2026
a8cc663
feat(dashboard): emit onThemeChange notifications from theme-engine
lxb12123 Apr 20, 2026
d9abd7b
feat(dashboard): add mermaid-theme helper mapping CSS vars to Mermaid…
lxb12123 Apr 20, 2026
05750a5
feat(dashboard): add MermaidPopupSlice to dashboard store
lxb12123 Apr 20, 2026
82903fb
feat(dashboard): add MermaidRenderer component with fallbacks
lxb12123 Apr 20, 2026
84027cd
feat(dashboard): add collision-avoiding popup position hook
lxb12123 Apr 20, 2026
e82fd40
feat(dashboard): add MermaidFlowchartPopup slide-up component
lxb12123 Apr 20, 2026
ecb3738
feat(dashboard): add MermaidFlowchartModal with Copy + Mermaid Live link
lxb12123 Apr 20, 2026
051854c
feat(dashboard): open mermaid popup on domain node click
lxb12123 Apr 20, 2026
3aa3065
feat(dashboard): mount MermaidFlowchartPopup and Modal in DomainGraph…
lxb12123 Apr 20, 2026
ae0665e
feat(dashboard): auto-close mermaid popup on non-domain view switch
lxb12123 Apr 20, 2026
e9789c5
fix(tests): satisfy strict TypeScript build in schema + dashboard tests
lxb12123 Apr 20, 2026
9e95133
chore(release): bump version for Mermaid flowchart popup feature
lxb12123 Apr 20, 2026
594f81f
fix(dashboard): address review — a11y, chunk-err test, viewport react…
lxb12123 Apr 20, 2026
add6223
fix(dashboard): popup content cutoff + improve mermaid theme integration
lxb12123 Apr 21, 2026
1d17044
polish(dashboard): tighter flowchart layout, consistent header icons,…
lxb12123 Apr 21, 2026
0be131a
feat(dashboard): drag-to-pan Mermaid SVG inside scroll container
lxb12123 Apr 21, 2026
4c48501
fix(dashboard): allow horizontal overflow so drag-to-pan works sideways
lxb12123 Apr 21, 2026
17f2716
fix(plugin): promote mermaid to runtime dependency
lxb12123 Apr 22, 2026
7663b9f
fix(dashboard): normalize node rects to popup-container local coords
lxb12123 Apr 22, 2026
847ddb2
fix(plugin): scope skill vitest to src/ so CI's skill test step passes
lxb12123 Apr 22, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"plugins": [
{
"name": "understand-anything",
"source": "./understand-anything-plugin"
"source": "./understand-anything-plugin",
"version": "2.4.0"
}
]
}
2 changes: 1 addition & 1 deletion .claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "understand-anything",
"description": "AI-powered codebase understanding — analyze, visualize, and explain any project",
"version": "2.3.1",
"version": "2.4.0",
"author": {
"name": "Lum1104"
},
Expand Down
2 changes: 1 addition & 1 deletion .cursor-plugin/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "understand-anything",
"displayName": "Understand Anything",
"description": "AI-powered codebase understanding — analyze, visualize, and explain any project",
"version": "2.3.1",
"version": "2.4.0",
"author": {
"name": "Lum1104"
},
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ coverage/
*.log
.claude/
.worktrees/
.superpowers/
homepage/public/demo/
Loading