diff --git a/apps/web/features/skills/components/skills-page.tsx b/apps/web/features/skills/components/skills-page.tsx index af8eb54f..e565271c 100644 --- a/apps/web/features/skills/components/skills-page.tsx +++ b/apps/web/features/skills/components/skills-page.tsx @@ -144,22 +144,39 @@ function CreateSkillDialog({ type="text" value={importUrl} onChange={(e) => { setImportUrl(e.target.value); setImportError(""); }} - placeholder="https://clawhub.ai/owner/skill-name" + placeholder="Paste a skill URL..." className="mt-1" onKeyDown={(e) => e.key === "Enter" && handleImport()} /> -
- {detectedSource ? ( - - {detectedSource === "clawhub" ? "ClawHub" : "Skills.sh"} - - ) : ( -

- Supports clawhub.ai and skills.sh -

- )} +
+ + {/* Supported sources — highlight on detection */} +
+

Supported sources

+
+
+
ClawHub
+
+ clawhub.ai/owner/skill +
+
+
+
Skills.sh
+
+ skills.sh/owner/repo/skill +
+
+ {importError && (
@@ -177,8 +194,18 @@ function CreateSkillDialog({ ) : ( )}