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

@launchthatbot/connect-openclaw-plugin

v0.2.2

Published

LaunchThatBot-native OpenClaw connect plugin for external and managed deployments.

Readme

@launchthatbot/connect-openclaw-plugin

LaunchThatBot-native OpenClaw connect plugin for external and LaunchThatBot-managed deployments.

This package complements (not replaces) launchthat-openclaw-connector:

  • launchthat-openclaw-connector: telemetry-only connector path.
  • @launchthatbot/connect-openclaw-plugin: plugin path with parity-oriented tools/methods and staged feature flags.

Features

  • Connect pairing helpers:
    • launchthatbot.connect.begin
    • launchthatbot.connect.complete
    • launchthatbot.connect.status
    • launchthatbot.connect.disconnect
  • Core gateway methods:
    • tools.list
    • tools.invoke (plugin tools only)
  • Read-only tool set (phase 1):
    • fs_read
    • fs_list
    • entity_list
    • entity_search
    • entity_sync
  • Gated mutation features (phase 2, off by default):
    • fs_mkdir
    • fs_write
    • fs_rename
    • fs_delete
    • sql_query

Install

openclaw plugins install @launchthatbot/connect-openclaw-plugin

Config

  • launchthatbotApiBaseUrl: LaunchThatBot Convex HTTP base URL (default: https://api.ltb.it.com).
  • presence.wsUrl: Presence relay websocket URL (default: <launchthatbotApiBaseUrl>/ws).
  • presence.beatIntervalMs: Presence beat interval in milliseconds (default: 60000).
  • workspaceId: workspace id (external mode).
  • instanceName: display name for connected instance.
  • deploymentMode: external or managed.
  • managed.serverId: required in managed mode.
  • fs.allowedRoots: allowed filesystem roots.
  • features.enableMutations: default false.
  • features.enableSqlQuery: default false.
  • bootstrap.syncPackagedSkills: default true; syncs bundled skills/ into ~/.openclaw/workspace/skills.

Pairing flow:

  1. Run launchthatbot.connect.begin
  2. Open returned authUrl and sign in to LaunchThatBot
  3. Plugin automatically completes linking once authorization is approved
  4. Optional fallback: run launchthatbot.connect.complete (no args) to force completion using stored pairing state
  5. Disconnect and clear local plugin state: launchthatbot.connect.disconnect

Presence transport (v2)

After pairing succeeds, the plugin opens an outbound websocket to presence.wsUrl and maintains liveness by sending periodic beat messages.

  • handshake uses nonce challenge + sha256(nonce + ingestToken) proof
  • beats are rate-limited by the relay
  • relay forwards authenticated presence updates to LaunchThatBot Convex (/api/openclaw/ws/presence)
  • instance status in LaunchThatBot admin is driven by these websocket presence updates

Skill bootstrap sync

This plugin bundles a companion skill at skills/connect-openclaw/SKILL.md.

On plugin load, it automatically syncs bundled skills into:

  • ~/.openclaw/workspace/skills/<skill-name>

Behavior:

  • idempotent copy (unchanged files are skipped)
  • additive (does not delete extra local files)
  • opt-out via config: bootstrap.syncPackagedSkills=false

Polling behavior

The plugin polls connect status every 3 seconds after pairing starts. To avoid endless status traffic, polling is bounded:

  • stops when connect succeeds
  • stops when challenge expires/consumed
  • stops after 120 attempts (about 6 minutes), then clears pending challenge state

Security model

  • Restricted filesystem roots.
  • Hard-blocked sensitive paths (credentials, devices, identity) and sensitive files.
  • OpenClaw config redaction for common auth token fields.
  • Mutation and SQL capabilities are disabled by default behind explicit feature flags.

Development

pnpm --filter @launchthatbot/connect-openclaw-plugin typecheck
pnpm --filter @launchthatbot/connect-openclaw-plugin build