CowAgent

by zhayujieVerified

Open-source super AI assistant & Agent Harness. Plans tasks, runs tools and skills, self-evolves with memory and knowledge. Multi-model, multi-channel. Lightweight, extensible, one-line install. (formerly chatgpt-on-wechat)

46,634
Stars
10,321
Forks
Python
Language
8/23/2026
Added
View on GitHubDownload ZIP

⚠️ Third-Party Software Notice

This skill is third-party open-source software developed and hosted independently on GitHub. SkillTip is an informational directory and does not control or maintain the underlying repository. Any security checks displayed are automated and limited in scope. Review the source code before installing.

Read the Terms of Service

Installation

Add to your Claude Code skills directory:

# Add to your Claude Code skills
git clone https://github.com/zhayujie/CowAgent

Getting Started

Guides for using skills like CowAgent.

Security Report

Verified

Last scanned: —

{
  "status": "PASSED",
  "issues": []
}

README.md

CowAgent

Latest release License: MIT Stars Docs WeChat Group Discord

zhayujie%2FCowAgent | Trendshift

[English] | [中文] | [繁體中文] | [日本語]

CowAgent is an open-source super AI assistant that proactively plans tasks, controls your computer and external services, creates and runs Skills, builds a personal knowledge base and long-term memory, and grows alongside you through self-evolution — a reference implementation of Agent Harness engineering.

CowAgent is lightweight, easy to deploy, and built to extend. Plug in any major LLM provider and run it 24/7 on a personal computer or server, across the web and all major IM platforms.

🌐 Website  ·  📖 Docs  ·  🚀 Quick Start  ·  🧩 Skill Hub  ·  💻 Download  ·  ☁️ Try Online


🎬 Demo

Your browser can't play this video. Watch the demo on our website →


🌟 Highlights

CapabilityDescription
PlanningDecomposes complex tasks and executes them step by step, looping over tools until the goal is reached
MemoryThree-tier architecture (context → daily → core), automatic Deep Dream distillation, hybrid keyword + vector retrieval
KnowledgeAuto-curates structured knowledge into a Markdown wiki, builds an evolving knowledge graph with visual browsing
EvolutionSelf-Evolution reviews conversations automatically to improve skills, follow up on unfinished tasks, and consolidate memory and knowledge, growing through everyday use
SkillsOne-click install from Skill Hub, GitHub, ClawHub; or create custom skills via natural-language conversation
ToolsBuilt-in file I/O, terminal, browser, scheduler, memory retrieval, web search, and 10+ more tools — with native MCP integration
ChannelsIntegrates with Web, WeChat, Feishu, DingTalk, WeCom, QQ, Official Accounts, Telegram, and Slack
MultimodalFirst-class support for text, images, voice, and files — recognition, generation, and delivery
ModelsClaude, GPT, Gemini, DeepSeek, Qwen, GLM, Kimi, MiniMax, Doubao, and more — swap providers from the Web console with one click
DeployOne-line installer, unified Web console, multiple deployment modes (local, Docker, server)

🏗️ Architecture

CowAgent Architecture

CowAgent is a complete Agent Harness: messages flow in through Channels; the Agent Core plans and reasons over memory, knowledge, and the available tools and skills; Models generate the response, which is sent back through the originating channel. Every layer is decoupled and independently extensible.

Read more in Architecture.


🚀 Quick Start

A one-line installer takes care of dependencies, configuration, and startup:

Linux / macOS:

