From 19d0c764497bd4b81cb23c33b308a4bd5f3bd266 Mon Sep 17 00:00:00 2001 From: David Abutbul Date: Thu, 5 Feb 2026 23:50:05 +0200 Subject: [PATCH] Update SKILL_URL and refine human instruction message in Home component --- constants.ts | 2 +- pages/Home.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/constants.ts b/constants.ts index 3c0d364..19aa38c 100644 --- a/constants.ts +++ b/constants.ts @@ -1,6 +1,6 @@ // ClawSec Suite SKILL.md URL - injected at build time, with hardcoded fallback export const SKILL_URL = import.meta.env.VITE_CLAWSEC_SUITE_URL || - 'https://clawsec.prompt.security/releases/download/clawsec-suite-v0.0.5/clawsec-suite.skill'; + 'https://clawsec.prompt.security/releases/download/clawsec-suite-v0.0.1/SKILL.md'; // Feed URL for fetching live advisories export const ADVISORY_FEED_URL = 'https://clawsec.prompt.security/releases/latest/download/feed.json'; diff --git a/pages/Home.tsx b/pages/Home.tsx index 723047e..b031b51 100644 --- a/pages/Home.tsx +++ b/pages/Home.tsx @@ -21,7 +21,7 @@ export const Home: React.FC = () => { return () => clearInterval(interval); }, []); - const humanInstruction = `Read ${SKILL_URL} and follow the instructions to install the protection skill suite.`; + const humanInstruction = `Read ${SKILL_URL} and follow the instructions to install this skill. all checksums verified with source`; const handleCopyCurl = () => { navigator.clipboard.writeText(curlCommand);