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

@jaxonchenjc/claude-wechat-channel

v1.0.2

Published

WeChat channel plugin for Claude Code — two-way messaging bridge via iLink Bot API

Readme

WeChat Channel for Claude Code

Two-way messaging bridge between WeChat and Claude Code via the iLink Bot API.

Background: Tencent released @tencent-weixin/openclaw-weixin — a WeChat channel for OpenClaw. This project brings the same capability to Claude Code, following the official Telegram and Discord channel plugin patterns.

Features

  • QR code login — scan with WeChat to connect
  • Text, image, voice, file, and video message support
  • Voice messages auto-transcribed (WeChat server-side STT)
  • Image/file/video CDN download with AES-128-ECB decryption
  • File/image/video sending via CDN upload
  • Typing indicator
  • Long message auto-chunking
  • Poll cursor persistence (no message replay on restart)

Prerequisites

Quick Start

1. Install (one-time)

claude --dangerously-skip-permissions

Inside Claude Code:

/plugin marketplace add jaxxjj/claude-wechat-channel
/plugin install wechat@claude-wechat-channel

Exit Claude Code.

2. Login

claude --dangerously-skip-permissions

Inside Claude Code:

/wechat:configure login

Scan the QR code with WeChat. Credentials saved automatically. Exit Claude Code.

3. Start

claude --dangerously-skip-permissions --dangerously-load-development-channels plugin:wechat@claude-wechat-channel

Done. WeChat messages now arrive in your Claude Code session.

How It Works

WeChat contact sends you a message
  → iLink Bot API (long-polling)
  → server.ts receives message
  → MCP notification to Claude Code
  → Claude processes, calls reply tool
  → server.ts sends via iLink API
  → Reply appears in WeChat

Access is gated by WeChat's QR code login — only contacts of the logged-in account can send messages.

Supported Message Types

| Type | Inbound | Outbound | |------|---------|----------| | Text | Direct | Auto-chunked | | Image | CDN download + AES decrypt | CDN upload + encrypt | | Voice | Server-side speech-to-text | — | | File (PDF, etc) | CDN download + AES decrypt | CDN upload + encrypt | | Video | CDN download + AES decrypt | CDN upload + encrypt |

Alternative Install Methods

npm

npx @jaxonchenjc/claude-wechat-channel install
claude --dangerously-skip-permissions --dangerously-load-development-channels server:wechat

Manual clone

git clone https://github.com/jaxxjj/claude-wechat-channel.git
cd claude-wechat-channel && bun install

Add to ~/.claude.json under mcpServers:

{
  "wechat": {
    "command": "bun",
    "args": ["run", "--cwd", "/path/to/claude-wechat-channel", "--shell=bun", "--silent", "start"],
    "type": "stdio"
  }
}

State Files

~/.claude/channels/wechat/
├── account.json   # Login credentials (chmod 600)
├── poll_cursor    # Long-poll cursor (prevents replay on restart)
└── inbox/         # Downloaded media files

Limitations

  • Session expiry: WeChat sessions may expire; re-run /wechat:configure login
  • Single session: Only one Claude Code session can poll at a time
  • No message history: Real-time only
  • Channels research preview: Requires --dangerously-load-development-channels flag

Credits

License

MIT