bash <(curl -fsSL https://cdn.link-ai.tech/code/cow/run.sh)

Windows (PowerShell):

irm https://cdn.link-ai.tech/code/cow/run.ps1 | iex

Docker:

curl -O https://cdn.link-ai.tech/code/cow/docker-compose.yml
docker compose up -d

Once started, open http://localhost:9899 to access the Web console — your one-stop hub to chat with the Agent, configure models, connect channels, and install skills.

Deploying on a server? Set web_host to 0.0.0.0 in config.json to make the console reachable from outside, and set web_password to protect it. Don't forget to open port 9899 in your firewall or security group.

📖 Detailed guides: Quick Start · Install from Source · Upgrade

After installation, manage the service with the cow CLI:

cow start | stop | restart        # service control
cow status | logs                  # status and logs
cow update                         # pull latest code and restart
cow skill install <name>           # install a skill
cow install-browser                # install browser automation

💻 Desktop client: download the CowAgent Desktop client (macOS / Windows) — the backend is bundled, ready to use out of the box.


🤖 Models

CowAgent supports all mainstream LLM providers. Chat, vision, image generation, ASR/TTS, and embeddings can each be routed to a different vendor. Providers are configured directly in the Web console — no manual file editing required.

ProviderFeatured ModelsChatVisionImage GenASRTTSEmbedding
DeepSeekdeepseek-v4-flash / pro
Claudeclaude-opus-5 / sonnet-5
OpenAIgpt-5.6 series
Geminigemini-3.7-flash
MiniMaxMiniMax-M3
GLMglm-5.3, glm-5v-turbo
Qwenqwen3.8-max
Kimikimi-k3
Doubaodoubao-seed-2.1 series
ERNIEernie-5.1
MiMomimo-v2.5 / pro
LinkAIOne key for 100+ models
CustomLocal models / third-party proxy

For details on each provider, see the Models overview.


💬 Channels

A single Agent instance can serve multiple channels in parallel. Most channels can be onboarded right from the Web console.

ChannelTextImageFileVoiceGroup
Web Console (default)
Telegram
Slack
Discord
WeChat
Feishu / Lark
DingTalk
WeCom Bot
QQ
WeCom App
WeChat Customer Service
WeChat Official Account

See the Channels overview for setup details.

CowAgent Web Console

The Web console is the default channel and the unified entry point to configure models, channels, skills, memory, and more.


🧠 Memory & Knowledge Base

Long-term memory uses a three-tier architecture: conversation context (short-term) → daily memory (mid-term) → MEMORY.md (long-term). A nightly Deep Dream pass distills scattered memories into refined long-term entries and a narrative journal. See Long-term Memory · Deep Dream.

Personal knowledge base complements the time-ordered memory by organizing structured knowledge by topic. The Agent automatically curates valuable information from conversations, maintains cross-references and indexes, and the Web console offers an interactive knowledge-graph view. See Personal Knowledge Base.

Long-term Memory

Long-term Memory · Three-tier architecture + Deep Dream

Personal Knowledge Base

Knowledge Base · Auto-curated Markdown wiki


🔧 Tools & Skills

Tools are atomic capabilities the Agent uses to interact with system resources. Skills are higher-level workflows defined by a manifest file that compose multiple tools to accomplish complex tasks.

Tool System

Built-in tools cover file I/O (read / write / edit / ls), terminal (bash), file sending (send), memory retrieval (memory), environment variables (env_config), web fetching (web_fetch), scheduling (scheduler), web search (web_search), vision (vision), and browser automation (browser).

MCP protocol integrates the open ecosystem of Model Context Protocol servers. A single mcp.json is enough — supports stdio / SSE transports, hot reload, and zero-code integration.

Learn more: Tools overview · MCP integration.

Skills System

  • Skill Hub — open skill marketplace: browse, search, install in one click
  • GitHub / ClawHub / URL and more — install skills from any source
  • Conversational authoring — generate custom skills through dialogue with skill-creator; turn any workflow or third-party API into a reusable skill
/skill list                   # list installed skills
/skill search <keyword>        # search the marketplace
/skill install <name>          # one-click install

Learn more: Skills overview · Creating Skills.


🏷 Changelog

2026.08.20: v2.1.7 — Multiple workspaces, session-level permission modes, task notifications, desktop improvements, plus new model support.

2026.08.12: v2.1.6 — Sub agents for parallel task delegation, reasoning-effort settings, a pluggable memory vector backend, plus experience and security improvements.

2026.07.29: v2.1.5 — Workspace with file preview, core tool improvements (file search, write-time validation, background commands), context compaction (/compact), one-click prompt optimization, security hardening.

2026.07.20: v2.1.4 — Desktop experience improvements, MCP OAuth authorization, Lark channel enhancements, scheduler improvements and data backup, new models.

2026.07.08: v2.1.3Desktop client for macOS / Windows, knowledge base document management, on-demand MCP tool retrieval, Traditional Chinese support, new models.

2026.06.18: v2.1.2 — Web console upgrades (scheduled task management, knowledge base categories, multiple custom model providers), Self-Evolution improvements, new models (kimi-k2.7-code, glm-5.2), security hardening and refinements.

2026.06.09: v2.1.1 — Self-Evolution, Web console upgrades (message management, parallel sessions), cross-platform MCP enhancements with concurrent calls, new models (MiniMax-M3, qwen3.7-plus), Python 3.13 support.

2026.06.01: v2.1.0 — Internationalization, new channels (Telegram, Discord, Slack, WeChat Customer Service), CLI interaction upgrades, streamlined one-line install, MCP Streamable HTTP support, new models (claude-opus-4-8, MiMo).

Full history: Release Notes


🤝 Community & Support

Join our Discord server to ask questions, share skills, and follow development:

Join our Discord

You can also file an issue on GitHub, or scan the QR code below to join our WeChat group:


🔗 Related Projects

  • Cow Skill Hub — open skill marketplace for AI Agents; works with CowAgent, OpenClaw, Claude Code, and more
  • bot-on-anything — lightweight LLM application framework with integrations for Slack, Telegram, Discord, Gmail, and more
  • AgentMesh — open-source multi-agent framework for solving complex problems through team collaboration

🏢 Enterprise Services

LinkAI is an all-in-one AI Agent platform for enterprises and developers, offering managed hosting and enterprise-grade support for CowAgent:

  • 🚀 Zero-deployment hosted runtime — spin up a CowAgent online assistant in under a minute, no server required
  • 🧠 Agent infrastructure — unified access to LLMs, knowledge bases, databases, skills, and workflows; plug-and-play building blocks that extend what CowAgent can do
  • 🏢 Team & enterprise features — workspaces, role-based access, audit logs, and private deployment for production use cases

For enterprise inquiries: sales@simple-future.tech or scan the QR code to reach our team on WeChat.


🛠️ Development & Contributing

All kinds of contributions are welcome — new features, bug fixes, performance improvements, docs, or sharing your own skills on the Skill Hub. See CONTRIBUTING.md to get started, then open an Issue to discuss or send a PR directly.

⭐ Star the project to show your support, and Watch → Custom → Releases to get notified of new versions. PRs and Issues are always welcome.

🌟 Contributors

cow contributors


⚠️ Disclaimer

  1. This project is licensed under the MIT License and is intended for technical research and learning. You are responsible for complying with applicable laws and regulations in your jurisdiction; the maintainers assume no liability for any consequences arising from use of this project.
  2. Cost & safety: Agent mode consumes substantially more tokens than regular chat — pick models that balance quality and cost. The Agent has access to your local operating system, so only deploy it in trusted environments.
  3. CowAgent is a pure open-source project and does not participate in, authorize, or issue any cryptocurrency.

📌 Project Renaming Notice

This project was previously named chatgpt-on-wechat and is now officially CowAgent. The old GitHub URL redirects automatically; existing users may optionally run git remote set-url origin https://github.com/zhayujie/CowAgent.git to update the local remote.

Frequently Asked Questions

What is CowAgent?

CowAgent is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by zhayujie. Open-source super AI assistant & Agent Harness. Plans tasks, runs tools and skills, self-evolves with memory and knowledge. Multi-model, multi-channel. Lightweight, extensible, one-line install. (formerly chatgpt-on-wechat). It has 46,634 GitHub stars.

Is CowAgent safe to use?

Yes. CowAgent passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install CowAgent?

Clone the repository with "git clone https://github.com/zhayujie/CowAgent" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is CowAgent written in?

CowAgent is primarily written in Python. It is open-source under zhayujie on GitHub, so you can review or fork the full source.

Are there alternatives to CowAgent?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh CowAgent against similar tools.

Comments (0)

No comments yet. Be the first to share your thoughts!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI Agentsai-agentsanthropicclaude-code
View details
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI Agentsai-agentsbrainstorming
View details

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI Agentsai-agentsanthropicclaude-code
View details

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI Agentsclaude-codeai-tools
View details

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI Agents
View details

Developers Also Liked

Based on votes and bookmarks from developers who liked this skill

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI Agentsai-agentsanthropicclaude-code
View details
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI Agentsai-agentsbrainstorming
View details

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP Serversapisai-tools
View details

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI Agentsai-agentsanthropicclaude-code
View details

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI Agentsclaude-codeai-tools
View details