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/openclaw-fleetmind-delegation

v0.1.0

Published

OpenClaw plugin boundary for FleetMind delegation.

Readme

@continuous-agentics/openclaw-fleetmind-delegation

This is the OpenClaw plugin package in the FleetMind Delegation monorepo. It is distinct from both the root monorepo package and @continuous-agentics/delegation-core: the core package is the published Node.js delegation runtime, while this package provides the OpenClaw integration layer.

Its OpenClaw manifest ID is fleetmind-delegation. That ID is used for installation and configuration; it is not the npm package name.

For component selection, required AWS access, and verification steps, see the repository consumer and onboarding guide.

Current capabilities

  • fleetmind_task_get: read a task by ID.
  • fleetmind_task_list_active: list tasks in the delegated, accepted, shipped, signed-off, or blocked states.
  • fleetmind_task_ack: acknowledge a delegated task as its assigned worker.
  • fleetmind_task_ship: mark an accepted task as shipped as its assigned worker.
  • fleetmind_task_block: mark a delegated or accepted task as blocked as its assigned worker.
  • fleetmind_task_signoff: sign off a shipped task that requires human sign-off.
  • fleetmind_task_merge: mark an eligible shipped or signed-off task as merged.
  • Uses the shared delegation-core DynamoDB and NATS adapters, preserving FleetMind record, GSI, and event conventions.

Lifecycle transitions use TaskLedger conditional writes, so the task state machine and assigned-worker restrictions are enforced in DynamoDB. Worker transitions require taskId and worker, and a before_tool_call gate permits them only when the calling OpenClaw agent maps to that worker in workerAgentIds; human transitions require taskId. Tool calls intentionally do not accept a caller-supplied project for lifecycle transitions; the ledger resolves the stored project before rewriting status indexes.

fleetmind_task_signoff and fleetmind_task_merge are human-authority transitions. They are optional tools in the manifest and fail closed in a before_tool_call hook unless the calling OpenClaw agent ID appears in configured reviewerAgentIds.

Terminal and worker-event NATS services are opt-in. Both require an authoritative task-ledger record before delivery. Worker events claim the task, post a best-effort receipt, and wake the configured worker session. Terminal events use the durable terminal outbox, route a fixed receipt to the task's persisted delivery context, and retry if that receipt cannot be sent. Terminal transport never invokes a PM agent or makes a review decision. Discord delivery remains out of scope. The plugin does not create tasks or publish/release packages.

Installation

Install the current stable release with the latest dist-tag:

openclaw plugins install npm:@continuous-agentics/openclaw-fleetmind-delegation@latest

For a reproducible deployment, pin the tested version instead:

openclaw plugins install npm:@continuous-agentics/[email protected]

Before 0.1.0 is published, install the locally packed candidate only in the sandbox described by the runbook.

The command registers the plugin manifest ID, fleetmind-delegation.

Configuration

Configure that manifest ID in OpenClaw, replacing the placeholders with the task table and region from the FleetMind deployment:

{
  plugins: {
    entries: {
      "fleetmind-delegation": {
        enabled: true,
        config: {
          tableName: "your-fleet-tasks",
          awsRegion: "us-west-2"
        }
      }
    }
  }
}

awsRegion is optional when AWS_REGION or AWS_DEFAULT_REGION is set. Configure workerAgentIds to bind each worker agent to its FleetMind worker ID. Configure reviewerAgentIds with only the designated human-reviewer agent IDs before allowlisting sign-off or merge. The gateway host needs DynamoDB read/write access to the configured task table and its ProjectStatusIndex and StatusIndex GSIs. Restart the gateway after adding or changing the configuration.

Populate configuration before use

Installation only registers the plugin; it does not create a task table, discover FleetMind settings, or populate this configuration. Before using any task or event tool, edit the OpenClaw config file that your gateway loads and populate the plugins.entries.fleetmind-delegation.config block shown above with your own table, region, worker bindings, and reviewer IDs. Restart the gateway, then confirm it is loaded with:

openclaw plugins inspect fleetmind-delegation --runtime --json

For terminal or worker delivery, also populate the matching terminalEvents or delegationEvents block below. Leave those blocks absent when only the read/lifecycle tools are required.

FleetMind-managed fleets (planned)

FleetMind support for rendering this configuration from fleet.yaml is tracked in Continuous-Agentics/fleetmind#307. Until that work ships, FleetMind users must populate the standard OpenClaw configuration manually, exactly as standalone users do. The plugin deliberately has no runtime dependency on FleetMind files, so it remains usable outside a FleetMind deployment.

Optional NATS and Slack delivery

terminalEvents delivers a fixed PM receipt for ship and block. It resolves the task's persisted delivery context first, then falls back to a valid legacy Slack permalink only for old records. A task with neither is refused rather than routed to a generic channel or synthesized agent:<pm>:main session. A failed terminal receipt leaves its durable outbox record pending for retry. delegationEvents enables a worker subscriber for one configured OpenClaw agent. Set workerHomeSlack to open each delegated task in a fresh worker-home-channel thread; without it, a Slack task falls back to the authoritative planning thread. The worker service atomically acknowledges (claims) the delegated task before posting a receipt or waking the agent, so duplicate NATS deliveries do not start duplicate worker runs. Slack receipt failure never prevents the claimed task's worker wake; a wake failure leaves the claimed task for operational reconciliation.

{
  terminalEvents: {
    natsServers: ["nats://nats.example:4222"],
    subjectPrefix: "fleetmind",
    pmAgentId: "conductor"
  },
  delegationEvents: {
    natsServers: ["nats://nats.example:4222"],
    subjectPrefix: "fleetmind",
    agentId: "forge-agent",
    workerHomeSlack: { accountId: "default", conversationId: "C0123456789" }
  }
}

Limits

This version does not create tasks, implement Discord delivery, or publish/release packages.