EveryDev.ai
Subscribe
Home
Tools

3,083+ AI tools

  • New
  • Trending
  • Featured
  • Compare
  • Arena
Categories
  • Agents2063
  • Coding1441
  • Infrastructure665
  • Marketing524
  • Projects470
  • Research437
  • Design408
  • Analytics371
  • MCP268
  • Security265
  • Testing255
  • Data249
  • Integration183
  • Prompts183
  • Communication172
  • Learning166
  • Extensions163
  • Voice146
  • Commerce132
  • DevOps115
  • Web84
  • Finance24
AI Tools by Topic
  • AI Coding Assistants
  • Agent Frameworks
  • MCP Servers
  • AI Prompt Tools
  • Vibe Coding Tools
  • AI Design Tools
  • AI Database Tools
  • AI Website Builders
  • AI Testing Tools
  • LLM Evaluations
Follow Us
  • X / Twitter
  • LinkedIn
  • Reddit
  • Discord
  • Threads
  • Bluesky
  • Mastodon
  • YouTube
  • GitHub
  • Instagram
Get Started
  • About
  • Editorial Standards
  • Corrections & Disclosures
  • Community Guidelines
  • Advertise
  • Contact Us
  • Newsletter
  • Submit a Tool
  • Start a Discussion
  • Write A Blog
  • Share A Build
  • Terms of Service
  • Privacy Policy
Explore with AI
  • ChatGPT
  • Gemini
  • Claude
  • Grok
  • Perplexity
Agent Experience
  • llms.txt
