# Send Modern URL shortening with QR codes and detailed analytics to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "jo4",
    "name": "Modern URL shortening with QR codes and detailed analytics",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/anandrathnas/jo4",
    "canonicalUrl": "https://clawhub.ai/anandrathnas/jo4",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/jo4",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=jo4",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "jo4",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-05T17:32:15.964Z",
      "expiresAt": "2026-05-12T17:32:15.964Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=jo4",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=jo4",
        "contentDisposition": "attachment; filename=\"jo4-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "jo4"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/jo4"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/jo4",
    "downloadUrl": "https://openagent3.xyz/downloads/jo4",
    "agentUrl": "https://openagent3.xyz/skills/jo4/agent",
    "manifestUrl": "https://openagent3.xyz/skills/jo4/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/jo4/agent.md"
  }
}
```
## Documentation

### Jo4 - URL Shortener & Analytics API

Jo4 is a modern URL shortening service with QR code generation and detailed link analytics.

### Authentication

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

### API Base URL

https://jo4-api.jo4.io/api/v1

### Create Short URL (Authenticated)

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 expiration
passwordProtected (optional) - Boolean to enable password protection
password (optional) - Password if protected (4-128 chars)

UTM Parameters:

utmSource, utmMedium, utmCampaign, utmTerm, utmContent

Response:

{
  "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"
  }
}

### Create Anonymous Short URL (No Auth Required)

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.

### Get URL Details

curl -X GET "https://jo4-api.jo4.io/api/v1/protected/url/{slug}" \\
  -H "X-API-Key: $JO4_API_KEY"

### Get URL Analytics

curl -X GET "https://jo4-api.jo4.io/api/v1/protected/url/{slug}/stats" \\
  -H "X-API-Key: $JO4_API_KEY"

Response includes:

Total clicks
Clicks by date
Geographic distribution
Device/browser breakdown
Referrer sources

### List My URLs

curl -X GET "https://jo4-api.jo4.io/api/v1/protected/url/myurls?page=0&size=20" \\
  -H "X-API-Key: $JO4_API_KEY"

### Update URL

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"
  }'

### Delete URL

curl -X DELETE "https://jo4-api.jo4.io/api/v1/protected/url/{id}" \\
  -H "X-API-Key: $JO4_API_KEY"

### QR Codes

Every short URL automatically gets a QR code at:

https://jo4.io/qr/{shortUrl}

### Rate Limits

Rate limits vary by plan:

Free: 60 requests/minute
Pro: Up to 10,000 requests/minute
Anonymous (public endpoints): 10 requests/minute

### API Documentation

Full OpenAPI/Swagger documentation: https://jo4-api.jo4.io/swagger-ui/index.html

### 1. Shorten a URL for sharing

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"}'

### 2. Create campaign tracking link

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"
  }'

### 3. Create expiring link

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
  }'

### Error Codes

CodeMeaning400Bad request - invalid parameters401Unauthorized - missing or invalid API key403Forbidden - insufficient permissions404Not found - URL doesn't exist429Rate limit exceeded
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: anandrathnas
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-05T17:32:15.964Z
- Expires at: 2026-05-12T17:32:15.964Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/jo4)
- [Send to Agent page](https://openagent3.xyz/skills/jo4/agent)
- [JSON manifest](https://openagent3.xyz/skills/jo4/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/jo4/agent.md)
- [Download page](https://openagent3.xyz/downloads/jo4)