AIAny
Chatbot2022
Icon for item

ChatGPT-on-Wechat

Runs a local AI assistant across WeChat/Feishu/DingTalk/WeCom/QQ/MP/Web, with an Agent mode for task planning, long-term memory, Skills, and tool calling so it can keep working toward goals rather than just chat.

Introduction

A lot of “ChatGPT integrations” stop at UI and prompt wiring. What makes this project interesting is the shift from chat to agentic operations: once you enable the Agent mode, the system becomes a long-running dispatcher that can plan, call tools, persist memory, and extend itself via Skills—so the hard part becomes orchestration, not conversation.

What Sets It Apart
  • Agent loop + persistent workspace: it keeps a working directory for memory and skills, which reduces the “stateless bot” problem when you want continuity across days.
  • Skills as an extension boundary: instead of baking every workflow into one codebase, you can install/compose capabilities (from a hub or created in chat). This is practical for teams who want incremental feature delivery.
  • Multi-model + multi-channel routing: one framework can switch LLM providers and simultaneously serve multiple messaging channels, which is useful when cost/quality tradeoffs change by task.
  • Tooling beyond text: built-in tools (file IO, terminal execution, browser automation, scheduling) make the agent able to execute multi-step processes rather than only generate responses.
Who It’s For (and Trade-offs)

Great fit if you want a self-hosted AI “digital worker” that you can keep online and expand over time—especially for chat-based operations across China’s common enterprise/personal ecosystems. Look elsewhere if you only need a lightweight web chat front-end (this is heavier: Agent mode increases token usage and requires careful deployment security), or if you strictly want a single-channel, single-purpose bot rather than a general framework.

Information

  • Websitegithub.com
  • Authorszhayujie
  • Published date2022/08/07

Categories

More Items

GitHub
AI Agent2024

Generates Wikipedia-style articles from web search using LLMs: it researches topics, produces multi-perspective outlines via perspective-guided question asking and simulated conversations, then drafts full articles with citations. Supports human-AI collaboration (Co-STORM) and grounding with multiple retrievers.

GitHub
AI Agent2025

Open-source companion to a technical book that teaches how to design, evaluate and ship LLM-based AI agents — includes the full Chinese manuscript, community translations, chapter-aligned runnable example projects, and reproducible evaluation harnesses.

GitHub

Provides a local-first web-intelligence layer for AI agents: search, fetch, crawl, extract, cache, find-similar and agent-style research without API keys or per-query billing, running as an MCP server, REST daemon, or SDK.