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

@yukeen/openclaw-teamgaga

v0.2.1

Published

OpenClaw channel plugin for TeamGaga social platform — one-command TeamGaga AI bot setup

Readme

OpenClaw × TeamGaga Bot

Connects the TeamGaga bot to an OpenClaw server that is already running. Does not change the LLM or agent config—only adds a channel.

Prerequisites

  • openclaw gateway is already running and openclaw channels list works
  • Node.js 22.12+ (OpenClaw requirement)
  • A Bot token from the TeamGaga developer site

Three-step connect

# 1) Install the plugin
npm install -g @teamgaga/openclaw-teamgaga

# 2) One-liner
openclaw-tgg-add --bot-token <your bot token> --restart

# 3) Done. In TeamGaga, @ your bot to chat.

Pure openclaw config set form (equivalent, same idea as Telegram/Discord):

openclaw config set channels.teamgaga.accounts.default.botToken <token>
openclaw config set channels.teamgaga.accounts.default.enabled true       --strict-json
openclaw config set channels.teamgaga.accounts.default.apiBase https://open.teamgaga.com
openclaw config set channels.teamgaga.accounts.default.pollIntervalMs 1500 --strict-json
openclaw config set plugins.allow '["teamgaga"]'                          --strict-json
openclaw gateway restart

Verify: have OpenClaw send a greeting

If the client does not show the bot, use this to smoke-test the path:

openclaw message send \
  --channel teamgaga \
  --target dm:<your TeamGaga user_id> \
  --message "Hi! I'm the TeamGaga bot connected through OpenClaw."

A successful response looks like:

{
  "action": "send",
  "channel": "teamgaga",
  "payload": {
    "to": "dm:115079220018696192",
    "via": "direct",
    "result": { "ok": true, "externalIds": ["239498614441873408"] }
  }
}

target conventions:

| Form | Meaning | |------|--------| | dm:<user_id> or user:<user_id> | DM (uses POST /users/<id>/dm to get a channel) | | <channel_id> or channel:<id> | Post to a community channel |

Options

| Option | Description | Default | |--------|-------------|---------| | --bot-token <t> | Bot token (or TGG_BOT_TOKEN) | required | | --api-base <url> | TeamGaga API base | https://open.teamgaga.com | | --account <id> | Account id (multi-account) | default | | --poll-interval <ms> | Poll interval (≥500) | 1500 | | --restart | After writing config, run openclaw gateway restart | off | | --skip-verify | Skip online /bot/v1/me check | off | | --disabled | Write config but keep disabled | off |

Multi-account example:

openclaw-tgg-add --account bot_a --bot-token tgg_aaa
openclaw-tgg-add --account bot_b --bot-token tgg_bbb --restart

Uninstall

openclaw config unset channels.teamgaga
openclaw plugins disable teamgaga
openclaw gateway restart

Development

npm install
npm test
npm run build