Merge pull request #175 from zichen0116/fix/wrong-github-url-in-footer

fix: correct GitHub URL in onboarding guide footer
This commit is contained in:
Yuxiang Lin
2026-05-22 22:06:27 +08:00
committed by GitHub
@@ -117,7 +117,7 @@ export function buildOnboardingGuide(graph: KnowledgeGraph): string {
// --- Footer ---
lines.push("---");
lines.push("");
lines.push(`*Generated by [Understand Anything](https://github.com/anthropics/understand-anything) from knowledge graph v${graph.version}*`);
lines.push(`*Generated by [Understand Anything](https://github.com/Lum1104/Understand-Anything) from knowledge graph v${graph.version}*`);
lines.push("");
return lines.join("\n");