
Pinme Share
- 431 installs
- 3.7k repo stars
- Updated July 25, 2026
- glitternetwork/pinme
pinme-share is an agent skill that builds polished static HTML share pages and uploads them with pinme upload for developers who need public URLs for demos, reports, deployed apps, or Codex conversation summaries.
About
pinme-share in glitternetwork/pinme creates a polished static share artifact, uploads it with pinme upload, and returns the final public URL. Use cases include sharing deployed full-stack app links, Codex conversation or session summaries, reports, files, demos, and PinMe project links as recipient-friendly HTML pages. Triggers cover English and Chinese phrasing such as share, publish, upload share page, 分享, 发布, and 上传分享页. Developers reach for pinme-share when a build artifact or research output needs a single link handoff instead of raw repo access or chat exports. The workflow wraps project links, demos, and summaries into static HTML suitable for stakeholders who only need a browser. Agents finish every share request by running pinme upload and delivering the hosted URL. pinme-share complements PinMe deployment skills when the goal is distribution rather than infrastructure provisioning.
- Pin share API wiring
- Deep link generation
- Recipient handoff flows
- Cross-app location opening
- Share payload formatting
Pinme Share by the numbers
- 431 all-time installs (skills.sh)
- Ranked #978 of 4,347 Backend & APIs skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/glitternetwork/pinme --skill pinme-shareAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 431 |
|---|---|
| repo stars | ★ 3.7k |
| Last updated | July 25, 2026 |
| Repository | glitternetwork/pinme ↗ |
How do you share a demo or report with PinMe?
Add PinMe share endpoints, deep links, and recipient handoff so users can publish pins and open shared locations across apps and channels.
Who is it for?
Developers using PinMe who need a hosted static share page for demos, reports, deployed apps, or Codex session summaries.
Skip if: Private deployments without public sharing or teams that only need git-based distribution without HTML share artifacts.
When should I use this skill?
User asks to share, publish, or upload a share page via PinMe, including 分享, 发布, or wrapping a demo or report in static HTML.
What you get
Polished static HTML share page uploaded via pinme upload with a public recipient-ready URL.
- Static HTML share page
- Public PinMe URL
Files
PinMe Share
Create a polished static share artifact, upload it with pinme upload, and return the final URL.
When to Use
Use this skill when the user asks to:
- Share or publish a result using PinMe.
- Create a static page that wraps a deployed project link, demo, report, or artifact.
- Summarize a Codex conversation/session and share it as a page.
- Turn a project handoff into a public landing or summary page.
- Upload an existing static file or folder for lightweight distribution.
If the user needs a backend, database, auth, email, or LLM functionality, use the main pinme skill and any relevant PinMe integration skill first. Use pinme-share at the end to package and publish the result.
Core Workflow
1. Identify what is being shared:
- PinMe/full-stack project: deployed URL, short description, key features, tech stack, usage notes.
- Codex conversation: goal, decisions, implementation summary, important outputs, next steps.
- Static file/report/demo: title, purpose, file contents or preview, context for the recipient.
2. Create a static share artifact:
- Prefer a single self-contained
index.html. - Use
share/<slug>/index.htmlin the current workspace unless the repo has an existing output/share convention. - Keep CSS inline for portability.
- Do not require JavaScript unless interaction is valuable.
3. Sanitize before publishing:
- Remove secrets, tokens, API keys,
.envvalues, internal-only URLs, private user data, and unrelated logs. - For conversation summaries, summarize rather than dumping raw transcript unless the user explicitly asks for verbatim sharing.
- Make links explicit and clickable.
4. Upload with PinMe:
pinme upload share/<slug>5. Return the URL printed by PinMe. If PinMe outputs multiple URLs, prefer DNS domain, then PinMe subdomain, then short URL, then full preview URL. Never truncate hash fragments.
Share Page Content
For a project share page, include:
- Project name and one-sentence description.
- Primary launch/demo link as the first action.
- What it does, who it is for, and why it matters.
- Feature list focused on user-visible behavior.
- Build/deploy details only when useful to the recipient.
- Date and provenance such as "Created with Codex" only if appropriate.
For a conversation share page, include:
- Conversation title.
- Initial goal or question.
- Key context and constraints.
- Decisions made.
- Work completed or answer summary.
- Files changed, commands run, links produced, or artifacts created when relevant.
- Follow-up items.
For a file/report share page, include:
- Clear title and short abstract.
- Download/open link to the uploaded artifact if there is a separate file.
- Important excerpts or generated summary.
- Source/context notes.
HTML Guidelines
- Build a real share page, not a generic placeholder.
- Make the most important link visible in the first viewport.
- Use clean, responsive HTML/CSS that works as a standalone static file.
- Keep the design restrained and readable; avoid overdecorated marketing layouts for technical handoffs.
- Use semantic sections, accessible contrast, descriptive link text, and sensible mobile spacing.
- Escape user-provided text before inserting it into HTML.
- If showing code or command output, wrap it in
<pre><code>and keep it short.
PinMe Upload Checklist
Before upload:
pinme --versionIf PinMe is missing or stale, install or update it according to the main pinme skill. Authentication is required for upload:
pinme login
# or: pinme set-appkey <AppKey>Upload examples:
pinme upload share/my-project
pinme upload share/conversation-summary
pinme upload ./report.html
pinme upload ./distDo not upload:
.env,.git,node_modules, source trees, private datasets, raw logs with credentials, or unrelated build cache.- Raw conversation transcripts that may include secrets or private context unless the user explicitly approves the exact content.
Final Response
Tell the user:
- What share artifact was created.
- The PinMe URL returned by upload.
- Any important caveat, such as skipped upload because PinMe was not authenticated or unavailable.
Keep the response short. The URL is the main deliverable.
Related skills
How it compares
Pick pinme-share for PinMe static HTML distribution; pick generic deploy skills when the goal is running the app rather than publishing a share page.
FAQ
What does pinme-share produce?
pinme-share builds a polished static HTML page wrapping a demo, report, deployed app link, or Codex summary, uploads it with pinme upload, and returns the final public URL for recipients.
When should developers use pinme-share?
pinme-share fits when stakeholders need a browser-ready link instead of repo access—common for demos, reports, full-stack app previews, and session summaries shared through PinMe.