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

@dai_ming/plugin-didi-ride

v0.1.5

Published

OpenClaw Didi Ride native plugin — bind one global Didi MCP Key and proxy Didi ride tools for all agents

Readme

@dai_ming/plugin-didi-ride

OpenClaw native plugin for Didi ride capabilities. The plugin stores one shared Didi MCP Key under the OpenClaw state directory, then proxies calls to the official Didi MCP Server.

Contents

  • index.js: OpenClaw native extension, registers didi-ride__* tools.
  • openclaw.plugin.json: OpenClaw runtime plugin manifest.
  • openclaw-plugin.json: gateway compatibility manifest.
  • skills/didi-ride/SKILL.md: agent guidance for binding and using Didi tools.

Global Binding

The binding is global for the pod, not per agent.

Default state file:

$OPENCLAW_STATE_DIR/didi-ride/binding.json

In the managed pod this resolves to:

/data/didi-ride/binding.json

Calling didi-ride__bind_key again replaces the key. Agents should never echo the raw key back to the user.

DIDI_MCP_KEY can also be provided by environment variable. When present, it takes precedence over the persisted file.

Didi MCP Endpoint

Default production endpoint:

https://mcp.didichuxing.com/mcp-servers

The plugin appends ?key=<MCP_KEY> at request time and never returns the raw key in tool output.

For sandbox/debug usage, bind with a custom endpoint:

{
  "mcp_key": "YOUR_MCP_KEY",
  "endpoint": "https://mcp.didichuxing.com/mcp-servers-sandbox"
}

Install Through claw-gateway

Add the plugin to installPlugins:

installPlugins:
  - "@dai_ming/[email protected]"

For managed default installs, create or update the plugin registry record:

{
  "name": "plugin-didi-ride",
  "installPackage": "@dai_ming/plugin-didi-ride",
  "displayName": "Didi Ride",
  "category": "builtin",
  "recommendedVersion": "0.1.5",
  "enabled": true,
  "npmRegistry": "https://registry.npmjs.org"
}

Publish

cd packages/plugin-didi-ride
npm publish --registry https://registry.npmjs.org --access public