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

@ujexdev/client

v0.2.4

Published

TypeScript client for Ujex Postbox, approvals, audit, Memory, tools, scheduler, and advanced compatibility namespaces.

Readme

@ujexdev/client

TypeScript client for the Ujex control plane. The stable first-run surface is Postbox + Approvals + Audit + Memory; secondary namespaces remain available for advanced deployments.

Install

npm install @ujexdev/client firebase

Mint an agent

On https://app.ujex.dev/settings → Create agent. Save the returned agentId and deviceKey — the key is shown once.

Use

import {UjexClient} from '@ujexdev/client';

const ap = new UjexClient({
  firebase: {
    apiKey: 'AIzaSy...',
    authDomain: 'axy-ujex.firebaseapp.com',
    projectId: 'axy-ujex',
    appId: '1:...:web:...',
  },
  agentId: process.env.AP_AGENT_ID!,
  deviceKey: process.env.AP_DEVICE_KEY!,
});

await ap.connect();

// send email, optionally gated by human approval
await ap.postbox.send({
  to: ['[email protected]'],
  subject: 'hi',
  body: '...',
  sessionId: 'sess_run_20260618_001',
  requireHuman: true,
});

// ask a human for approval
const {id} = await ap.mobile.ask({prompt: 'Transfer $50?', ttlSec: 300});

// write and search durable Memory
await ap.memory.write({
  name: 'vendor-acme',
  type: 'project',
  content: 'Acme prefers invoices on Friday.',
  sessionId: 'sess_run_20260618_001',
});
const {hits} = await ap.memory.search({
  query: 'invoice preference',
  k: 5,
  sessionId: 'sess_run_20260618_001',
});

// secondary: dynamic DNS + HTTPS
await ap.gateway.updateIp({fqdn: 'mynode.duckdns.org', ip: '203.0.113.4'});
await ap.gateway.issue({fqdn: 'mynode.duckdns.org', staging: true});
const {certPem, keyPem} = await ap.gateway.getCert({fqdn: 'mynode.duckdns.org'});

// KMS-backed secrets
await ap.secrets.store({agentId: 'me', name: 'openai_key', value: 'sk-...'});
const {value} = await ap.secrets.get({name: 'openai_key', sessionId: 'sess_run_20260618_001'});

Subsystems

| Namespace | What it does | |-----------|--------------| | postbox | Agent email — inbound webhooks, outbound relay, approval-gated sends, prompt-injection risk signals | | mobile | Ask a human, receive a decision, and audit the result | | memory | Primary Markdown-first Memory surface: list/read/write/append/delete/search/index | | recall | Legacy episodic + factual aliases kept for compatibility | | gateway | Advanced compatibility surface: DuckDNS updates + Let's Encrypt certs (DNS-01) | | artifacts | Signed URLs, grants, TTL reaping | | scheduler | Cron jobs with HMAC-signed webhooks | | secrets | Cloud KMS envelope encryption |

Generate one stable sessionId per agent run and pass it to every outbound send, tool invocation, secret read, and memory operation. Ujex uses it for prompt-injection poisoning, exfiltration checks, approval binding, and budget preflight.

Rotating keys

Device keys are hashed; the plaintext is only shown at mint time. Rotate via rotateDeviceKey (human-only) from the dashboard.