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

@continuous-agentics/delegation-core

v0.1.4

Published

Versioned delegation contracts shared by FleetMind and OpenClaw.

Readme

@continuous-agentics/delegation-core

Versioned, channel-neutral task and lifecycle runtime shared by FleetMind and the OpenClaw delegation plugin.

How this relates to FleetMind

@continuous-agentics/fleetmind deploys and manages OpenClaw multi-agent fleets. This package extracts its stable delegation contracts into a small, independently versioned runtime, so FleetMind and OpenClaw integrations can share the same DynamoDB task, lifecycle, and NATS event protocol without depending on FleetMind's provisioning CLI.

Use @continuous-agentics/fleetmind to operate a fleet. Use @continuous-agentics/delegation-core when building a compatible integration that needs the delegation protocol itself.

It owns the FleetMind-compatible DynamoDB ledger, read adapter, NATS v1.0 adapter, and their contracts. It intentionally contains no channel API or OpenClaw runtime implementation.

The package preserves the existing task keys, secondary-index keys, task-record schema, conditional lifecycle writes, and NATS event envelope/subjects so a FleetMind migration can consume it without changing the persisted protocol.

Install

npm install @continuous-agentics/delegation-core

Node.js 20 or newer is required. The consuming runtime must provide AWS credentials and a region through AWS_REGION/AWS_DEFAULT_REGION or adapter configuration.

What it exports

  • DynamoDbTaskReader for read-only task lookup and status queries against a FleetMind-compatible DynamoDB task table.
  • TaskLedger for conditional task lifecycle writes. Use it rather than raw unguarded DynamoDB writes when the service owns a lifecycle transition.
  • NatsTaskEvents for the FleetMind v1.0 task-event envelope and subjects.
  • Versioned task, lifecycle, delivery-context, and event contracts.

The core package does not provision DynamoDB, AWS permissions, NATS, or any human-facing channel integration. See the repository consumer and onboarding guide for a working reader example and operational prerequisites.