npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@lynqn/openclaw-skill

v1.0.2

Published

LYNQN OpenClaw skill - Share text, generate QR codes, and shorten URLs

Readme

LYNQN OpenClaw Skill

Integrate LYNQN's sharing, QR generation, and URL shortening capabilities into your OpenClaw agents.

Installation

openclaw skill install lynqn

Or install manually:

git clone https://github.com/lynqn/lynqn-openclaw-skill
cd lynqn-openclaw-skill
npm install

Commands

Share Text

Create shareable text or code snippets with automatic QR codes.

/lynqn share <text> [--syntax] [--expires 1d|1w|1m|3m]

Examples:

/lynqn share Hello world!
/lynqn share const x = 5; console.log(x); --syntax --expires 1w
/lynqn share "API Key: abc123" --expires 1d

Options:

  • --syntax: Enable syntax highlighting for code
  • --expires: Set expiration time (1d, 1w, 1m, 3m)

Generate QR Code

Generate QR codes from any text or URL.

/lynqn qr <content> [--size 200-800] [--error L|M|Q|H]

Examples:

/lynqn qr https://example.com
/lynqn qr "Wi-Fi: MyNetwork, Password: 12345" --size 400 --error H

Options:

  • --size: QR code size in pixels (200-800)
  • --error: Error correction level (L=7%, M=15%, Q=25%, H=30%)

Shorten URL

Convert long URLs into short, shareable links.

/lynqn shorten <url>

Examples:

/lynqn shorten https://example.com/very/long/path/here

Get Stats

View LYNQN platform statistics.

/lynqn stats

Direct API Access

For custom integrations, use the LYNQN REST API:

Create Share

POST https://lynqn.io/api/share
Content-Type: application/json

{
  "content": "Your text here",
  "format": "text",  // or "code"
  "expiresIn": 604800  // seconds (1 week = 604800)
}

# Response
{
  "id": "abc123"
}

# Access at: https://lynqn.io/s/abc123

Shorten URL

POST https://lynqn.io/api/shorten
Content-Type: application/json

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

# Response
{
  "id": "xyz789",
  "shortUrl": "https://lynqn.io/l/xyz789",
  "originalUrl": "https://example.com/long/path",
  "clicks": 0,
  "createdAt": 1707000000000
}

Get Statistics

GET https://lynqn.io/api/stats

# Response
{
  "total": 15623
}

Configuration

Set environment variables in your OpenClaw config:

LYNQN_API_URL=https://lynqn.io/api

Rate Limits

  • Free tier: 100 requests per hour
  • With $LYNQN tokens: Priority access (coming soon)

Token Integration

Hold $LYNQN tokens to unlock:

  • Priority API rate limits
  • Extended expiration times (up to 1 year)
  • Analytics dashboard
  • Premium agent features

Learn more: https://lynqn.io/tokenomics

Use Cases

  • Code Sharing: Share code snippets with teammates
  • Event Coordination: Generate QR codes for event check-ins
  • Link Management: Shorten URLs for social media
  • Data Sync: Quickly share text between devices
  • Presentation Tools: Create scannable QR codes for slides
  • Automated Reporting: Agents can share logs and reports

Examples

Share a code snippet

const code = `
function hello() {
  console.log('Hello from LYNQN!');
}
`;

agent.run('/lynqn share ' + code + ' --syntax --expires 1w');

Batch URL shortening

const urls = [
  'https://example.com/page1',
  'https://example.com/page2',
  'https://example.com/page3'
];

for (const url of urls) {
  await agent.run('/lynqn shorten ' + url);
}

Generate QR for Wi-Fi

const wifiInfo = 'WIFI:T:WPA;S:MyNetwork;P:password123;;';
agent.run(`/lynqn qr "${wifiInfo}" --size 400 --error H`);

Support

  • Website: https://lynqn.io
  • Agents: https://lynqn.io/agents
  • Issues: https://github.com/lynqn/lynqn-openclaw-skill/issues

License

MIT

Contributing

Contributions welcome! Please read our contributing guidelines before submitting PRs.

Changelog

v1.0.0 (2026-02-16)

  • Initial release
  • Text sharing with QR codes
  • QR code generation
  • URL shortening
  • Platform statistics