6886dc3b48
Learnings applied from alirezarezvani/claude-skills: native SKILL.md agents (Hermes, Vibe) install the files directly — no conversion — so support is a sync script, not regenerated copies. - scripts/sync-hermes-skills.py: stdlib installer that places skills/ into ~/.hermes/skills/ (copy or --link symlink, --flat, --dry-run). Hermes reads the same open SKILL.md standard and auto-discovers by description. - README rebrand: title, tagline, intro, and a "works with" platforms badge now cover Claude, ChatGPT, Gemini, and Hermes. Works-With table splits native SKILL.md agents (Claude Code, Hermes) from paste-in chat LLMs. Repo name, marketplace ID, and install commands intentionally unchanged. - Version bump to v16.0.0 (Multi-Platform). Note: v15.0.0 was already published (Skill Playground), so this release is v16.0.0; the changelog now also records v15.0.0 in its history. Updated README badge/What's-New, CHANGELOG, SECURITY, and playground tagline/meta. Claude-Session: https://claude.ai/code/session_016JWn5jRD5tcEFKrubjQ6Px Co-authored-by: Claude <noreply@anthropic.com>
101 lines
4.2 KiB
HTML
101 lines
4.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Skill Playground — Product Notes</title>
|
|
<meta name="description" content="Run any of 170+ professional skills in your browser with your own Claude API key — or copy each one as a ready-made ChatGPT or Gemini prompt." />
|
|
<link rel="stylesheet" href="styles.css" />
|
|
<script src="https://cdn.jsdelivr.net/npm/marked@12.0.0/marked.min.js"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/dompurify@3.0.9/dist/purify.min.js"></script>
|
|
</head>
|
|
<body>
|
|
<header class="topbar">
|
|
<div class="brand">
|
|
<img src="assets/product-notes.jpg" alt="Product Notes" class="brand-logo" />
|
|
<div class="brand-text">
|
|
<h1>Skill Playground</h1>
|
|
<p class="tagline">170+ professional skills — run with your Claude key, or copy for ChatGPT & Gemini.</p>
|
|
</div>
|
|
</div>
|
|
<div class="key-area">
|
|
<div class="key-field">
|
|
<input id="apiKey" type="password" placeholder="sk-ant-… (your Claude API key)" autocomplete="off" spellcheck="false" />
|
|
<button id="keyToggle" type="button" class="show-toggle">Show</button>
|
|
</div>
|
|
<select id="model" title="Model">
|
|
<option value="claude-opus-4-8">Opus 4.8</option>
|
|
<option value="claude-sonnet-4-6" selected>Sonnet 4.6</option>
|
|
<option value="claude-haiku-4-5-20251001">Haiku 4.5</option>
|
|
</select>
|
|
</div>
|
|
</header>
|
|
|
|
<div class="key-note">
|
|
🔒 Your key is stored only in this browser and sent directly to api.anthropic.com — never to us.
|
|
Get one at <a href="https://console.anthropic.com/settings/keys" target="_blank" rel="noopener">console.anthropic.com</a>.
|
|
</div>
|
|
|
|
<div class="controls" id="controls">
|
|
<input id="search" type="search" placeholder="Search skills…" />
|
|
<select id="pluginFilter"><option value="">All bundles</option></select>
|
|
<select id="tierFilter" title="Maturity tier">
|
|
<option value="">All tiers</option>
|
|
<option value="production">🟢 Production-Ready</option>
|
|
<option value="stable">🔵 Stable</option>
|
|
<option value="experimental">🟡 Experimental</option>
|
|
</select>
|
|
<span id="count" class="count"></span>
|
|
</div>
|
|
|
|
<main class="main">
|
|
<!-- Tile gallery -->
|
|
<section id="gallery" class="gallery"></section>
|
|
|
|
<!-- Single-skill runner -->
|
|
<section id="runner" class="runner" hidden>
|
|
<button id="backBtn" class="back" type="button">← All skills</button>
|
|
|
|
<div class="skill-head">
|
|
<span class="bundle-tag" id="skillBundle"></span>
|
|
<span class="tier-tag" id="skillTier"></span>
|
|
<h2 id="skillTitle"></h2>
|
|
<p id="skillDesc" class="skill-desc"></p>
|
|
</div>
|
|
|
|
<details class="elsewhere" id="elsewhere">
|
|
<summary>Use this skill in another tool ↗</summary>
|
|
<p class="elsewhere-note">These skills aren't locked to Claude. Copy the ready-made instructions into another assistant — you keep the full framework, you just paste it once.</p>
|
|
<div class="elsewhere-actions">
|
|
<button id="copyChatgpt" class="ghost" type="button">Copy for ChatGPT</button>
|
|
<button id="copyGemini" class="ghost" type="button">Copy for Gemini</button>
|
|
<button id="copyClaude" class="ghost" type="button">Copy raw instructions</button>
|
|
<span id="copyMsg" class="copy-msg"></span>
|
|
</div>
|
|
</details>
|
|
|
|
<form id="inputForm" class="input-form"></form>
|
|
|
|
<div class="actions">
|
|
<button id="runBtn" class="primary" type="button">Run with my Claude key</button>
|
|
<button id="stopBtn" class="ghost" type="button" hidden>Stop</button>
|
|
<span id="status" class="status"></span>
|
|
</div>
|
|
|
|
<div class="output-wrap" id="outputWrap" hidden>
|
|
<div class="output-toolbar">
|
|
<span>Output</span>
|
|
<div>
|
|
<button id="copyBtn" class="ghost" type="button">Copy</button>
|
|
<button id="downloadBtn" class="ghost" type="button">Download .md</button>
|
|
</div>
|
|
</div>
|
|
<article id="output" class="output markdown"></article>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
|
|
<script src="app.js"></script>
|
|
</body>
|
|
</html>
|