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

Hugging Face
AI Model2026

Open-weights LLM fine-tuned for phone-based voice agents that prioritizes low latency and reliable tool/function calling. Based on NVIDIA Nemotron 3 Nano (30B total, 3.5B active), supports very long contexts (262,144 tokens) and recommends temperature=0 with thinking disabled for deployment.

GitHub
AI Agent2026

A curated collection of production-ready Agent Skills that turn tasks—presentation production, image generation, local KB retrieval, article assembly, and web-design—into agent-loadable skill folders. Uses a SKILL.md contract, supports multiple agent runtimes (Claude Code, Cursor, Codex), and offers modular install paths with pinned release zips.

GitHub
AI Agent2026

Provides a ruleset and skills that make AI coding agents prefer the simplest correct implementation: reuse existing code, prefer stdlib/native features, and only write minimal new code. Cuts generated LOC, tokens, cost and time while preserving validation and safety.