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

@cloudbase/setup-openclaw

v1.1.1

Published

Configure Moltbot/OpenClaw for CloudBase full-stack development and copy app templates

Readme

Setup CloudBase for OpenClaw/Moltbot

This skill helps you configure your OpenClaw/Moltbot installation for CloudBase full-stack development, including copying app templates to start new projects.

Quick Start

Option 1: Run the Setup Script

npx @cloudbase/setup-openclaw detect

Option 2: Copy App Template

npx @cloudbase/setup-openclaw copy-template --dest /path/to/my-project

Option 3: Install Skill Enhancer Plugin

# Install the skill-enhancer plugin (optional but recommended)
npx @cloudbase/setup-openclaw install-plugin

This plugin automatically instructs the model to list available skills and justify their usage before responding.

Option 4: Manual Setup

Follow these steps:

  1. Find your workspace - Check your config file for the workspace path
  2. Configure MCP - Add CloudBase MCP to <workspace>/config/mcporter.json
  3. Update AGENTS.md - Add CloudBase development rules
  4. Install skill-enhancer plugin (optional) - npx @cloudbase/setup-openclaw install-plugin
  5. Install skills - npx skills add tencentcloudbase/skills -y
  6. Copy app template (optional) - cp -r <workspace>/app <workspace>/my-new-project
  7. Restart gateway - moltbot gateway restart

See SKILL.md for detailed instructions.

What This Skill Does

  • ✅ Detects your OpenClaw/Moltbot installation directory
  • ✅ Finds your workspace configuration
  • ✅ Checks for existing CloudBase MCP setup
  • ✅ Verifies CloudBase skills are installed
  • ✅ Installs skill-enhancer plugin (optional) to enforce proper skill usage
  • ✅ Copies CloudBase React template for new projects
  • ✅ Provides step-by-step guidance for configuration

App Template

The workspace includes a CloudBase + React template that can be copied as a starting point:

Features:

  • React 19 + Vite 6 + TypeScript
  • Tailwind CSS + DaisyUI
  • CloudBase Web SDK integration
  • Example project (Swimming Tracker)
  • Build configuration and deployment scripts

To copy:

# Using the script
bash scripts/detect-setup.sh copy-template --dest ../my-new-project

# Or manually
cp -r app/ my-new-project/

After copying:

  1. Update cloudbaserc.json with your Environment ID
  2. Run npm install
  3. Run npm run dev for development
  4. Run npm run build for production

Requirements

  • OpenClaw or Moltbot installation
  • Tencent Cloud account with CloudBase enabled
  • Node.js 18+ (for Node.js setup script)

Getting CloudBase Credentials

You'll need three values:

  1. Environment ID - From CloudBase Console
  2. SecretId - From CAM API Key Management
  3. SecretKey - From CAM API Key Management

MCP Configuration Example

{
  "mcpServers": {
    "cloudbase-mcp": {
      "command": "npx",
      "args": ["@cloudbase/cloudbase-mcp@latest"],
      "env": {
        "TENCENTCLOUD_SECRETID": "your_secret_id_here",
        "TENCENTCLOUD_SECRETKEY": "your_secret_key_here",
        "CLOUDBASE_ENV_ID": "your_env_id_here"
      }
    }
  }
}

Verification

To verify everything is working:

Ask the agent: "List available MCP tools"
Should see CloudBase-related tools

Troubleshooting

MCP not showing up

  1. Verify mcporter.json syntax is valid JSON
  2. Check credentials are correct (no extra spaces)
  3. Restart the gateway after config changes
  4. Run npx mcporter list to verify MCP servers

Skills not loading

  1. Check skills are in the correct directory
  2. Verify SYMLINKS are created correctly
  3. Restart the gateway after installing skills

Publishing (maintainers)

Publish to the official npm registry (not npmmirror). From this directory:

# Log in to npm (only once)
npm login --registry https://registry.npmjs.org

# Bump version if needed, then publish
npm version patch   # or minor/major
npm publish --registry https://registry.npmjs.org

If your shell uses npmmirror by default, npm publish without --registry will fail with ENEEDAUTH; always pass --registry https://registry.npmjs.org for publish.

Links

License

MIT