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

os-pulse

v0.1.0

Published

PULSE OS-010 reference MCP server — validates, registers, and routes PULSE loop manifests; emits CloudEvents v1 envelopes for the five canonical cross-loop tokens. One of four MCP servers in the [&] three-protocol stack (box-and-box, graphonomous, os-pris

Readme

os-pulse

OpenSentience OS-010 PULSE reference MCP server.

One of four MCP servers in the [&] three-protocol stack:

| Package | Role | Install | |----------------|------------------------------------------|------------------------------------------------------------------| | box-and-box | [&] Protocol validator / composer | npx -y box-and-box --db ~/.box-and-box/specs.db | | graphonomous | Memory loop (5 machines) | npx -y graphonomous --db ~/.graphonomous/knowledge.db | | os-prism | Diagnostic loop (6 machines) | npx -y os-prism --db ~/.os-prism/benchmarks.db | | os-pulse | PULSE manifest registry (this) | npx -y os-pulse --db ~/.os-pulse/manifests.db |

What os-pulse does

  • Validates *.pulse.json loop manifests against pulse-loop-manifest.v0.1.json (JSON Schema draft 2020-12).
  • Runs the 12-test PULSE v0.1 conformance suite and stores the report.
  • Persists registered manifests, connections, and phase invocations in an embedded SQLite + sqlite-vec database.
  • Emits and receives CloudEvents v1.0 envelopes for the five canonical cross-loop tokens (TopologyContext, DeliberationResult, OutcomeSignal, ReputationUpdate, ConsolidationEvent).
  • Exposes 10 MCP tools and 3 resources over stdio.

MCP tools

| Tool | Description | |----------------------|-----------------------------------------------------------------------| | register_manifest | Validate + persist a manifest; runs conformance. | | validate_manifest | Dry-run validation; returns conformance report without persistence. | | list_loops | List registered loops, filterable by owner or parent. | | get_manifest | Retrieve a full manifest JSON by loop_id[@version]. | | resolve_phase | Return a phase definition + substrate/invariant scope. | | emit_signal | Wrap a token payload in a CloudEvents v1 envelope and persist. | | receive_signal | Deliver pending envelopes for a target loop and mark delivered. | | trace_connection | Walk outbound connections up to max_depth. | | run_conformance | Re-run the 12 conformance tests against a registered loop. | | export_topology | Export loops + edges + nesting as JSON or Graphviz DOT. |

MCP resources

| URI | Returns | |--------------------------------|-----------------------------------------| | pulse://runtime/health | Server health + manifest / signal counts. | | pulse://manifests/recent | Recently registered manifests. | | pulse://signals/recent | Recent CloudEvents envelopes. |

Install

npx -y os-pulse --db ~/.os-pulse/manifests.db

Or in .mcp.json:

{
  "mcpServers": {
    "pulse": {
      "command": "npx",
      "args": ["-y", "os-pulse", "--db", "~/.os-pulse/manifests.db"]
    }
  }
}

Flags

| Flag | Default | |------------------|-------------------------------| | --db <path> | ~/.os-pulse/manifests.db | | --transport | stdio (only; HTTP is planned) | | --schema-path | bundled pulse-loop-manifest.v0.1.json | | --log-level | info |

Conformance suite (12 tests)

  1. T01 Schema validation (authoritative — ajv against v0.1 schema)
  2. T02 Phase atomicity
  3. T03 Phase idempotency
  4. T04 Nesting waits
  5. T05 κ-routing
  6. T06 Quorum before commit
  7. T07 Append-only audit
  8. T08 Signal deduplication (runtime-only — returns pending)
  9. T09 Substrate degradation
  10. T10 Multi-tenant isolation (runtime-only — returns pending)
  11. T11 trace_id propagation
  12. T12 Protocol version monotonicity

Tests that require a running loop to observe runtime behavior return pending in v0.1. Manifest-level checks are exhaustive.

Build from source

git clone https://github.com/c-u-l8er/AmpersandBoxDesign
cd AmpersandBoxDesign/PULSE
npm install
npm run build
node bin/os-pulse.js --help

Spec

License

Apache-2.0