From 11c5123d61bd439f9a7def66587a18e4b3d09763 Mon Sep 17 00:00:00 2001 From: Ubuntu Date: Fri, 22 May 2026 20:23:21 +0800 Subject: [PATCH] fix: correct GitHub URL in onboarding guide footer The generated onboarding markdown linked to a nonexistent repository (anthropics/understand-anything) instead of the actual project URL (Lum1104/Understand-Anything). --- understand-anything-plugin/src/onboard-builder.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/understand-anything-plugin/src/onboard-builder.ts b/understand-anything-plugin/src/onboard-builder.ts index ed79445..8d30402 100644 --- a/understand-anything-plugin/src/onboard-builder.ts +++ b/understand-anything-plugin/src/onboard-builder.ts @@ -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");