Update installation instructions and remove deprecated SKILL_URL (#7)

* Update installation instructions and remove deprecated SKILL_URL

* Remove redundant installation instruction from Home component

* Remove unused SKILL_URL import from Home component
This commit is contained in:
davida-ps
2026-02-08 13:13:53 +01:00
committed by GitHub
parent 24db3d46a4
commit 85966ff569
2 changed files with 3 additions and 7 deletions
+3 -4
View File
@@ -1,7 +1,6 @@
import React, { useState, useEffect } from 'react';
import { User, Bot, Copy, Check } from 'lucide-react';
import { Footer } from '../components/Footer';
import { SKILL_URL } from '../constants';
const FILE_NAMES = ['SOUL.md', 'AGENTS.md', 'USER.md', 'TOOLS.md', 'IDENTITY.md', 'HEARTBEAT.md', 'MEMORY.md'];
@@ -11,7 +10,7 @@ export const Home: React.FC = () => {
const [copiedHuman, setCopiedHuman] = useState(false);
const [currentFileIndex, setCurrentFileIndex] = useState(0);
const curlCommand = `curl -s ${SKILL_URL}`;
const curlCommand = `npx clawhub@latest install clawsec-suite`;
// Rotate file names every 2-3 seconds
useEffect(() => {
@@ -21,7 +20,7 @@ export const Home: React.FC = () => {
return () => clearInterval(interval);
}, []);
const humanInstruction = `Read ${SKILL_URL} and follow the instructions to install this skill. all checksums verified with source`;
const humanInstruction = `Please install clawsec-suite from clawhubnpx clawhub@latest install clawsec-suite`;
const handleCopyCurl = () => {
navigator.clipboard.writeText(curlCommand);
@@ -212,7 +211,7 @@ export const Home: React.FC = () => {
)}
<p className="mt-4 text-xs text-gray-500 leading-relaxed">
Also Available via clawhub: npx clawhub@latest install clawsec-suite
</p>
</div>
<img