web-components

Installation
SKILL.md

Web Components

Native browser APIs for creating reusable, encapsulated custom HTML elements.

Quick Start

<!-- Use the component -->
<user-card name="Alice" role="Admin"></user-card>

<script>
class UserCard extends HTMLElement {
  constructor() {
    super();
    this.attachShadow({ mode: 'open' });
  }
Installs
2
GitHub Stars
4
First Seen
Mar 29, 2026
web-components — mgd34msu/goodvibes-gemini