Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
knowsuchagency avatar

Short

  • 3 installs
  • Updated June 11, 2026
  • knowsuchagency/short

Helps with ai & agent building tasks.

About

short is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.

  • short
  • AI & Agent Building
  • AI-coding skill

Short by the numbers

  • 3 all-time installs (skills.sh)
  • Ranked #13,677 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Aug 2, 2026 (Skillselion catalog sync)
npx skills add https://github.com/knowsuchagency/short --skill short

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs3
Last updatedJune 11, 2026
Repositoryknowsuchagency/short

What it does

Helps with ai & agent building tasks.

Files

SKILL.mdMarkdownGitHub ↗

short — URL shortener (short.52labs.us)

A no-auth Cloudflare Worker that turns long URLs into https://short.52labs.us/<code> links backed by D1 (also reachable at https://go.52labs.us/<code>). Anyone can create links; every create and every click is stored historically and logged to Workers observability.

Create a short link

POST JSON to /api/shorten. url is required; code is an optional custom slug.

# Auto-generated 6-char code
curl -s -X POST https://short.52labs.us/api/shorten \
  -H 'content-type: application/json' \
  -d '{"url":"https://example.com/some/very/long/path"}'
# -> {"code":"IFCjsr","short":"https://short.52labs.us/IFCjsr","url":"https://example.com/some/very/long/path"}

# Custom code (vanity link)
curl -s -X POST https://short.52labs.us/api/shorten \
  -H 'content-type: application/json' \
  -d '{"url":"github.com/anthropics","code":"ant"}'
# -> {"code":"ant","short":"https://short.52labs.us/ant",...}

Notes:

  • A bare host like github.com/anthropics is auto-prefixed with https://.
  • Custom codes must match [A-Za-z0-9_-]{1,64} and not be reserved (api, etc.).

Use a short link

GET https://short.52labs.us/<code> issues a 302 redirect to the target URL.

Responses

StatusMeaning
200Link created — body has code, short, url
400Missing/invalid url, or bad custom code format
409Custom code already taken
302Redirect (on GET /<code>)
404Unknown code

Returning a link to the user

Give the user the short field verbatim (e.g. https://short.52labs.us/ant). For a custom slug, pass code; otherwise omit it and let the service generate one.

Source / deploy lives in the short repo (wrangler deploy).

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.