Share as Link
Publishes whatever was just produced as-is to a live, shareable URL in seconds via ReportRoom.
UtilitiesBeginner★ 122⑂ 29AI score 8/10Last updated: Aug 6, 2026
What it does
- Takes the content the agent just produced — chat excerpt, analysis, markdown, artifact — and publishes it verbatim, with only a title and chat-scaffolding cleanup.
- Runs the minimal ReportRoom flow:
get_design_system→lint_document→publish, then hands back the live URL as the deliverable. - Handles first-run access:
account_status/create_accountissue an API key in-flow, and it warns that unverified accounts serve from a preview/noindex domain until the email link is clicked. - Enforces a pre-publish scan for secrets, API keys, internal hostnames, and confidential third-party data, since published pages are public.
- Hands off deliberately: report-publisher for designed reports, proposal-tracker for per-viewer tracking, deck-publisher for slides.
Who it's for
- Anyone who wants chat output out of the chat and into a link immediately
- PMs, consultants, and marketers who value speed over layout polish
- Users already running (or willing to set up) the ReportRoom MCP tools
Example uses
- After a competitor analysis: "give me a link" → the analysis is published unchanged and you get a URL.
- Markdown meeting notes: "put this online" → published via the fast markdown path.
- Need something prettier? The skill returns the link first, then offers a one-line upgrade to report-publisher.
· · · 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/dashaworks/share-as-link-skill/HEAD/skills/share-as-link/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/share-as-link folder from the GitHub repo dashaworks/share-as-link-skill into my ~/.claude/skills/share-as-link/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/dashaworks/share-as-link-skill.git && mkdir -p ~/.claude/skills && cp -r share-as-link-skill/skills/share-as-link ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal.
- Clone the repo:
git clone https://github.com/dashaworks/share-as-link-skill.git - Create the skills folder:
mkdir -p ~/.claude/skills - Copy the skill in:
cp -r share-as-link-skill/skills/share-as-link ~/.claude/skills/ - Connect the ReportRoom MCP server to Claude Code (it needs
publish,lint_document,get_design_system,account_status,create_account). - Restart Claude Code and try: "share this as a link".
- On first use, create the account and click the email verification link so pages publish on the indexed domain.
View source on GitHub ↗License: MIT