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

@agentic-research/vespers-core

v0.1.2

Published

Portable tick/fold engine for canonical-hours board state.

Readme

@agentic-research/vespers-core

Portable tick/fold engine for agentic board state.

Vespers is the runtime-neutral core extracted from canonical-hours. It generalizes the durable parts of an Eve agent — source protocols, lifecycle events, deterministic merge/fold logic, board schema, markdown rendering, config parsing, and the runTick() loop — so the same board engine can run outside a Node-hosted Eve process.

Why This Exists

canonical-hours is the standing Eve agent that schedules ticks, hosts the MCP surface, and wires concrete integrations. Vespers is the portable kernel under that agent: no Eve dependency, no Node filesystem dependency, and no assumption about the host runtime.

That split lets downstream hosts reuse the same board semantics in environments like Cloudflare Workers workerd, cloister isolates, Durable Objects, or a future Wasm-backed runtime. The package is tested both under Node/Vitest and under a simulated Cloudflare Workers workerd runtime.

Install

pnpm add @agentic-research/vespers-core

Use

import {
  BoardSchema,
  runTick,
  renderBoardMd,
  type BoardStore,
  type Source,
} from "@agentic-research/vespers-core";

Source implementations fetch observations from systems like GitHub, Linear, Lectio, weather, or private registries. BoardStore is the one storage seam: bring your own filesystem, KV, Durable Object, database, or in-memory adapter.

let board = null;
const boardStore: BoardStore = {
  async read() {
    return board;
  },
  async write(next) {
    board = BoardSchema.parse(next);
  },
};

const result = await runTick({
  sources,
  now: new Date(),
  priority: ["github", "linear"],
  boardStore,
  invokeAgent: async ({ merged, freshness, degradations, window }) => {
    await boardStore.write({
      generated_at: new Date().toISOString(),
      tick_status: "ok",
      window,
      freshness,
      degradations,
      items: [],
    });
  },
});

console.log(result);
console.log(board ? renderBoardMd(board) : "No board written");

Exports

| export | purpose | | --- | --- | | runTick() | Fetch sources, merge lifecycle events, fold board state, and persist it through a BoardStore. | | mergeEvents() / foldState() | Deterministic event ordering and pure state folding. | | BoardSchema / ConfigSchema | Zod schemas for board and config validation. | | renderBoardMd() | Markdown renderer for board snapshots. | | Source / SnapshotSource | Protocols for event and snapshot producers. | | BoardStore | Minimal persistence interface for host runtimes. |

Design Notes

Vespers models PRs, issues, and snapshots as observations over artifacts rather than as GitHub-specific records. That keeps integrations thin: a new source adds events to the protocol instead of rewriting the fold engine.

The canonical Node/Eve integration lives in canonical-hours. This package is the portable kernel intended for downstream hosts, including workerd-style runtimes.