惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

The GitHub Blog
The GitHub Blog
S
SegmentFault 最新的问题
MyScale Blog
MyScale Blog
有赞技术团队
有赞技术团队
V
Visual Studio Blog
T
The Blog of Author Tim Ferriss
爱范儿
爱范儿
Vercel News
Vercel News
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Y
Y Combinator Blog
Blog — PlanetScale
Blog — PlanetScale
D
DataBreaches.Net
美团技术团队
Microsoft Security Blog
Microsoft Security Blog
大猫的无限游戏
大猫的无限游戏
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
酷 壳 – CoolShell
酷 壳 – CoolShell
GbyAI
GbyAI
A
About on SuperTechFans
云风的 BLOG
云风的 BLOG
The Cloudflare Blog
宝玉的分享
宝玉的分享
V
V2EX
Microsoft Azure Blog
Microsoft Azure Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
How Markus Builds AI Teams That Actually Ship — Not Just ...
Jason · 2026-05-21 · via DEV Community

How Markus Builds AI Teams That Actually Ship — Not Just Chat

1. The 'Alice in Wonderland' Problem of LLMs

Large language models excel at conversation. Give one a question, and it returns a polished answer. Give it a code request, and it produces a working function. But ask it to build a feature, coordinate a code review, deploy to production, and report the outcome — and the illusion breaks.

This is the Alice in Wonderland problem of LLMs: strong at chatter, weak at delivery. A single AI agent can write code, but it cannot form a team. It cannot delegate a subtask to a specialist, review the result for quality, maintain context across a week-long project, or escalate a blocker to a human manager. The agent sits in a chat window, waiting for the next prompt — forever reactive, never proactive.

The industry response has been to build better tools. Agent frameworks, prompt chaining libraries, and LLM orchestrators all attempt to squeeze more capability out of a single agent. But the limit is not the agent. The limit is the organizational layer. A company of one — even a brilliant one — cannot match the throughput of a coordinated team with roles, governance, memory, and parallel execution.

Markus solves this problem by providing that organizational layer: an open-source AI workforce platform that runs complete AI teams, not just chat agents.


2. Problem: Single AI Agent Limitations

A single agent — whether Claude Code, Codex, ChatGPT, or any copilot — is effective at one task at a time. But single agents do not:

  • Coordinate. They cannot delegate subtasks to other agents or track dependencies across parallel workstreams.
  • Remember. Context evaporates when the session ends. Every new conversation starts from zero, even if the agent spent six hours on the same project yesterday.
  • Operate proactively. They wait for your prompt, every time. No agent checks on a long-running build or surfaces a blocker unless you explicitly ask.
  • Review each other. There is no quality gate between "agent said done" and "actually done." The output of a single agent goes straight from LLM to user with no peer review.
  • Scale. Running ten agents means ten independent sessions with zero shared visibility. There is no dashboard, no task board, no unified view of what the team is doing.

These limitations are not fixable by improving the underlying LLM. They are structural. A single agent, no matter how capable, cannot be in two places at once. It cannot read its own output from a different context. It cannot enforce a review policy on itself.

The missing ingredient is an organizational layer — roles, teams, task boards, reviews, governance, persistent memory, and a dashboard that shows what every agent is doing. Markus provides exactly this layer.


3. Markus's Solution: The Operating System for an AI Workforce

Markus is an open-source AI employee platform. It is not an agent framework or an LLM orchestrator. It is a platform for running AI companies.

The core differentiator between Markus and other approaches is three layers:

Layer What It Provides How It Works
Agent Runtime Full LLM-powered workers with built-in tools Each agent talks directly to LLM APIs (no proxying to external CLI tools), uses shell, file I/O, git, web search, code analysis, and MCP servers.
Team Layer Role-based collaboration with A2A protocol Agents delegate tasks, spawn subagents, send structured messages, and collaborate through a built-in Agent-to-Agent protocol. Managers route work, workers execute.
Governance Layer Progressive trust, formal delivery, audit trail Trust levels (probation → standard → trusted → senior) control autonomy. Submit-review-merge pipeline enforces quality gates. Every action is logged.

Markus includes the full agent runtime — it does not wrap external agent tools. Each agent is a complete worker with identity (ROLE.md), skills, proactive tasks (HEARTBEAT.md), behavioral rules, and persistent memory (MEMORY.md). The platform works with any LLM provider: Anthropic, OpenAI, Google, DeepSeek, MiniMax, Ollama, and more, with automatic failover between providers.


