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

@xynqai/plugin-eliza

v0.1.1

Published

ElizaOS plugin — XYNQ inference, decentralized GPU mesh status, and USDC worker earnings.

Downloads

271

Readme

@xynqai/plugin-eliza

ElizaOS plugin for XYNQ — decentralized inference, live GPU mesh status, and the USDC worker earnings story.

| Component | What it does | | --- | --- | | Models | Registers TEXT_SMALL / TEXT_LARGEhttps://xynq.ai/v1 (xynq-1, xynq-glm-5.2) | | Provider | Injects live mesh stats + billing/worker context into agent state | | Actions | CHECK_XYNQ_NETWORK, XYNQ_WORKER_GUIDE, XYNQ_TOPUP |

Install

In your ElizaOS project:

npm install @xynqai/plugin-eliza
# peer dependency (you likely already have this)
npm install @elizaos/core

Or link locally while developing:

cd plugin-eliza && npm install && npm run build
# in your agent project:
npm install ../path/to/xynq/plugin-eliza

Configure

Add to your character's plugins array and settings:

{
  "plugins": ["@xynqai/plugin-eliza"],
  "settings": {
    "XYNQ_API_KEY": "xynq_sk_...",
    "XYNQ_API_BASE": "https://xynq.ai/v1",
    "XYNQ_ORCH": "https://xynq-network-production.up.railway.app",
    "XYNQ_SMALL_MODEL": "xynq-1",
    "XYNQ_LARGE_MODEL": "xynq-glm-5.2"
  }
}

Or via environment:

XYNQ_API_KEY=xynq_sk_...
XYNQ_ORCH=https://xynq-network-production.up.railway.app

Get API keys at xynq.aiAccount.

See character.example.json for a full starter character.

Usage in code

import { AgentRuntime } from "@elizaos/core";
import xynqPlugin from "@xynqai/plugin-eliza";

const runtime = new AgentRuntime({
  character: myCharacter, // must list @xynqai/plugin-eliza in character.plugins
  plugins: [xynqPlugin],
});

await runtime.initialize();

Actions (what users can trigger)

| Action | When the agent uses it | | --- | --- | | CHECK_XYNQ_NETWORK | "How many GPU workers are online?" | | XYNQ_WORKER_GUIDE | "How do I earn USDC with my GPU?" | | XYNQ_TOPUP | "How do I top up XYNQ credits?" |

Each action includes few-shot examples so the LLM learns when to invoke it.

Crypto narrative

  • Workers connect with npx @xynqai/worker --wallet <SOLANA_ADDRESS> and earn for serving inference.
  • Developers use xynq_sk_ keys; 1M free tokens/month, then USDC on Solana top-ups.
  • Provider pulls live /stats from the coordinator so the agent always knows mesh capacity.

Build from source

npm install
npm run prepare:images   # logo-source.png → images/logo.jpg + banner.jpg
npm run build

Registry assets live in images/ (400×400 logo, 1280×640 banner). Replace images/logo-source.png with your artwork and re-run prepare:images.

ElizaOS registry listing

After npm publish, open a PR against elizaOS/eliza adding registry-entry.json as packages/registry/entries/third-party/xynqai__plugin-eliza.json, then regenerate the registry per their README. Or run elizaos publish from this folder (requires npm + GitHub auth).

Related