Serve any file publicly via Cloudflare tunnel — share between desktop and mobile
This skill uses the showme CLI to serve any file or folder via a public Cloudflare tunnel URL. The recipient can download files directly by clicking the link.
When the user invokes /show <path>, run showme to get a public download URL.
showme /path/to/file.png
Returns a URL like https://random-words.trycloudflare.com?dl — clicking it downloads the file.
showme /path/to/folder
Returns a URL like https://random-words.trycloudflare.com?zip — clicking it downloads the folder as a zip.
showme runs in the background by default (daemonizes, prints URL, exits)cloudflared; subsequent runs ~3-5sshowme <path> and capture the URL from stdoutTo stop a running showme instance:
showme --stop
--fg — run in foreground (blocks until Ctrl+C)--port <N> — use a specific port instead of random--stop — stop the running background instance--version — print versionUser: /show ./design-mockup.png
Claude:
1. showme /Users/elad/dev/project/design-mockup.png
2. Captures URL from stdout
3. Reports: "Here's your download link: https://xyz.trycloudflare.com?dl"
showme --stop to clean up when done sharinggo install)