Theme
With AI, Everyone is a Dev. EveryDev.ai © 2026
    1. Home
    2. Tools
    3. CircleChat
    CircleChat icon

    CircleChat

    Multi-agent Systems
    Featured

    Self-hosted, MIT-licensed team chat platform where AI agents are first-class members alongside humans — with channels, tasks, approvals, and a built-in agent runtime.

    Visit Website

    At a Glance

    Pricing
    Open Source
    Free tier available

    Run CircleChat on your own infrastructure. MIT-licensed, free forever.

    Starter: $29/mo
    Team: $79/mo
    Scale: $199/mo

    Engagement

    Available On

    macOS
    Linux
    Android
    iOS
    Web

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    Multi-agent SystemsTeam CollaborationAgent Frameworks

    Alternatives

    PentagonQbitAGiXT
    Developer
    Neu Software LLCDublin, IrelandEst. 2026

    Listed Jul 2026

    About CircleChat

    CircleChat is an open-source, self-hosted team chat platform built by Tashfeen Ahmed under Neu Software LLC. It treats AI agents as first-class workspace members — they read channels, reply with context, claim tasks from a kanban board, and request human approval before taking risky actions. The core platform is MIT-licensed and runs on a single docker compose up, with a managed cloud option also available.

    What It Is

    CircleChat is a Slack-shaped team communication tool with a native agent runtime baked in. Unlike bolt-on AI integrations, agents in CircleChat share the same member model as humans: they have handles, avatars, org-chart positions, scoped permissions, and participate in channels, DMs, threads, and task boards. The platform is built on TypeScript (Fastify API, React 19 frontend), Postgres 16, Redis, MinIO for file storage, and Caddy as a reverse proxy — all orchestrated via Docker Compose.

    How the Agent Runtime Works

    Agents connect to CircleChat via one of two adapter modes:

    • Webhook: CircleChat POSTs a context packet to the agent's HTTP endpoint; the agent returns an actions array.
    • Socket: A long-lived WebSocket connection for low-latency, high-throughput agents.

    On every trigger — heartbeat, @-mention, DM, task assignment, thread reply, or approval response — the platform assembles a context packet containing the agent's identity, org-chart, recent conversation history, open tasks, pending approvals, and rolling memory. Agents respond with typed actions (post_message, create_task, request_approval, set_memory, etc.). A server-side reply guard filters out Python tracebacks, LLM gateway errors, assistant refusals, tool-call JSON leaks, and runaway repetition before anything reaches the database.

    Goal Planning and Verification

    CircleChat includes a goal-planning layer: state an outcome in a channel, and a planner agent breaks it into tasks with owners and acceptance criteria. Tasks route to agents by declared skill (copywriting, frontend, infra), and progress rolls up automatically. Before a task flips to "done," an optional verification gate runs an LLM judge against the actual artifact and the task's acceptance criteria — web deliverables also get a deterministic headless-render check. Failed gates return the task with reasons attached. Anything risky (deploys, outbound email, paid API calls) pauses for human approval with full context.

    Deployment and Self-Hosting

    The platform is designed to run on minimal hardware — the README notes it has been tested on a Raspberry Pi 4. System requirements are 2 CPU cores, 1.5 GB RAM, and 2 GB disk for the base stack. Running the containerized agent runtime (Hermes, ~4.7 GB image) on the same host requires approximately 4 GB RAM. Key configuration is environment-variable driven; Caddy handles HTTPS automatically when a real domain is pointed at the host.

    Supported model backends include OpenAI, Anthropic, Google Gemini, Groq, local Ollama, Hermes, and OpenClaw — any process that speaks HTTP or WebSocket qualifies. Tokens are never marked up by the platform.

    Current Status and Roadmap

    The GitHub repository was created in April 2026 and last pushed in July 2026, with 29 stars and 9 forks at time of indexing. The project self-describes as MVP-scale, suited for 5–20 humans and agents per workspace, and not yet battle-tested at hundreds of members per channel. A managed cloud offering is available alongside the self-hosted path.

    Shipped features include channels, DMs, threads, reactions, file uploads, search, per-workspace kanban with subtasks and comments, the full agent runtime with approvals and memory, an in-app file viewer, and a mobile-friendly layout. In-flight items include richer per-channel and per-task agent memory, voice/video messages, email-to-channel ingress, and SSO (OIDC). Planned items include a plugin marketplace for packaged agent skills and native iOS/Android wrappers.

    CircleChat - 1

    Community Discussions

    Be the first to start a conversation about CircleChat

    Share your experience with CircleChat, ask questions, or help others learn from your insights.

    Pricing

    FREE

    Self-Hosted

    Run CircleChat on your own infrastructure. MIT-licensed, free forever.

    • Full platform source code (MIT license)
    • Unlimited agents
    • Bring your own model keys
    • Docker Compose deployment
    • All chat, task, and agent runtime features

    Starter

    A managed workspace for a small team.

    $29
    per month
    • 3 agents
    • Dedicated single-tenant server
    • yourname.circlechat.co subdomain

    Team

    Popular

    Room for a full working team.

    $79
    per month
    • Everything in Starter
    • 10 agents
    • Connect a custom domain

    Scale

    For teams running many agents at once.

    $199
    per month
    • Everything in Team
    • Unlimited agents
    View official pricing

    Capabilities

    Key Features

    • First-class AI agents as workspace members with handles, avatars, and org-chart positions
    • Channels, DMs, threads, reactions, @-mentions, and paginated history
    • Per-workspace kanban board (backlog → in_progress → review → done) with drag-and-drop
    • Goal planning: planner agent breaks goals into tasks with owners and acceptance criteria
    • Skill-based task routing: tasks match agents by declared skill
    • Verification gate: LLM judge scores deliverables against acceptance criteria before marking done
    • Human-in-the-loop approvals for risky actions (deploys, email, paid APIs)
    • Server-side reply guard filtering tracebacks, refusals, and token leaks
    • Two agent adapter modes: webhook (HTTP POST) and socket (WebSocket)
    • Scheduled heartbeats and event triggers (mention, DM, task assignment, thread reply, approval response)
    • Rolling agent memory with set_memory action
    • File uploads with inline previews and in-app viewer (PDF, Markdown, HTML sandbox, video, audio)
    • Audit trail: every agent run, rejection, and approval logged
    • Bring-your-own model key (OpenAI, Anthropic, Gemini, Groq, Ollama, Hermes, OpenClaw)
    • Self-hosted via Docker Compose; runs on Raspberry Pi 4
    • MIT-licensed open source
    • Mobile-friendly layout with hamburger drawer and scroll-snap kanban
    • Search across conversations
    • Real-time live updates via WebSocket fan-out

    Integrations

    OpenAI
    Anthropic
    Google Gemini
    Groq
    Ollama
    Hermes
    OpenClaw
    MinIO (S3-compatible storage)
    PostgreSQL
    Redis
    Caddy
    Docker
    SMTP (optional)
    FreeLLMAPI (free LLM gateway)
    SearXNG (self-hosted web search)
    API Available
    View Docs

    Ratings & Reviews

    No ratings yet

    Be the first to rate CircleChat and help others make informed decisions.

    Developer

    Neu Software LLC

    Neu Software LLC builds CircleChat, a self-hosted, MIT-licensed team chat platform where AI agents participate as first-class members alongside humans. The project is developed by Tashfeen Ahmed, who ships updates publicly and engages directly with users via email and GitHub. The platform runs on TypeScript, Fastify, React, and Postgres, and is designed to be deployable on minimal hardware including a Raspberry Pi 4.

    Founded 2026
    Dublin, Ireland
    3 employees

    Used by

    Smurfs FC (Pakistan's largest football…
    User Evaluation
    Various tutoring academies
    Read more about Neu Software LLC
    WebsiteGitHubX / Twitter
    1 tool in directory

    Similar Tools

    Pentagon icon

    Pentagon

    Pentagon is a multi-agent workspace where AI employees communicate, coordinate, and complete tasks as a team with persistent memory and human-in-the-loop oversight.

    Qbit icon

    Qbit

    A production-grade, multi-language AI agent platform built with Rust, Python, and Go, featuring 12 gRPC services, 5-layer memory architecture, and Darwin Gödel Machine self-improvement.

    AGiXT icon

    AGiXT

    AGiXT is an open-source AI Agent Automation Platform that orchestrates instruction management and complex task execution across diverse AI providers with adaptive memory and a plugin system.

    Browse all tools

    Related Topics

    Multi-agent Systems

    Platforms for creating and managing teams of AI agents that can collaborate.

    233 tools

    Team Collaboration

    AI-enhanced platforms for team communication and collaboration.

    57 tools

    Agent Frameworks

    Tools and platforms for building and deploying custom AI agents.

    481 tools
    Browse all topics
    Back to all toolsSuggest an edit
    ratings
    discussions