MCP HubMCP Hub
스킬 목록으로 돌아가기

web-artifacts-builder

vamseeachanta
업데이트됨 Today
13 조회
3
2
3
GitHub에서 보기
기타

정보

이 스킬은 독립형 인터랙티브 웹 애플리케이션을 단일 HTML 파일로 구축하여, 외부 서버 없이 실행되는 데모, 프로토타입 및 도구를 만들기에 이상적입니다. 개발자가 코드, 스타일, 자산을 포함한 전체 애플리케이션을 하나의 휴대 가능한 파일로 패키징할 수 있게 합니다. 대시보드, 계산기, 시각화와 같은 빠르게 공유 가능한 웹 경험을 위해 사용하세요. 모든 최신 브라우저에서 직접 작동합니다.

빠른 설치

Claude Code

추천
기본
npx skills add vamseeachanta/workspace-hub
플러그인 명령대체
/plugin add https://github.com/vamseeachanta/workspace-hub
Git 클론대체
git clone https://github.com/vamseeachanta/workspace-hub.git ~/.claude/skills/web-artifacts-builder

Claude Code에서 이 명령을 복사하여 붙여넣어 스킬을 설치하세요

문서

Web Artifacts Builder

Overview

Create self-contained, interactive web applications as single HTML files. These artifacts require no server, no build process, and can be shared as standalone files that run in any modern browser.

When to Use

  • Creating interactive demos or prototypes
  • Building standalone calculators or tools
  • Data visualization dashboards
  • Interactive documentation
  • Shareable proof-of-concepts
  • Any web experience that needs to work offline

Quick Start

  1. Create single HTML file with all CSS/JS inline
  2. Use CDN for libraries (Chart.js, Plotly, etc.)
  3. Embed data directly as JSON or JS objects
  4. Test locally by opening file in browser
  5. Share as single file attachment
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Web Artifact</title>
  <style>
    body { font-family: system-ui; padding: 20px; }
    .btn { padding: 10px 20px; background: #007bff; color: white; border: none; cursor: pointer; }
  </style>
</head>
<body>
  <h1>Interactive Tool</h1>
  <button class="btn" onclick="calculate()">Calculate</button>
  <div id="result"></div>
  <script>
    function calculate() {
      document.getElementById('result').textContent = 'Result: ' + (Math.random() * 100).toFixed(2);
    }
  </script>
</body>
</html>

Related Skills


Version History

  • 2.0.0 (2026-01-02): Upgraded to v2 template - added Quick Start, When to Use, Execution Checklist, Error Handling, Metrics sections
  • 1.0.0 (2024-10-15): Initial release with basic template, dashboard, calculator, data visualization examples, CDN library references, best practices

Sub-Skills

Sub-Skills

Sub-Skills

GitHub 저장소

vamseeachanta/workspace-hub
경로: .claude/skills/_internal/builders/web-artifacts-builder

연관 스킬