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/convex-plugin

v0.1.1

Published

OpenClaw plugin package for deterministic Convex bootstrap and migration workflows.

Readme

@launchthatbot/convex-plugin

OpenClaw plugin for full Convex lifecycle, sync, and storage workflows.

This package is intentionally separate from @launchthatbot/convex-backend:

  • @launchthatbot/convex-backend remains the skill/instruction package.
  • @launchthatbot/convex-plugin provides lifecycle, provisioning, sync orchestration, storage profile controls, and migration diagnostics.

What this plugin includes

  • openclaw.plugin.json manifest with plugin id and config schema.
  • TypeScript plugin entrypoint (src/index.ts).
  • Typed plugin API via openclaw/plugin-sdk.
  • Lifecycle + sync tool:
    • convex_connection_lifecycle
      • connect_begin
      • connect_status
      • connect_disconnect
      • provision_run
      • provision_status
      • health_check
      • sync_backfill
  • Tool:
    • convex_project_scan - structured scan with scan (env | logic | cron-memory | all) and optional rootPath.
  • Slash commands:
    • /convex-connect-begin [--scope project|team] [--server <id>]
    • /convex-connect-status [--connection <id>]
    • /convex-connect-disconnect [--connection <id>]
    • /convex-provision-run [--connection <id>] [--server <id>]
    • /convex-provision-status [--connection <id>]
    • /convex-health-check [--connection <id>]
    • /convex-sync-backfill [--connection <id>] [--domains memory,dailyLogs,agentState,events] [--window-days 30]
    • /convex-migration-mode - report migration policy.
    • /convex-env-diff [rootPath] - compare local .env* keys vs Convex env keys (excluding CONVEX_DEPLOY_KEY and CONVEX_DEPLOYMENT).
    • /convex-unmigrated-logic [rootPath] - find local logic candidates likely not yet migrated into Convex.
    • /convex-cron-memory-scan [rootPath] - scan cron-like code and memory/daily-log files that could move to Convex.

Install (OpenClaw)

openclaw plugins install @launchthatbot/convex-plugin

Then enable/configure under plugins.entries.launchthatbot-convex in your OpenClaw config.

Config

openclaw.plugin.json supports:

  • launchthatbotApiBaseUrl
  • workspaceId
  • instanceName
  • deploymentMode: external | managed
  • managed.serverId
  • connection.connectionId
  • connection.scope: project | team
  • sync.enabledDomains: subset of memory, dailyLogs, agentState, events
  • sync.batchSize
  • sync.backfillWindowDays
  • sync.maxRetryAttempts
  • storage.profile: local-only | convex-managed | convex-r2-offload
  • storage.r2.enabled
  • storage.r2.credentialRef
  • features.enableLifecycle
  • features.enableBackfill
  • features.enableR2Offload
  • defaultMigrationMode: "one-by-one" or "blanket"
  • requireExplicitCleanupApproval: true|false

Development

pnpm --filter @launchthatbot/convex-plugin build
pnpm --filter @launchthatbot/convex-plugin test

Rollout plan

Use staged feature-flag rollout to reduce risk:

  1. Enable features.enableLifecycle only.
  2. Enable features.enableBackfill and validate sync state/receipts/backfill jobs.
  3. Enable features.enableR2Offload with storage.profile=convex-r2-offload on pilot tenants.
  4. Monitor health via convex-health-check and keep migration scan commands active during rollout:
    • /convex-env-diff
    • /convex-unmigrated-logic
    • /convex-cron-memory-scan