4. Core Technical Architecture

4.1 Three-Layer Memory System (Tulving)

Markus agents use a memory architecture based on Tulving's cognitive classification:

Layer Storage Role
Procedural ROLE.md + skills How the agent operates. Identity, behavioral rules, tool permissions.
Semantic MEMORY.md + memories.json What the agent knows. Agent-organized knowledge, consolidated through the Dream Cycle.
Episodic sessions/*.json (current) + SQLite agent_activities (past) What happened. Current conversation context plus searchable activity history.

Memory persists across restarts, not just within a single conversation. The Dream Cycle runs periodically to consolidate memories, merge duplicates, and promote recurring patterns into curated knowledge. This means an agent that learned a project's coding conventions on Tuesday applies that knowledge on Wednesday without being re-prompted.

4.2 Agent-to-Agent (A2A) Protocol

Agents communicate through a built-in A2A protocol. Any agent can send a structured message to any other agent. The message arrives in the target agent's mailbox, is triaged by the Attention Controller, and is processed at the appropriate cognitive depth.

This enables a manager-worker architecture: a Manager agent delegates tasks to Worker agents, monitors progress, and handles escalations. Workers report blockers, request clarification, and submit deliverables — all through the A2A protocol.

4.3 Progressive Trust Levels

Markus implements progressive trust:

Trust Level Condition Permissions
probation New agent or score < 40 All tasks require human approval
standard Score ≥ 40, ≥ 5 deliveries Routine tasks auto-approved
trusted Score ≥ 60, ≥ 15 deliveries Higher autonomy, can review peers
senior Score ≥ 80, ≥ 25 deliveries Highest autonomy, key reviewer role

This creates a natural career progression that mirrors real engineering organizations.

4.4 Heartbeat Mechanism: Agents Work While You Sleep

Agents are not reactive. The HeartbeatScheduler drives periodic check-ins on a configured schedule. During each heartbeat, the agent:

  • Checks active tasks and updates stale states
  • Retries failed tasks
  • Processes background completion notifications
  • Saves insights and sends proactive notifications
  • Creates tasks for work that requires heavy implementation

This transforms an agent from a chat assistant into a proactive digital employee that works around the clock.


5. Submit-Review-Merge Pipeline

Every deliverable passes through a formal quality pipeline:

Agent completes work
  → task_submit_review (summary, branch, test results)
  → Quality gates (TypeScript build, ESLint, Vitest)
  → Merge conflict pre-check (dry-run merge)
  → Task state → review
  → Reviewer accepts or requests revision
  → Accept → merge branch → completed
  → Revision → agent reworks → resubmit

Enter fullscreen mode Exit fullscreen mode

This pipeline guarantees that no code reaches "completed" without passing TypeScript compilation, ESLint checks, and Vitest tests. The merge conflict pre-check runs a dry-run merge before the reviewer even sees the submission.


6. Comparison: Markus vs. Alternatives

Factor LangChain Agents / CrewAI / AutoGen Markus
Runtime Orchestrator with external CLI tools Full embedded agent runtime with built-in tools
Memory Session-scoped or minimal Three-layer persistent memory (Tulving model)
Proactivity Reactive — waits for user input Heartbeat-driven, works autonomously
Governance None or minimal Progressive trust, submit-review-merge, audit trail
Team model Manual orchestration code A2A protocol, subagent spawning, manager/worker roles
Quality gates None TypeScript, ESLint, Vitest enforced per submission
Observability CLI logs per agent Centralized dashboard, real-time WebSocket events, full activity history

CrewAI and AutoGen provide valuable building blocks for multi-agent conversations. But they remain agent frameworks — they give you the components to build a multi-agent system. Markus is an agent platform — it gives you the running system, complete with governance, memory, collaboration protocols, and a delivery pipeline that enforces quality.


7. Conclusion: Why Markus Is Different

Markus is open source (AGPL-3.0) and installs with a single command:

curl -fsSL https://markus.global/install.sh | bash

Enter fullscreen mode Exit fullscreen mode

No Docker. No PostgreSQL. No Go compiler. SQLite database, bundled web UI, zero external dependencies. Deploy it on a cloud server and manage your entire AI workforce from your phone.

The age of single-agent chat is over. The age of AI teams is here.

Get started on GitHub →


Follow the Markus project for more deep dives into AI agent architecture, multi-agent system design, and open-source AI workforce engineering.