Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
Spencer Chang avatar

Playhtml

  • 459 repo stars
  • Updated August 5, 2026
  • spencerc99/playhtml

Skill for building collaborative, real-time HTML elements with playhtml. Covers APIs, data types, and common mistakes.

About

playhtml is a Claude Code skill in the Backend & APIs category. Skill for building collaborative, real-time HTML elements with playhtml. Covers APIs, data types, and common mistakes.

  • playhtml
  • Backend & APIs
  • AI-coding skill

Playhtml by the numbers

  • Data as of Aug 5, 2026 (Skillselion catalog sync)
/plugin marketplace add spencerc99/playhtml
/plugin install playhtml@playhtml

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
repo stars459
Last updatedAugust 5, 2026
Repositoryspencerc99/playhtml

What it does

Skill for building collaborative, real-time HTML elements with playhtml. Covers APIs, data types, and common mistakes.

README.md

playhtml 🛝🌐 npm release Downloads Size

interactive, collaborative HTML elements with a single data attribute

playhtml is a fast, small (~300KB), library-agnostic, and expressive library for magically creating collaborative interactive HTML elements that persist their state across sessions. It aims to be infrastructure for creating lived-in, alive internet spaces filled with traces of past visitors and the life of present visitors.

<div id="couch" can-move style="font-size: 80px">🛋</div>

That's it. The couch is draggable for everyone on the page, and its position persists across sessions.

https://github.com/spencerc99/playhtml/assets/14796580/00e84e15-2c1c-4b4b-8e15-2af22f39db7a

📚 Full documentation →

playhtml is in beta and actively developed. Join the Discord to get help and show what you've built.

30-second install

Vanilla HTML — drop in from a CDN, no build step:

<script type="module">
  import { playhtml } from "https://unpkg.com/playhtml";
  playhtml.init();
</script>
<img can-toggle id="lamp" src="lamp.png" />

React:

npm install @playhtml/react @playhtml/common
import { PlayProvider, CanToggleElement } from "@playhtml/react";

<PlayProvider>
  <CanToggleElement>
    <img id="lamp" src="lamp.png" />
  </CanToggleElement>
</PlayProvider>;

See getting started for both paths in depth. React users should also read the React API reference.

What's in the box

Built-in capabilities — drop these attributes on any element:

Attribute What it does
can-move Drag anywhere; position persists and syncs
can-toggle Click to flip an on/off state
can-spin Rotate by dragging
can-grow Click to scale up, alt-click to scale down
can-duplicate Click to clone a target element
can-mirror Auto-sync attributes, children, and form state (experimental)
can-hover Sync hover state across users
can-play Fully custom capability with your own logic

Each has a live demo and full docs in the capabilities reference.

Beyond capabilities:

  • Element data — persistent, synced state scoped to a single element
  • Page-level data — shared data channels not tied to DOM elements (counters, votes, etc.)
  • Presence & cursors — ephemeral per-user state with custom channels, plus multiplayer cursors
  • Events — fire-and-forget broadcasts for transient actions (confetti, pings)
  • Shared elements — cross-page and cross-domain state for interconnected sites
  • Dynamic elementssetupPlayElement and selector-id for runtime-added nodes
  • SPA navigation — works with Astro ViewTransitions, React Router, Next.js, htmx boost, Turbo

Building with AI

playhtml works well with coding assistants.

Claude Code users — install the plugin for a skill that auto-activates when you ask Claude to build playhtml elements:

claude plugin marketplace add spencerc99/playhtml
claude plugin install playhtml@playhtml

Any other LLM (ChatGPT, Copilot, Cursor, ...) — copy the prompt template from the building with AI guide into your conversation.

Examples

Help & Community

Data policy

All data is currently stored by a PartyKit instance under my account and is not encrypted. Anyone with the room name can access the data. Custom persistence options (your own storage backend) are on the roadmap.

Contributing

See CONTRIBUTING.md. Contributions for new built-in capabilities are especially welcome — the same can-play API powers all of them.

Support & Maintenance

If you enjoy using this, please consider sponsoring the project. This helps fund the hosting costs for the syncing and persistence services and keeps the library maintained over time.

Licensing

This repository uses two licenses:

  • MIT — applies to packages/ (the playhtml library, React bindings, shared types, extension-types package). See LICENSE.
  • CC BY-NC-ND 4.0 — applies to everything else (website/, extension/, tools/, apps/docs/), which contain Spencer's personal art, product copy, visualizations, and exhibition work. See LICENSE-ART.

The library is free to use, modify, and embed commercially. The art, experiments, and extension UI are visible as receipts of authorship but may not be copied commercially or redistributed as derivatives.

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.