falcondev-oss/skills

shareflare

Share any local file through a public URL. Use whenever you need to share a file, including attaching artifacts to GitHub issues or pull requests, showing a file to the user, or fulfilling a request for a shareable URL.

First seen Aug 2, 2026

Installation

$ npx skills add falcondev-oss/skills --skill shareflare

Also in this package

Other skills from falcondev-oss/skills · top by installs.

npx skills add falcondev-oss/skills

Browse all from falcondev-oss/skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 2
License LICENSE
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 900 B
  • docs SUMMARY.md 237 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 10 installs

SKILL.md

Share files

For every requested file:

  1. Require non-empty SHAREFLAREURL and SHAREFLARETOKEN. If either is unset, stop and name the missing variable.
  2. Set file to the path and confirm it is a readable regular file.
  3. Upload it and capture the response:
curl --fail-with-body --silent --show-error \
  --data-binary "@$file" \
  -H "Authorization: Bearer $SHAREFLARE_TOKEN" \
  -H "Content-Type: $(file --brief --mime-type -- "$file")" \
  "${SHAREFLARE_URL%/}/"
  1. Return the URL printed by the service. Completion means every requested file has one returned URL.

Keep SHAREFLARE_TOKEN out of output and files.