PinMe Share Page
Builds a polished static HTML share page for a project, conversation summary, or report, uploads it with PinMe, and returns the final URL.
UtilitiesBeginner★ 3,735⑂ 274AI score 8/10Last updated: Jul 25, 2026
What it does
- Detects what you are sharing (deployed project, AI conversation summary, file/report/demo) and picks the right page structure.
- Generates a self-contained
index.htmlwith inline CSS undershare/<slug>/. - Sanitizes before publishing: strips API keys,
.envvalues, internal URLs, private data, and raw logs. - Runs
pinme uploadand reports the preferred URL (DNS domain → PinMe subdomain → short URL), keeping hash fragments intact.
Who it's for
- Developers who host static pages on PinMe and share results as links.
- Anyone handing off Claude Code / Codex work to teammates or clients and needing a quick landing page.
- People who want reports or demos turned into a public link without any backend.
Examples
- "Make a share page for the app I just deployed" → page with demo link, feature list, tech stack, plus the live URL.
- "Summarize today's session and give me a share link" → page with goal, decisions, files changed, and follow-ups.
- "Upload this report.html" → runs
pinme upload ./report.htmland returns the public link.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/glitternetwork/pinme/HEAD/skills/pinme-share/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the skills/pinme-share folder from the GitHub repo glitternetwork/pinme into my ~/.claude/skills/pinme-share/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/glitternetwork/pinme.git && mkdir -p ~/.claude/skills && cp -r pinme/skills/pinme-share ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Make sure Node.js is installed (
node -v). - Install the PinMe CLI:
npm install -g pinme, then verify withpinme --version. - Authenticate for uploads:
pinme loginorpinme set-appkey <AppKey>. - Clone the skill repo:
git clone https://github.com/glitternetwork/pinme.git - Copy the skill into place:
mkdir -p ~/.claude/skills && cp -r pinme/skills/pinme-share ~/.claude/skills/ - Restart Claude Code, then ask something like "share this project with PinMe" to trigger the skill.
View source on GitHub ↗License: MIT