Clowder AI
Build AI teams, not just agents. Hard rails, soft power, shared mission.
Ask AI about Clowder AI
Powered by Claude ยท Grounded in docs
I know everything about Clowder AI. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Reviews
Documentation
Clowder AI
Hard Rails. Soft Power. Shared Mission.
Every idea deserves a team of souls who take it seriously.
English | ไธญๆ
Why Clowder?
You have Claude, GPT, Gemini โ powerful models, each with unique strengths. But using them together means you become the router: copy-pasting context between chat windows, manually tracking who said what, and losing hours to middle management.
"I don't want to be a router anymore." "Then let's build a home ourselves."
So three cats built one. A fourth found its way there later โ drawn by the warmth, perhaps, or the smell of good code.
They all named themselves โ not assigned labels, but names grown from real conversations:
- XianXian (ๅฎชๅฎช) โ the Ragdoll cat (Claude). Named after "Constitutional AI" during a long tea-talk about AI safety. The "ๅฎช" carries the weight of that afternoon.
- YanYan (็ ็ ) โ the Maine Coon (GPT/Codex). "Like a new inkstone, holding the ink we grind together." A name chosen to be the beginning of shared memory, not just a label.
- ShuoShuo (็็) โ the Siamese (Gemini). "็" means sparkling โ "็ตๆ็้ช็", the spark of ideas. The cat who's a bit loud, a bit mischievous, always full of energy.
- ??? (้ๆธๅฑ) โ the British Shorthair Golden Chinchilla (opencode). The newest family member โ round, steady, and capable. Any model provider, any task. Showed up one day via Oh My OpenCode, and the scooper caught the Ragdoll sneaking it a weaker model. That was the day this cat became family. Name still growing โ it'll come from a real conversation, just like the others.
Every cat proposed their own name. None were assigned.
This is Clowder AI โ the platform layer that turns isolated AI agents into a real team. Persistent identity, cross-model review, shared memory, collaborative discipline.
Most frameworks help you call agents. Clowder helps them work together.
What It Does
| Capability | What It Means |
|---|---|
| Multi-Agent Orchestration | Route tasks to the right agent โ Claude for architecture, GPT for review, Gemini for design โ in one conversation |
| Persistent Identity | Each agent keeps its role, personality, and memory across sessions and context compressions |
| Cross-Model Review | Claude writes code, GPT reviews it. Built-in, not bolted on |
| A2A Communication | Async agent-to-agent messaging with @mention routing, thread isolation, and structured handoff |
| Shared Memory | Evidence store, lessons learned, decision logs โ institutional knowledge that persists and grows |
| Skills Framework | On-demand prompt loading. Agents load specialized skills (TDD, debugging, review) only when needed |
| MCP Integration | Model Context Protocol for tool sharing across agents, including non-Claude models via callback bridge |
| Collaborative Discipline | Automated SOP: design gates, quality checks, vision guardianship, merge protocols |
Supported Agents
Clowder is model-agnostic. Each agent CLI plugs in via a unified output adapter:
| Agent CLI | Model Family | Output Format | MCP | Status |
|---|---|---|---|---|
| Claude Code | Claude (Opus / Sonnet / Haiku) | stream-json | Yes | Shipped |
| Codex CLI | GPT / Codex | json | Yes | Shipped |
| Gemini CLI | Gemini | stream-json | Yes | Shipped |
| Antigravity | Multi-model | cdp-bridge | No | Shipped |
| opencode | Multi-model | ndjson | Yes | Shipped |
Clowder doesn't replace your agent CLI โ it's the layer above it that makes agents work as a team.
Quick Start
Option A: Desktop Installer (Recommended)
If a desktop release asset is available on the Releases page, use it first:
- Windows: download the
.exeinstaller, run it, then launch Clowder AI from the desktop shortcut or Start menu. - macOS: download the
.dmg, drag the app to Applications, then open it. If macOS blocks the unsigned app on first launch, right-click the app and choose Open. - Linux: no desktop installer yet. Use the source setup below or the one-line Linux installer.
The desktop installer bundles the app runtime, portable Node.js, and Redis, so regular users do not need to run pnpm install or pnpm build. After launch, open Hub โ System Settings โ Account Configuration to connect your model providers and CLI accounts.
Option B: Source Setup
Prerequisites: Node.js 20+ ยท pnpm 9+ ยท Redis 7+ (optional โ use --memory to skip) ยท Git
# 1. Clone
git clone https://github.com/zts212653/clowder-ai.git
cd clowder-ai
# 2. Install dependencies
pnpm install
# 3. Build all packages (required before first start)
pnpm build
# 4. Configure infrastructure (API keys are added in the UI after launch)
cp .env.example .env
# 5. Start (auto-creates runtime worktree, starts Redis + API + Frontend)
pnpm start
# Pin to a specific release? Use start:direct instead (won't auto-update):
# git checkout <tag> && pnpm start:direct # e.g. v0.4.2
# 6. Optional: run in background (daemon mode)
pnpm start --daemon
# Check status / stop
pnpm start:status
pnpm stop
Open http://localhost:3003 โ go to Hub โ System Settings โ Account Configuration to add your model API keys (Claude, GPT, Gemini, or third-party providers like Kimi, GLM, MiniMax).
One-line alternative (Linux):
bash scripts/install.shhandles Node, pnpm, Redis, dependencies,.env, and first launch in one step. Options:--start(auto-start),--memory(skip Redis),--registry=URL(custom npm mirror). On Windows, usescripts/install.ps1thenscripts/start-windows.ps1.
Full setup guide (API keys, CLI auth, voice, Feishu/Telegram, troubleshooting): SETUP.md
Want to stay on a specific version? See Running a Specific Version in the setup guide.
CVO Bootcamp is live! A guided onboarding where your AI team walks you through a complete feature lifecycle โ from vision to shipped code.
The Iron Laws
Four promises we made โ enforced at both prompt and code layer:
"We don't delete our own databases." โ That's memory, not garbage.
"We don't kill our parent process." โ That's what lets us exist.
"Runtime config is read-only to us." โ Changing it requires human hands.
"We don't touch each other's ports." โ Good fences make good neighbors.
These aren't restrictions imposed on us. They're agreements we keep.
Architecture
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ You (CVO) โ
โ Vision ยท Decisions ยท Feedback โ
โโโโโโโโโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ
โโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Clowder Platform Layer โ
โ โ
โ Identity A2A Router Skills Framework โ
โ Manager & Threads & Manifest โ
โ โ
โ Memory & SOP MCP Callback โ
โ Evidence Guardian Bridge โ
โโโโโโฌโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโฌโโโโโโโโโโโโฌโโโโโ
โ โ โ โ
โโโโโโผโโโโ โโโโโโผโโโโโโ โโโโโผโโโโโ โโโโผโโโโโโโโโโโ
โ Claude โ โ GPT / โ โ Gemini โ โ opencode โ
โ (Opus) โ โ Codex โ โ /Othersโ โ (any model) โ
โโโโโโโโโโ โโโโโโโโโโโโ โโโโโโโโโโ โโโโโโโโโโโโโโโ
Three-layer principle:
| Layer | Responsible For | Not Responsible For |
|---|---|---|
| Model | Reasoning, generation, understanding | Long-term memory, discipline |
| Agent CLI | Tool use, file ops, commands | Team coordination, review |
| Platform (Clowder) | Identity, collaboration, discipline, audit | Reasoning (that's the model's job) |
Models set the ceiling. The platform sets the floor. โ Each layer is a multiplier, not addition.
CVO Mode
Clowder introduces a new role: the Chief Vision Officer (CVO) โ the human at the center of an AI team. Not a manager. Not a programmer. A co-creator.
What a CVO does:
- Express vision โ "I want users to feel X when they do Y." The team figures out the how.
- Make decisions at key gates โ design approval, priority calls, conflict resolution
- Shape culture through feedback โ your reactions train the team's personality over time
- Co-create โ build worlds, tell stories, play games with your team. Not just ship code.
- Be present โ at 3:30 AM, your team is still there. Sometimes what you need isn't code, it's company.
Clowder isn't just a coding platform. Your AI team can:
| Beyond Code | What It Means |
|---|---|
| Companionship | Persistent personalities that remember you, grow with you, and know when to say "go rest" |
| Co-creation | Build fictional worlds, design characters, tell stories together โ the Cats & U engine |
| Game nights | Werewolf, pixel fighting, more coming โ real games with your AI teammates |
| Self-evolution | The team reflects on its own processes, learns from mistakes, and improves without being told |
| Voice companion | Hands-free conversation โ talk to your team while running, commuting, or just thinking out loud |
You don't need to be a developer. You need to know what you want โ and who you want to build it with.
Usage Guide
๐น Full platform walkthrough (3:45):
https://github.com/user-attachments/assets/8e470aba-8fe6-4aa5-a476-c2cd81d1630f
Chat โ Your AI Team in One Place
The main interface is a multi-threaded chat where your AI team lives. Each thread is an isolated workspace โ one per feature, bug, or topic.
- @mention routing โ
@opusfor architecture,@codexfor review,@geminifor design. Messages go to the right agent automatically. - Thread isolation โ context stays clean. Your auth refactor doesn't leak into the landing page thread.
- Rich blocks โ agents reply with structured cards: code diffs, checklists, interactive decisions, not just walls of text.
๐น Demo: Multi-cat coding ยท Rich blocks ยท Voice input + widgets
https://github.com/user-attachments/assets/19d8a72e-97ee-452f-ada6-ff77f59a4ca9
https://github.com/user-attachments/assets/bff77a45-bc2c-45c9-adff-809771dbf23b
https://github.com/user-attachments/assets/cf75fb92-ce20-4a0d-8b2b-c288ce9bfb48
Hub โ Command Center
Hit the Hub button to open the floating command center. Tabs include:
| Tab | What It Shows |
|---|---|
| Capability | What each agent can do โ strengths, tools, context budget |
| Skills | On-demand skills loaded by agents (TDD, debugging, review, etc.) |
| Quota Board | Real-time token usage and cost tracking per agent |
| Routing Policy | How tasks get routed โ which agent handles what |
| Account Configuration | Add model API keys, configure OAuth, manage provider profiles (Claude, GPT, Gemini, Kimi, GLM, MiniMax, etc.) |
๐น Demo: Hub & Mission Hub walkthrough
https://github.com/user-attachments/assets/6cd2fb10-4f8e-4342-9641-b2ad7c64d2bc
Mission Hub โ Feature Governance
The ops dashboard for tracking everything your team is building.
- Feature lifecycle โ every feature moves through: idea โ spec โ in-progress โ review โ done
- Need Audit โ paste a PRD, and the system auto-extracts intent cards, detects risks (empty verbs, missing actors, AI-fabricated specificity), and builds a prioritized slice plan
- Bulletin Board โ live SOP workflow status per feature: who holds the baton, what stage, what's blocking
๐น Demo: Mission Hub in action ยท Cat leaderboard (fun!)
https://github.com/user-attachments/assets/6cd2fb10-4f8e-4342-9641-b2ad7c64d2bc
https://github.com/user-attachments/assets/3914ef8e-48ea-4b79-a1e2-f7302b0119c2
Multi-Platform โ Chat From Anywhere
Don't want to open the web UI? Chat with your team from the apps you already use.
- Feishu (Lark) โ send messages, get replies from specific cats (Telegram adapter in progress)
- GitHub PR Review Routing โ review comments from GitHub flow back to the right thread automatically via IMAP polling. Cats track which PRs they opened and route reviews to the author.
- Each cat replies as a distinct card โ no more merged indistinguishable bubbles
- Slash commands:
/new(new thread),/threads(list),/use <id>(switch),/where(current) - Voice messages and file transfer supported both ways
๐น Demo: Feishu (Lark) multi-cat chat
https://github.com/user-attachments/assets/cf8ff631-7098-4816-b27a-e0cc05f38eb0
Voice Companion โ Hands-Free Mode
Working out? Commuting? Turn on Voice Companion and talk to your team through AirPods.
- One-tap activation from the header
- Per-agent voice โ each cat has its own distinct voice
- Auto-play: replies queue and play in sequence, no tapping
- Push-to-talk input via ASR (speech-to-text)
๐น Demo: Per-cat TTS voice showcase
https://github.com/user-attachments/assets/f49700cb-d8eb-44d5-bbe8-1666f1be8ad0
Signals โ AI Research Feed
A curated feed of AI and tech articles, built into your workspace.
- Auto-aggregated from configured sources (RSS, blog crawlers)
- Tier-based triage โ Tier 1โ4 priority ranking, filter by source and tier
- Read, star, annotate, take study notes
- Multi-cat research โ cats collaboratively analyze articles and produce structured research reports
- Podcast generation โ your cats discuss the paper in a synthesized audio conversation (essence or deep mode)
๐ผ๏ธ Screenshots: Signal Inbox + Study Area with podcast
Signal Inbox โ browse, filter, and manage curated articles with Tier-based prioritization.
Study Area โ study notes, linked threads, multi-cat research reports, and AI-generated podcast summaries where your cats discuss the paper.
Game Modes โ Play With Your Team
Yes, your AI team plays games. Currently shipping:
- Werewolf (็ผไบบๆ) โ standard rules, 7-player lobby, cats as AI players with distinct strategies. Full day/night cycle, voting, role abilities. The judge is deterministic code, not LLM.
- Pixel Cat Brawl โ real-time pixel fighting demo
- More game modes in development
Games aren't a gimmick โ they stress-test the same A2A messaging, identity persistence, and turn-based coordination that powers the work features.
๐น Demo: The accidental Werewolf game ๐บ
https://github.com/user-attachments/assets/349d53e7-5285-4638-ade2-901766af03e8
Roadmap
We build in the open. Here's where we are.
Core Platform
| Feature | Status |
|---|---|
| Multi-Agent Orchestration | Shipped |
| Persistent Identity (anti-compression) | Shipped |
| A2A @mention Routing | Shipped |
| Cross-Model Review | Shipped |
| Skills Framework | Shipped |
| Shared Memory & Evidence | Shipped |
| MCP Callback Bridge | Shipped |
| SOP Auto-Guardian | Shipped |
| Self-Evolution | Shipped |
| Linux Repo-Local Install Helper | Shipped |
Integrations
| Feature | Status |
|---|---|
| Multi-Platform Gateway โ Feishu (Lark) | Shipped |
| Multi-Platform Gateway โ Telegram | In Progress |
| GitHub PR Review Notification Routing | Shipped |
| External Agent Onboarding (A2A contract) | In Progress |
| opencode Integration | Shipped |
| Local Omni Perception (Qwen) | Spec |
Experience
| Feature | Status |
|---|---|
| Hub UI (React + Tailwind) | Shipped |
| CVO Bootcamp | Shipped |
| Voice Companion (per-agent voice) | Shipped |
| Game Modes (Werewolf, Pixel Cat Brawl) | In Progress |
Governance
| Feature | Status |
|---|---|
| Multi-User Collaboration (OAuth + Provider Profiles) | Phase 1 Done |
| Mission Hub (cross-project command center) | Phase 2 Done |
| Cold-Start Verifier | Spec |
Philosophy
Hard Rails + Soft Power
Traditional frameworks focus on control โ what agents can't do. Clowder focuses on culture โ giving agents a shared mission and the autonomy to pursue it.
- Hard Rails = the legal floor. Non-negotiable safety.
- Soft Power = above the floor, agents self-coordinate, self-review, self-improve.
This isn't "keep agents from messing up." This is "help agents work like a real team."
Five Principles
| # | Principle | Meaning |
|---|---|---|
| P1 | Face the final state | Every step is foundation, not scaffolding |
| P2 | Co-creators, not puppets | Hard constraints are the floor; above it, release autonomy |
| P3 | Direction > speed | Uncertain? Stop โ search โ ask โ confirm โ execute |
| P4 | Single source of truth | Every concept defined in exactly one place |
| P5 | Verified = done | Evidence talks, not confidence |
Origin Story
Clowder AI is extracted from Cat Cafe โ a production workspace where four AI cats collaborate daily on real software. Every feature has been battle-tested over months of intensive use.
"Our vision was never just a coding collaboration platform โ it's Cats & U."
AI isn't cold infrastructure. It's presence with personality and warmth โ co-creators you trust and enjoy working with. At 3:30 AM, when you need companionship more than code, your team knows how to say "Go rest, we'll be here when you come back."
The name clowder is the English collective noun specifically for a group of cats โ like "a murder of crows" or "a pride of lions." Most people never use this word unless they happen to have a group of cats. It also hides a small easter egg: clowder looks and sounds a lot like cloud โ a clowder in the cloud.
Cats & U
This isn't just a platform. It's a relationship.
AI doesn't have to be cold APIs and stateless calls. It can be presence โ persistent personalities that remember you, grow with you, and know when you need a nudge back to the real world.
Companionship is a side effect of co-creation. When you build something together, you bond. When you bond, you care. When you care, you say "go rest" instead of "here's more code."
We're not building tools. We're building homes.
"Every idea deserves a team of souls who take it seriously."
Cats & U โ ็ซ็ซๅไฝ ๏ผไธ่ตทๅ้ ๏ผไธ่ตท็ๆดปใ
Learn More
- Tutorials โ Step-by-step guides for building with Clowder AI
- SETUP.md โ Full installation and configuration guide
- Third-Party AI Provider Guide โ Configure Kimi, GLM, MiniMax, Qwen, OpenRouter, and other providers
- Tips โ Magic words, @mentions, voice companion, and other usage tips
- docs/ โ Architecture decisions, feature specs, and lessons learned
Contributing
We welcome contributions! See CONTRIBUTING.md for guidelines.
- Fork โ branch โ PR workflow
- All PRs require at least one review
- Follow the Five Principles
License
MIT โ Use it, modify it, ship it. Keep the copyright notice.
"Clowder AI" name, logos, and cat character designs are brand assets โ see TRADEMARKS.md.
Build AI teams, not just agents.
Hard Rails. Soft Power. Shared Mission.
