Files
clawsec/components/SkillCard.tsx
T
David Abutbul 1e48a955cc fix(release): exclude tests from skill payloads (#230)
* fix(release): exclude tests from skill payloads

* fix(release): normalize test path filtering

* fix(release): prefer GitHub artifacts for non-OpenClaw installs

* fix(release): keep legacy ClawHub publishing

* fix(release): address skill packaging review feedback

* chore(skills): bump release versions

* feat(skills): surface recommended platforms

* docs(skills): add signed release verification

* fix(skills): normalize PR version bumps

---------

Co-authored-by: David Abutbul <David.a@prompt.security>
2026-05-14 14:38:58 +03:00

63 lines
2.1 KiB
TypeScript

import React from 'react';
import { Link } from 'react-router-dom';
import { ArrowRight } from 'lucide-react';
import type { SkillMetadata } from '../types';
import { getPlatformDescriptor } from '../utils/advisoryPlatforms';
interface SkillCardProps {
skill: SkillMetadata;
}
export const SkillCard: React.FC<SkillCardProps> = ({ skill }) => {
const platforms = Array.isArray(skill.platforms) ? skill.platforms.slice(0, 4) : [];
return (
<Link
to={`/skills/${skill.id}`}
className="group block bg-clawd-800 border border-clawd-700 rounded-lg p-5 hover:border-clawd-accent/30 hover:bg-clawd-800/80 transition-all duration-200"
>
<div className="flex items-center gap-3 mb-3">
<span className="text-2xl">{skill.emoji || '📦'}</span>
<div>
<h3 className="font-bold text-white group-hover:text-clawd-accent transition-colors">
{skill.name}
</h3>
<span className="text-xs text-gray-500 font-mono">v{skill.version}</span>
</div>
</div>
<p className="text-sm text-gray-400 mb-4 line-clamp-2">
{skill.description}
</p>
{platforms.length > 0 && (
<div className="flex flex-wrap gap-1.5 mb-4" aria-label="Recommended platforms">
{platforms.map((platform) => {
const descriptor = getPlatformDescriptor(platform);
return (
<span
key={platform}
className={`text-[11px] leading-none px-2 py-1 rounded-md ${descriptor.classes}`}
>
{descriptor.label}
</span>
);
})}
</div>
)}
<div className="flex items-center justify-between">
{/* Category badge - hidden for now, uncomment when we have multiple categories
<span className="text-xs text-gray-500 bg-clawd-700 px-2 py-1 rounded">
{skill.category || 'utility'}
</span>
*/}
<span className="text-clawd-accent text-sm flex items-center gap-1 opacity-0 group-hover:opacity-100 transition-opacity ml-auto">
View details <ArrowRight size={14} />
</span>
</div>
</Link>
);
};