Loading...
Loading...
Use when "building React artifacts", "creating HTML artifacts", "bundling React apps", "single HTML file", or asking about "artifact builder", "shadcn components", "Tailwind artifacts"
npx skill4agent add eyadsibai/ltk react-artifacts# Create new artifact project
bash scripts/init-artifact.sh <project-name>
cd <project-name># Bundle entire React app to one HTML file
bash scripts/bundle-artifact.shbundle.htmlimport { Button } from "@/components/ui/button"
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"
export default function App() {
return (
<Card>
<CardHeader>
<CardTitle>My Artifact</CardTitle>
</CardHeader>
<CardContent>
<Button>Click me</Button>
</CardContent>
</Card>
)
}