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

@mandate-os/openclaw

v0.1.17

Published

MandateOS bridge, plugin bundle, and installer for OpenClaw.

Readme

@mandate-os/openclaw

MandateOS bridge, plugin bundle, and installer for OpenClaw.

This package provides:

  • mandate-os-openclaw-install to configure OpenClaw for a guarded workspace
  • mandate-os-openclaw-bridge for policy evaluation inside the OpenClaw plugin flow
  • the bundled OpenClaw extension assets that enable the guarded workflow

Environment

The installer expects:

  • MANDATE_OS_BASE_URL

Optional during install:

  • MANDATE_OS_MCP_DEFAULT_MANDATE_ID
  • MANDATE_OS_OPENCLAW_SANDBOX_MODE (all or off)

Required at OpenClaw runtime:

  • MANDATE_OS_AGENT_TOKEN

One-Command Install

MANDATE_OS_BASE_URL=https://mandateos.example.com \
MANDATE_OS_AGENT_TOKEN='key_id.secret' \
MANDATE_OS_MCP_DEFAULT_MANDATE_ID='mdt_123' \
MANDATE_OS_OPENCLAW_WORKSPACE_PATH=/absolute/path/to/your/repo \
npx --yes --package @mandate-os/openclaw@latest mandate-os-openclaw-install install

That command:

  • installs the MandateOS plugin bundle under the local OpenClaw state directory
  • configures the MandateOS MCP entry for the guarded workspace
  • creates or updates the mandateos_guarded agent profile

To install the guarded agent with sandboxing disabled, pass either:

MANDATE_OS_OPENCLAW_SANDBOX_MODE=off \
npx --yes --package @mandate-os/openclaw@latest mandate-os-openclaw-install install

or:

npx --yes --package @mandate-os/openclaw@latest mandate-os-openclaw-install install --sandbox-mode=off

If you omit the option, fresh installs default to all, while existing guarded agents keep their current sandbox setting.

Inspect the current install state with:

MANDATE_OS_OPENCLAW_WORKSPACE_PATH=/absolute/path/to/your/repo \
npx --yes --package @mandate-os/openclaw@latest mandate-os-openclaw-install status

Repair an existing OpenClaw install in place with a clean MandateOS asset reset:

MANDATE_OS_BASE_URL=https://mandateos.example.com \
MANDATE_OS_MCP_DEFAULT_MANDATE_ID='mdt_123' \
MANDATE_OS_OPENCLAW_WORKSPACE_PATH=/absolute/path/to/your/repo \
npx --yes --package @mandate-os/openclaw@latest mandate-os-openclaw-install repair

That repair flow removes the MandateOS-owned OpenClaw plugin and bundle directories plus local MandateOS approval/status cache files, then reinstalls the current assets and repairs the MandateOS config entries. It preserves existing guarded-agent overrides such as mandateos_guarded.sandbox.mode = off. You can also change the guarded-agent sandbox mode during repair with --sandbox-mode=all|off.

Runtime note

OpenClaw must still start with MANDATE_OS_AGENT_TOKEN in its runtime environment so the bridge can evaluate actions against MandateOS policy.

Interpreting status

status is intentionally narrower than doctor. Read these sections independently:

  • installHealth: local install health for the plugin, bundle, MCP entry, bridge runtime, and guarded agent wiring
  • runtimeAuthorization: whether the live OpenClaw runtime has MANDATE_OS_AGENT_TOKEN
  • wrapperExposureVerification: whether a live OpenClaw session exposed the MandateOS wrapper tools
  • livePolicyCapability: whether base URL, runtime token, and default mandate are all present for live-policy checks

That split matters because these states can diverge. Example: install health can be good while runtime authorization is still missing, or wrapper exposure can be unverified even though the plugin registered successfully.

Interpreting doctor

doctor adds smoke tests on top of status:

  • Install status checks the local install footprint.
  • Runtime token confirms runtime authorization input.
  • Local bridge smoke test confirms the bridge can execute locally.
  • Live policy smoke test requires MANDATE_OS_BASE_URL, MANDATE_OS_AGENT_TOKEN, and MANDATE_OS_MCP_DEFAULT_MANDATE_ID.

If you want live OpenClaw policy evaluation, the backing API key used for MANDATE_OS_AGENT_TOKEN must include simulate:write.