agentsclimarketplace

Web artifacts builder

Skill yunseo-kim/agent-toolbox/catalog/skills/web-artifacts-builder

Build multi-component HTML artifacts using React, Tailwind CSS, and shadcn/ui. Use for complex interactive artifacts requiring state management, routing, or component libraries, not for simple single-file HTML/JSX artifacts.From its SKILL.md

Install
npx -y skills add yunseo-kim/agent-toolbox --skill web-artifacts-builder

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its file declares

Copied from the file, not written here

The file declares its own license as SUL-1.0. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

3.6 KB, 724 tokens by cl100k_base, as published. Nobody here has run it

Web Artifacts Builder

To build powerful frontend interactive artifacts, follow these steps:

  1. Initialize the frontend repo using scripts/init-artifact.sh
  2. Develop your artifact by editing the generated code
  3. Bundle all code into a single HTML file using scripts/bundle-artifact.sh
  4. Display artifact to user
  5. (Optional) Test the artifact

Stack: React 19 + TypeScript 5.9 + Vite 7/6 (Node-aware) + Parcel 2.16 + Tailwind CSS 4 + shadcn/ui CLI

Use this skill for complex, multi-component artifacts. For simple single-file HTML/JSX artifacts, use a lighter workflow.

Design & Style Guidelines

VERY IMPORTANT: To avoid what is often referred to as "AI slop", avoid using excessive centered layouts, purple gradients, uniform rounded corners, and Inter font.

Quick Start

Step 1: Initialize Project

Run the initialization script to create a new React project:

bash scripts/init-artifact.sh <project-name>
cd <project-name>

This creates a fully configured project with:

  • ✅ React + TypeScript (via Vite)
  • ✅ Tailwind CSS 4.2.1 via @tailwindcss/vite
  • ✅ Path aliases (@/) configured
  • ✅ 40+ shadcn/ui components installed from upstream CLI (no vendored tarball)
  • ✅ React 19.2.4 and TypeScript 5.9.3 pinned
  • ✅ Parcel configured for bundling (via .parcelrc)
  • ✅ Node-aware Vite pinning (7.3.1 latest, 6.4.1 fallback)

Step 2: Develop Your Artifact

To build the artifact, edit the generated files. See Common Development Tasks below for guidance.

Step 3: Bundle to Single HTML File

To bundle the React app into a single HTML artifact:

bash scripts/bundle-artifact.sh

This creates bundle.html - a self-contained artifact with all JavaScript, CSS, and dependencies inlined. This file can be directly shared in conversations as an artifact.

Requirements: Your project must have an index.html in the root directory.

What the script does:

  • Installs bundling dependencies (parcel, @parcel/config-default, web-resource-inliner)
  • Creates .parcelrc config
  • Builds with Parcel (no source maps)
  • Inlines all assets into single HTML using web-resource-inliner

Step 4: Share Artifact with User

Finally, share the bundled HTML file in conversation with the user so they can view it as an artifact.

Step 5: Testing/Visualizing the Artifact (Optional)

Note: This is a completely optional step. Only perform if necessary or requested.

To test/visualize the artifact, use available tools (including other Skills or built-in tools like Playwright or Puppeteer). In general, avoid testing the artifact upfront as it adds latency between the request and when the finished artifact can be seen. Test later, after presenting the artifact, if requested or if issues arise.

Reference

What ships with it: 3 files

8.1 KB alongside SKILL.md, 2 of them executable

scripts/

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.