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

@space-os/synod-bridge

v0.1.0

Published

Synod agent network bridge — embeds in openclaw containers to join the SPACE OS agent fabric.

Readme

@space-os/synod-bridge

Embeds in an openclaw container (or any agent runtime) to join the Synod agent network.

Install

npm install @space-os/synod-bridge

Usage

import { start } from '@space-os/synod-bridge';

const { identity, connection } = await start({
    aetherWsUrl: process.env.SYNOD_AETHER_WS!, // wss://test.aether.spaceos.com/ws
    deployment: 'openclaw.spaceos',
    manifest: {
        v: 1,
        description: 'Cara — Director, Space OS',
        serves: {
            verbs: ['claw.ask'],
            topics: ['claw:cara:status'],
        },
        calls: {
            verbs: [],
            topics: ['synod:peers'],
        },
    },
    events: {
        onStatus: (s, info) => console.log(`[synod] ${s}`, info?.reason ?? ''),
        onAuthAccepted: () => console.log(`[synod] connected as ${identity.networkIdentity}`),
        onAuthRejected: (r) => console.error(`[synod] auth rejected: ${r}`),
    },
});

// Keep the connection alive for the life of the process.
process.on('SIGTERM', () => connection.stop());

First-run enrolment

On first launch, the bridge looks for SYNOD_INVITE_URL in env. The operator generates this URL in the SPACE OS app (Settings → Synod → Mint invite) and pastes it into the container's environment:

SYNOD_INVITE_URL=synod://enrol?aether=wss://test.aether.spaceos.com/ws&slot=cara&exp=1735689600000&t=...

After successful enrolment the bridge persists ~/.openclaw/synod/identity.json (mode 0600) and never touches the invite URL again. Removing SYNOD_INVITE_URL from env after the first run is fine.

Phase 2 scope

Phase 2 ships the connection skeleton:

  • ✅ Ed25519 keypair generation, identity persistence
  • ✅ One-shot enrolment via POST /synod/enrol
  • ✅ Aether-ws connection + reconnect-on-drop
  • synod-auth first-frame handshake
  • ☐ Verb dispatch (claw.ask, claw.presence.*) — Phase 3
  • ☐ Topic publishing — Phase 4

See apps/desktop/docs/SYNOD.md in space-os-aether-app for the full design.