LYNQN

Other

Create shareable text snippets, generate QR codes, and shorten URLs using LYNQN from any OpenClaw agent.

Install

openclaw skills install lynqn-openclaw-skill

LYNQN Skill

Share text, generate QR codes, and shorten URLs from any OpenClaw agent.

Install

openclaw skill install lynqn

Commands

CommandDescriptionUsage
/lynqn shareCreate a shareable text or code snippet/lynqn share <text> [--syntax] [--expires 1d|1w|1m|3m]
/lynqn qrGenerate a QR code from text or URL/lynqn qr <content> [--size 200-800] [--error L|M|Q|H]
/lynqn shortenShorten a long URL/lynqn shorten <url>
/lynqn statsGet LYNQN platform statistics/lynqn stats

Quick Examples

# Share text with a 1-week expiry
/lynqn share Hello from my agent!

# Share code with syntax highlighting
/lynqn share const x = 42; console.log(x); --syntax --expires 1w

# Generate a QR code
/lynqn qr https://lynqn.io --size 400 --error H

# Shorten a URL
/lynqn shorten https://example.com/very/long/path/to/resource

# Check platform stats
/lynqn stats

Configuration

VariableDefaultDescription
LYNQN_API_URLhttps://lynqn.io/apiAPI endpoint

Permissions Required

  • network.http — Make HTTP requests to LYNQN API

Rate Limits

TierRequests/hourExpirationNotes
Free10090 daysNo token required
Pro (100k+ $LYNQN)1,000180 daysAnalytics included
Premium (1M+ $LYNQN)10,000365 daysCustom QR branding

API Endpoints

POST /api/share

Create a shareable snippet.

{
  "content": "Your text here",
  "format": "text",
  "expiresIn": 604800
}

POST /api/shorten

Shorten a URL.

{
  "url": "https://example.com/long/path"
}

GET /api/stats

Returns platform statistics.

Links