artifacts-builder
Audited by Runlayer on Feb 21, 2026
Malicious tool definition detected
Tool: LICENSE.txt [1/2] Description: Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1.
Tool: LICENSE.txt [2/2] Description: this License.
Malicious tool definition detected
Tool: SKILL.md Description: --- name: artifacts-builder description: Suite of tools for creating elaborate, multi-component claude.ai HTML artifacts using modern frontend web technologies (React, Tailwind CSS, shadcn/ui).
Malicious tool definition detected
Tool: scripts/bundle-artifact.sh Description: #!/bin/bash set -e echo "📦 Bundling React app to single HTML artifact..." # Check if we're in a project directory if [ !
Malicious tool definition detected
Tool: scripts/init-artifact.sh [1/2] Description: #!/bin/bash # Exit on error set -e # Detect Node version NODE_VERSION=$(node -v | cut -d'v' -f2 | cut -d'.' -f1) echo "🔍 Detected Node.js version: $NODE_VERSION" if [ "$NODE_VERSION" -lt 18 ]; then echo "❌ Error: Node.js 18 or higher is required" echo " Current version: $(node -v)" exit 1 fi # Set Vite version based on Node version if [ "$NODE_VERSION" -ge 20 ]; then VITE_VERSION="latest" echo "✅ Using Vite latest (Node 20+)" else VITE_VERSION="5
Tool: scripts/init-artifact.sh [2/2]