Claude Skill

corespeed-io/wechatbot

A TypeScript SDK that integrates WeChat iLink Bot with OpenClaw/AI Agent, enabling developers to build AI-powered WeChat bots with agent capabilities.

Overview

Stars518
Forks65
LanguageTypeScript
Last pushed2026-07-02
Last synced2026-07-03
View on GitHub

Repository

Ownercorespeed-io
Repositorywechatbot
Full namecorespeed-io/wechatbot
Repo ID1,189,005,012

Install this Skill

git clone https://github.com/corespeed-io/wechatbot.git

Registry

Typeopenclaw_skill
Quality score75/100
Verificationreadme_parsed
Last verified2026-06-10
Platforms
OpenClaw
Capabilities
memoryimageterminalai-agentsweixin
Detected files
README.mddocs

Summary

A TypeScript SDK that integrates WeChat iLink Bot with OpenClaw/AI Agent, enabling developers to build AI-powered WeChat bots with agent capabilities.

Chinese description

微信 iLink Bot SDK 用于 OpenClaw/AI Agent

Key features

  • TypeScript-based SDK for WeChat iLink Bot
  • Seamless integration with OpenClaw/AI Agent
  • Supports AI agent workflows in WeChat
  • Lightweight and developer-friendly

Use cases

  • Build AI-powered customer service bots on WeChat
  • Automate WeChat interactions using AI agents
  • Develop intelligent WeChat assistants for businesses
  • Integrate OpenClaw agent capabilities into WeChat

README excerpt

# WeChatBot <p align="center"> <strong>微信 iLink Bot SDK for OpenClaw / AI Agent</strong><br/> <sub>模块化、生产级、多语言微信 iLink Bot SDK</sub> </p> <p align="center"> <a href="https://www.npmjs.com/package/@wechatbot/wechatbot"><img src="https://img.shields.io/npm/v/@wechatbot/wechatbot?style=flat-square&label=npm" alt="npm"></a> <a href="https://github.com/corespeed-io/wechatbot/blob/main/LICENSE"><img src="https://img.shields.io/github/license/corespeed-io/wechatbot?style=flat-square" alt="License"></a> <a href="https://github.com/corespeed-io/wechatbot"><img src="https://img.shields.io/github/stars/corespeed-io/wechatbot?style=flat-square" alt="Stars"></a> </p> --- [English](README.EN.MD) 5 分钟让任何 Agent 接入微信。灵感来自 [openclaw-weixin-cli](https://www.npmjs.com/package/@tencent-weixin/openclaw-weixin)。 ## 📦 SDK 一览 | SDK | 安装 | 状态 | |-----|------|------| | [Node.js](nodejs/) | `npm install @wechatbot/wechatbot` | ✅ 生产就绪 | | [Python](python/) | `pip install wechatbot-sdk` | ✅ 生产就绪 | | [Go](golang/) | `go get github.com/corespeed-io/wechatbot/golang` | ✅ 生产就绪 | | [Rust](rust/) | `cargo add wechatbot` | ✅ 生产就绪 | ## ⚡ 快速开始 ### Node.js ```typescript import { WeChatBot } from '@wechatbot/wechatbot' const bot = new WeChatBot() await bot.login() // 扫码登录 bot.onMessage(async (msg) => { await bot.reply(msg, `Echo: ${msg.text}`) // 自动回复 }) await bot.start() ``` ### Python ```python from wechatbot import WeChatBot bot = WeChatBot() @bot.on_message async def handle(msg): await bot.reply(msg, f"Echo: {msg.text}") bot.run() # 扫码登录 + 开始监听 ``` ### Go ```go bot := wechatbot.New() bot.Login(ctx, false) bot.OnMessage(func(msg *wechatbot.IncomingMessage) { bot.Reply(ctx, msg, fmt.Sprintf("Echo: %s", msg.Text)) }) bot.Run(ctx) ``` ### Ru

Topics

Explore more

Data from GitHub. Synced on 2026-07-03