URL shortener, QR code generator, and link analytics API. Create short links, generate QR codes, and track click analytics.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install jo4或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install jo4⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/jo4/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: jo4 description: URL shortener, QR code generator, and link analytics API. Create short links, generate QR codes, and track click analytics. homepage: https://jo4.io user-invocable: true metadata: { "openclaw": { "emoji": "🔗", "primaryEnv": "JO4_API_KEY", "requires": { "env": ["JO4_API_KEY"] } } } ---
Jo4 is a modern URL shortening service with QR code generation and detailed link analytics.
All protected endpoints require an API key. Set your API key as an environment variable:
export JO4_API_KEY="your-api-key"
Get your API key from: https://jo4.io/api-keys
https://jo4-api.jo4.io/api/v1
curl -X POST "https://jo4-api.jo4.io/api/v1/protected/url" \
-H "X-API-Key: $JO4_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"longUrl": "https://example.com/very-long-url",
"title": "My Link"
}'
Request Body:
longUrl (required) - The destination URL (max 2048 chars)title (optional) - Link title (max 200 chars)description (optional) - Link description (max 500 chars)shortUrl (optional) - Custom alias (max 16 chars, alphanumeric/hyphen/underscore)expirationTime (optional) - Unix timestamp for link expirationpasswordProtected (optional) - Boolean to enable password protectionpassword (optional) - Password if protected (4-128 chars)UTM Parameters:
utmSource, utmMedium, utmCampaign, utmTerm, utmContentResponse:
{
"response": {
"id": 123,
"slug": "abc123",
"shortUrl": "abc123",
"fullShortUrl": "https://jo4.io/a/abc123",
"longUrl": "https://example.com/very-long-url",
"title": "My Link",
"qrCodeUrl": "https://jo4.io/qr/abc123"
}
}
curl -X POST "https://jo4-api.jo4.io/api/v1/public/url" \
-H "Content-Type: application/json" \
-d '{"longUrl": "https://example.com"}'
Limited features, no analytics access.
curl -X GET "https://jo4-api.jo4.io/api/v1/protected/url/{slug}" \
-H "X-API-Key: $JO4_API_KEY"
curl -X GET "https://jo4-api.jo4.io/api/v1/protected/url/{slug}/stats" \
-H "X-API-Key: $JO4_API_KEY"
Response includes:
curl -X GET "https://jo4-api.jo4.io/api/v1/protected/url/myurls?page=0&size=20" \
-H "X-API-Key: $JO4_API_KEY"
curl -X PUT "https://jo4-api.jo4.io/api/v1/protected/url/{id}" \
-H "X-API-Key: $JO4_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"title": "Updated Title",
"longUrl": "https://new-destination.com"
}'
curl -X DELETE "https://jo4-api.jo4.io/api/v1/protected/url/{id}" \
-H "X-API-Key: $JO4_API_KEY"
Every short URL automatically gets a QR code at:
https://jo4.io/qr/{shortUrl}
Rate limits vary by plan:
Full OpenAPI/Swagger documentation: https://jo4-api.jo4.io/swagger-ui/index.html
curl -X POST "https://jo4-api.jo4.io/api/v1/protected/url" \
-H "X-API-Key: $JO4_API_KEY" \
-H "Content-Type: application/json" \
-d '{"longUrl": "https://example.com/article", "title": "Article"}'
curl -X POST "https://jo4-api.jo4.io/api/v1/protected/url" \
-H "X-API-Key: $JO4_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"longUrl": "https://mysite.com/landing",
"title": "Q1 Campaign",
"utmSource": "twitter",
"utmMedium": "social",
"utmCampaign": "q1-2026"
}'
curl -X POST "https://jo4-api.jo4.io/api/v1/protected/url" \
-H "X-API-Key: $JO4_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"longUrl": "https://mysite.com/promo",
"title": "Limited Offer",
"expirationTime": 1738454400
}'
| Code | Meaning | |------|---------| | 400 | Bad request - invalid parameters | | 401 | Unauthorized - missing or invalid API key | | 403 | Forbidden - insufficient permissions | | 404 | Not found - URL doesn't exist | | 429 | Rate limit exceeded |
安装 Modern URL shortening with QR codes and detailed analytics 后,可以对 AI 说这些话来触发它
Help me get started with Modern URL shortening with QR codes and detailed analytics
Explains what Modern URL shortening with QR codes and detailed analytics does, walks through the setup, and runs a quick demo based on your current project
Use Modern URL shortening with QR codes and detailed analytics to uRL shortener, QR code generator, and link analytics API
Invokes Modern URL shortening with QR codes and detailed analytics with the right parameters and returns the result directly in the conversation
What can I do with Modern URL shortening with QR codes and detailed analytics in my developer & devops workflow?
将技能文件夹放到 ~/.claude/skills/jo4/ 目录(个人级,所有项目可用),或 .claude/skills/jo4/(项目级)。重启 AI 客户端后,用 /jo4 主动调用,或让 AI 根据上下文自动发现并使用。
Modern URL shortening with QR codes and detailed analytics 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Modern URL shortening with QR codes and detailed analytics 可免费安装使用。请查阅仓库了解许可证信息。
URL shortener, QR code generator, and link analytics API. Create short links, generate QR codes, and track click analytics.
Lists the top use cases for Modern URL shortening with QR codes and detailed analytics, with example commands for each scenario
Automate my developer & devops tasks using Modern URL shortening with QR codes and detailed analytics
Identifies repetitive steps in your workflow and sets up Modern URL shortening with QR codes and detailed analytics to handle them automatically
Modern URL shortening with QR codes and detailed analytics 属于「Developer & DevOps」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。