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

Turns fragile, implicit search progress into explicit, persistent, shared state for multi-agent information seeking — externalizes progress as Frontier Task, Evidence Graph, Coverage Map and Failure Memory, and uses pipeline-parallel scheduling plus a middleware harness to avoid repeated failed searches and improve utilization and throughput.

GitHub
AI Agent2026

Provides a lightweight Python harness that turns LLMs into working agents with tool-use, skills, persistent memory, permission controls and multi-agent coordination. Ships with a CLI/React TUI, 43+ built-in tools, a plugin/skill system and the ohmo personal-agent for chat gateways. Best for developers prototyping agent workflows and multi-agent experiments.

GitHub
AI Client2025

Turns Chromium into a local-first AI browser with an embedded assistant that can summarise pages, extract structured data, automate web tasks, and run scheduled agents. Built as an open-source Chromium fork with 53+ built-in browser tools, 40+ app integrations, and support for BYO AI keys or fully local models (Ollama / LM Studio).