Odel
best of Agent Harnesses

best of Agent Harnesses

Local
@ryanalberts802PythonCC-BY-SA-4.0Updated Today

Agent-harness picks and decision guides; pick_infrastructure adds live GitHub/HN discovery.

Best of Agent Harnesses and Harness Techniques

🏆  Curated list of AI agent harnesses, orchestration frameworks, and harness techniques for reliable agentic systems.

🌐 Browse the searchable site — one page per harness, filter by capability, autonomy & recovery.

🤖 Agents can query this list — an MCP server (recommend, pick_harness, …), llms.txt & JSON, so your agent recommends harnesses too.

What is an agent harness?

A model answers; an agent acts. An agent harness is the runtime that turns one into the other: the model thinks, the harness decides what that thinking is allowed to touch.

Simon Willison's definition of the agent itself is the cleanest: "an LLM agent runs tools in a loop to achieve a goal." The harness is everything around that loop: which tools exist, what needs approval, what the model sees each turn, what survives a crash. Andrej Karpathy named the architecture back in 2023: the model is "the kernel process of a new Operating System", and the harness is the rest of that OS, its scheduler, permissions, and memory. The SWE-agent paper proved the stakes by coining the agent-computer interface: how tools and feedback are presented changes what a model can do, independent of the model. The field's advice has since converged on investing here rather than in framework plumbing, from Anthropic's build-simple guidance to Jerry Liu's argument that the framework era is over and the layers that matter now are skills, tools, and context quality. Those are the layers this list catalogs.

Why harnesses matter

Better models make harnesses more important: more capabilities mean more failure modes, and production needs retry logic, fallbacks, and validation. Harness quality, not just model quality, determines whether agents actually ship. This list ranks projects by relevance to harness concerns (environment, orchestration, lifecycle, guardrails) and by stars/activity.

The benchmark data now backs this up. On SWE-bench Pro, "swapping the agent harness changed pass@1 more than many model upgrades do" (AINews, Aug 8 2026, citing analysis by @joelniklaus). Same model, different harness: 23% to 52% pass@1 on GLM-5.2, and 15% to 36% on Gemma 4 26B. Harness rankings barely transfer across models (rank correlation -0.05), so a small model in the right harness can approach a much larger model in the wrong one.

That is the problem the MCP server in this repo solves. Point your agent at it and it can call recommend or pick_harness to choose a harness matched to your model and task, instead of inheriting whichever harness someone else benchmarked.

The landscape at a glance

The Agent Harness Landscape — all projects plotted by adoption surface area against GitHub stars

Every project in the list, plotted by adoption surface area (the simplicity ↔ capability axis) against GitHub stars. Colors are categories; the largest projects in each tier are labeled.

Autonomy × Recovery — every loop-owning project placed by designed autonomy regime and failure-recovery tier

The same projects placed by how much unsupervised rope they're designed to give (autonomy) and what happens when a run dies (recovery). In the tables below, ★ marks headless-ready projects and ✱ marks durable ones. Both charts regenerate from the list data on every refresh.

How to Pick a Harness

Start with the guide, then the head-to-head decision pages — grounded in the same data as the tables below:

Pick by use case

Reader's index: pick by what you want to do, not by category. Tag chips (e.g. mcp · memory) next to each row let you cross-filter by capability — see TAGS.md for the full cross-reference.

For agents

This list is also published in machine-readable form, so coding agents and research agents can recommend harnesses — not just humans browsing GitHub:

  • harnesses.json — every project with category, complexity tier, capability tags, stars, license signal, and a concrete example link, plus the full use-case index.
  • llms.txt — the entire list in one agent-readable file. Point any agent at the raw URL.
  • MCP serverrecommend (one opinionated pick + alternatives + what to avoid, e.g. repos flagged for star manipulation), compare/compare_for (2–4 harnesses side by side — by id or by task — who leads on which axis incl. researched sandboxing/memory/hooks/prompt-optimization ratings, graveyard warnings, the matching decision guide), pick_harness (ranked, with complexity/autonomy/recovery filters), pick_infrastructure (picks at any level of the infra stack plus a live GitHub/Hacker News discovery pass, so answers aren't limited to this list), search_harnesses, get_harness, list_categories, plus list_comparisons/get_comparison for the decision guides. Published to PyPI and the official MCP registry as io.github.RyanAlberts/agent-harnesses. One-line install (needs uv):
claude mcp add agent-harnesses -- uvx agent-harnesses-mcp

Or hire a skeleton

Don't just read the list — agents/ ships three agent skeletons: open-source agents that run on the AI subscription you already pay for. Clone the file, customize the instructions, done. All three work against the current week's data and deliver to Slack or Notion when either is connected:

  • harness-scout — describe what you're building; it picks your harness, with evidence and a graveyard check.
  • stack-auditor — flags the harnesses in your codebase that died, and can trace your agent session logs to show how the harness steers your technical decisions.
  • harness-radar — weekly movement briefing: climbers, arrivals, deaths, graduations.
curl -fsSL https://raw.githubusercontent.com/RyanAlberts/best-of-Agent-Harnesses/main/agents/harness-scout.md -o .claude/agents/harness-scout.md

Contents

Guide to rankings

  • Stars — GitHub star count, captured 2026-09-06; tables sort by stars descending.
  • ⚖️ Simplicity ↔ capability — adoption surface, 4 tiers: super simple (a format, one concept) → mostly simple (thin layer) → slightly complex (real SDK) → complex (product suite).
  • Headless-ready — designed for unattended runs, batches, and fleets (the top of the autonomy scale: step-gated → checkpoint-gated → bounded → headless).
  • Durable — persisted execution state survives restarts mid-task (the top of the recovery scale: none → retry → resumable → durable).
  • Open source — ✅ standard OSS license · ⚠️ source-available/restricted · ❓ no or unclear license.
  • 🏷️ Tags — capability chips auto-derived from descriptions; full cross-reference in TAGS.md.
  • 🎯 Examples — one concrete "show me it in action" link per project, not a docs root.

Every project's full autonomy and recovery tier is plotted in the grid above and carried in harnesses.json and llms.txt; scores are editorial, from public docs — maintainer corrections via issue/PR are merged fast.


Progressive disclosure harnesses

Back to top

Formats, runtimes, and patterns that reveal context, tools, or instructions in layers—index first, details on demand—to control tokens and improve agent focus (the "map, not encyclopedia" principle).

#Project⭐ StarsDescriptionOpen sourceSimplicity ↔ capabilityExamples
1Headroom69.1kCompresses tool outputs, logs, files, and RAG chunks with content-aware compressors before they reach the model—claimed 20% fewer tokens for coding agents and 60–95% fewer for JSON, same answers. Ships as a library, HTTP proxy, or MCP server, so it drops in front of whatever harness you already run. mcp · ragmostly simple (compression library/proxy/MCP server)Project README
2awesome-cursorrules40.7kCurated .cursorrules and skills that leverage Cursor's index-then-load model; the canonical collection for rules-as-progressive-disclosure in the IDE. idesuper simple (content bundle)PyTorch cursorrules
3agents.md24.2kOpen format for repo-scoped agent briefings; nested AGENTS.md files scope instructions per directory, so agents get a map of what exists and load only what's relevant. Read by 20+ tools including Codex, Cursor, and Copilot. ide · typescriptsuper simple (format only)Self-hosting AGENTS.md
4context-mode20.5kContext-window optimization layer that sandboxes tool output before it reaches the model (claimed 98% reduction) and persists session memory across 17 agent platforms via MCP and hooks—progressive disclosure applied to tool results, not just instructions. mcp · memory · sandbox⚠️ Elastic-2.0mostly simple (output sandboxing, cross-platform)Project README
5langgraph-bigtool ✱557Build LangGraph agents with large tool sets; retrieval and on-demand tool loading so agents scale beyond context without stuffing every schema upfront. tool-discovery · pythonslightly complex (large tool sets)Math-library tool agent
6MCP-Zero513Active tool discovery for autonomous agents: model requests tools by requirement; hierarchical semantic routing over 308 servers / 2,797 tools with ~98% token reduction (APIBank). tool-discoverycomplex (3k tools, full routing)APIBank experiment
7ToolGen184ICLR 2025: unified tool retrieval and calling via generation; 47k+ tools without context stuffing—retrieval and invocation in one generative step. tool-discovery · pythoncomplex (47k+ tools)Full eval pipeline
8ToolRAG33Semantic tool retrieval for LLMs; serves only the tools the user query demands (MCP-compatible), unlimited tool sets with zero context penalty. mcp · tool-discoverymostly simple (query-driven retrieval)MCP server retrieval

Coding agent products (IDEs, CLIs, full suites)

Back to top

Turnkey coding agents you install and run: IDE extensions, terminal CLIs, Dockerized workspaces. Each entry notes which part is the harness (the agent loop, tool wiring, approval model) versus the UI shell (VS Code extension, TUI, browser client).

#Project⭐ StarsDescriptionOpen sourceSimplicity ↔ capabilityExamples
1opencode ★205kOpen-source terminal coding agent (formerly sst/opencode; transferred to anomalyco). The harness is a multi-provider tool-call loop (Claude, OpenAI, Gemini, local) with strong plugin and MCP support; the TUI is the shell. 100% OSS, very actively shipped. mcp · provider-agnostic · cli · tui · typescriptslightly complex (multi-provider, plugins, MCP)Agent system page
2Codex122kOpenAI's terminal coding agent. The harness is the sandboxed tool-call loop with multi-provider support; the CLI is the shell. Reference implementation for "official CLI that ships code." sandbox · provider-agnostic · clislightly complex (reference CLI, sandboxed)Sandboxing concept
3Gemini CLI107kGoogle's first-party terminal agent for Gemini. The harness is the plugin/MCP tool-call loop; the terminal is the shell—Google's parallel to Claude Code / Codex, not just an API. mcp · cli · typescriptslightly complex (official CLI, plugins, MCP)MCP server setup
4pi102kThe upstream AI agent toolkit behind this list's oh-my-pi fork: a unified multi-provider LLM API, agent loop, and TUI shell providing the harness that oh-my-pi's Rust rewrite builds on. provider-agnostic · tui · rustslightly complex (multi-provider agent loop, TUI)Project README
5OpenHands ★86.3kDockerized software-engineering agent. The harness is the bash/editor/browser toolset with micro-agents and event-stream session bridging; Docker is the sandbox. Main OSS choice for teams self-hosting autonomous repo work. memory · browser · sandbox · python⚠️ (multi-license)complex (Docker runtime, multi-surface agent — product suite)Repository microagents
6Open Interpreter68.2kLightweight terminal coding agent oriented to open models (DeepSeek, Kimi, Qwen). The harness is a code-execution loop — the model writes code, the harness executes it with confirmation gates; the CLI is the shell. The original "let the LLM run code on my machine" project, reborn for open weights. cli · pythonmostly simple (lean code-exec loop)Quick start
7Cline67.6kVS Code extension whose harness is a plan-then-act loop with per-step human approval and cost transparency; the VS Code integration is the UI shell. Open-source counterweight to Cursor. ide · typescriptslightly complex (plan-then-act, approval gates)Plan & Act mode
8goose ★54kBlock-originated Rust agent, now stewarded by the Linux Foundation's Agentic AI Foundation (aaif-goose/goose). The harness is the MCP/ACP extension model with recipes and provider choice; there's no fixed UI slot—you bolt it into whatever shell you use. mcp · rustslightly complex (extensions, MCP/ACP)Goose recipes guide
9DeepSeek-Reasonix35.4kDeepSeek-native terminal coding agent. The harness is engineered around prefix-cache stability for long-running sessions; the TUI is the shell. memory · cli · tui · typescriptslightly complex (terminal agent, prefix-cache tuned)Project README
10oh-my-pi29.8kTerminal coding agent (fork of Pi) that wires the IDE into the harness: hash-anchored edits, a 32-tool loop tuned per-model, LSP rename/references/diagnostics on every write, a real DAP debugger (lldb/dlv/debugpy), long-lived Python + Bun execution kernels that call back into the agent's tools, browser control, and 40+ providers (Claude/OpenAI/Gemini/local). ~55k-line Rust core. browser · provider-agnostic · cli · ide · rustslightly complex (terminal agent, LSP/DAP, multi-provider)LSP wired into edits
11vibe-kanban28kKanban-style fleet manager for running Claude Code, Codex, or any coding agent across many tasks at once. The harness contribution is the task-queue/review layer on top of whichever agent executes; not an agent loop itself.slightly complex (task-fleet manager)Project README
12crush27.9kCharm's terminal coding agent (Charm's fork of the original OpenCode). The harness is the tool-calling loop with session persistence; the Bubble Tea TUI is the shell. memory · cli · tui⚠️ FSL-1.1-MITslightly complex (terminal agent, TUI)Crush launch post
13qwen-code27.7kAlibaba's official terminal coding agent, forked from Gemini CLI's agent loop and retuned for Qwen models. The harness is the same sandboxed tool-call loop as its upstream; the terminal is the shell. sandbox · cli · typescriptslightly complex (official CLI, Gemini-CLI fork)Project README
14Kilo Code27.2kVS Code extension and CLI in the Cline/Roo-Code lineage — a natural pick now that Roo-Code is archived upstream. The harness is an approval-gated autonomous-mode loop with a provider/tool marketplace; the IDE is the shell. mcp · cli · ide · typescriptslightly complex (IDE extension + CLI, MCP)Project README
15Symphony ★27.1kOpenAI's harness for fanning a task out into many isolated, autonomous coding-agent implementation runs and surfacing the ones that pass, so a team manages outcomes instead of supervising each session. sandboxcomplex (parallel isolated runs — product suite)Project README
16Roo Code24.3kVS Code/Cursor extension in the Cline lineage. The harness is the approval-gated agent with custom modes and a strong MCP story; the IDE is the UI. Popular community fork when you want that workflow without the upstream extension. mcp · workflow · ide · typescriptslightly complex (IDE extension, MCP-first)Custom modes guide
17jcode19.2kRust terminal coding agent pitched as the most RAM-efficient harness in its class; MCP support, multi-provider (Claude/OpenAI). mcp · memory · provider-agnostic · cli · rustslightly complex (terminal agent, low-memory)Project README
18eigent15.2kOpen-source desktop harness positioned as a local, free alternative to Claude Cowork and Codex: multi-agent workspace orchestration in a self-hosted app rather than a hosted product. multi-agent · localcomplex (desktop multi-agent workspace — product suite)Project README
19cc-haha14.3kLocal-first desktop workspace harness for Claude Code and other agents: multi-agent sessions, Git worktrees, code diffs, a skill marketplace, and chat-app access (WeChat, Telegram, WhatsApp). memory · multi-agent · typescriptcomplex (desktop workspace, multi-agent — product suite)Project README
20claw-code-agent544Python reimplementation of the Claude Code agent architecture with zero external dependencies; interactive chat, streaming, plugin runtime, nested agent delegation, cost tracking, MCP transport—portable harness without the Rust/TS toolchain. mcp · rust · python · typescriptslightly complex (pure Python, plugin runtime)Quick Start guide
21Proliferate463Open-source AI IDE for Claude Code, Codex, OpenCode, and more. The harness contribution is the workspace/session orchestration layer: run multiple coding agents in parallel, locally or in the cloud, with isolated workspaces, reusable workflows, and shared team context. multi-agent · sandbox · ide · typescriptcomplex (multi-agent workspace orchestration — product suite)Product README
22AgentBox387Runs multiple coding agents in parallel, each in its own sandboxed VM, locally or in the cloud, from one command. The harness contribution is the VM-per-agent isolation and fleet fan-out layer; whichever agent runs inside owns the loop. sandbox · typescriptslightly complex (VM-per-agent sandbox, parallel fan-out)Parallel agents quick start

Coding harness configs and SDKs

Back to top

Skill packs, slash-command libraries, meta-prompting frameworks, and official SDKs that give you the harness (the agent loop, planning, memory, hooks) without bundling a specific IDE or CLI shell.

#Project⭐ StarsDescriptionOpen sourceSimplicity ↔ capabilityExamples
1superpowers282kPerformance-oriented harness pack for Claude Code and 13 other harnesses (Codex, Cursor, OpenCode, Gemini CLI, more): skills, instincts, memory, security, research-first workflows. Treats harness engineering itself as the performance lever. memory · cli · idecomplex (multi-IDE skill stack — product suite)TDD skill
2Anthropic Skills175kAnthropic's official Agent Skills repository: SKILL.md-based folders (instructions, scripts, resources) Claude dynamically loads on Claude Code, Claude.ai, and the API. The reference for progressive-disclosure skill packs in 2026.⚠️ Anthropic termsmostly simple (official skills format)docx skill
3GStack132kGarry Tan's Claude Code skill stack: 23 slash-command modes (CEO/eng/design review, QA, ship, browse, retro, …) that structure one assistant as a virtual engineering team. Daily driver while running YC. typescriptslightly complex (multi-role slash-command harness)/ship SKILL.md
4addyosmani/agent-skills92.5kAddy Osmani's production-grade skill pack: 24 engineering skills and 4 specialist agent personas that encode senior-dev workflows (spec through deploy) across 70+ coding agents including Claude Code, Cursor, and Copilot. The harness contribution is the skill/workflow layer, not a new agent loop. workflow · idemostly simple (skills bundle, cross-agent)Project README
5awesome-claude-code53.6kLarge community-curated index of Claude Code skills, slash commands, status lines, and plugins—resources for extending the harness, not a harness itself, but the most-followed catalog of the genre.super simple (curated resource index)Project README
6wshobson/agents39.5kCross-harness marketplace of drop-in subagents and skills for Claude Code, Codex CLI, Cursor, OpenCode, and Copilot; specialized, production-ready agent definitions you install rather than hand-write. multi-agent · cli · idesuper simple (drop-in agent packs)Agent catalog
7planning-with-files26.7kSkill for persistent, file-based planning across long-running coding-agent sessions: crash-proof markdown plans, session recovery after /clear/compaction, and a deterministic completion gate—Manus-style planning as a drop-in harness layer via the Agent Skills standard. memorymostly simple (skill, file-based state)Project README
8SWE-agent ★20.3kLM-driven harness built for SWE-bench: edit state, command execution, and issue-focused loop—the reference agent stack next to the benchmark itself. memory · evals · pythonslightly complex (SWE-bench pairing, stateful edits)Default agent config
9get-shit-done9.2kGoal-backward planning and wave-based execution over fresh context windows; avoids context rot by design. Python/JS meta-prompting for Claude Code, OpenCode, Gemini CLI. cli · pythonmostly simple (meta-prompting, you own stack)gsd:ship command
10Claude Agent SDK ★8kOfficial Anthropic SDK (Python + TypeScript, demos, quickstarts): built-in tools, MCP, long-running coding agents with session bridging. mcp · memory · python · typescriptcomplex (full SDK, session bridging — product suite)Research agent demo
11agents-cli5.8kGoogle's official CLI and skill pack that layers agent-creation, evaluation, and deployment skills on top of whatever coding assistant you already run, rather than shipping its own agent loop—the harness as a config/skills add-on, not a new runtime. evals · climostly simple (skills/CLI layer, no new runtime)Project README
12skillhub5kiFlytek's self-hosted registry for publishing, versioning, and governing agent skill packages—the harness config layer treated as an enterprise artifact store rather than a CLI or IDE shell. local · cli · idemostly simple (skill registry/governance)Project README
13Meta-Harness1.5kReference implementation from the Meta-Harness paper: an academic testbed for harness-engineering research, not a product—useful as a citation-grade baseline rather than something you'd run in production.slightly complex (research reference implementation)Project README
14RepoMaster ★544Repo-scoped research harness: builds function-call and module-dependency graphs to explore only what's needed; large relative gains on MLE-bench and GitTaskBench with lower token use. workflow · pythonslightly complex (graph-based exploration)PDF-parse case study
15AutoHarness370Lightweight governance harness: wraps any LLM client in ~2 lines for automated harness engineering—6–14 step pipeline, YAML constitution, risk-pattern matching, session persistence with cost tracking, multi-agent profiles. memory · multi-agent · provider-agnostic · pythonsuper simple (2-line wrapper, YAML gov)Full pipeline demo
16LoopTroop130Config layer that chains LLM councils for planning, Ralph loops for iterative refinement, and OpenCode worktrees for shipping. The harness contribution is the council → loop → worktree pipeline; OpenCode underneath executes. typescriptmostly simple (config pipeline over OpenCode)Council → loop → worktree pipeline
17pmstack8Claude Code config for AI product managers: CLAUDE.md plus skills for competitive analysis, PRD-from-signal, metric frameworks, stakeholder briefs, and agent eval design. "GStack for PMs." evalssuper simple (skills bundle, PM-focused)PRD-from-signal skill

Personal agent runtimes

Back to top

Always-on, self-hosted agents you run as a daemon and talk to from chat apps: gateway runtimes, second brains, and self-improving assistants. The agent as a product you operate, not a library you build with.

#Project⭐ StarsDescriptionOpen sourceSimplicity ↔ capabilityExamples
1OpenClaw ★389kSelf-hosted, always-on personal agent (formerly Clawdbot/Moltbot): a gateway + event-loop runtime that treats messages, heartbeats, crons, and webhooks as one input queue, persists state to local files, and lives in your chat apps (WhatsApp, Telegram, Slack, Discord). 13,700+ community skills; the fastest-growing repo in GitHub history. typescript · multi-agentcomplex (always-on runtime, channels, skill ecosystem — product suite)Agent runtime architecture
2Hermes ★242kNous Research's self-improving agent: a learning loop turns experience into reusable skills, builds a persistent user model across sessions, and checkpoints state to disk with rollback; lean enough for a $5 VPS, driven from chat, and model-agnostic (Nous Portal, OpenRouter, OpenAI, or any endpoint). memory · python · provider-agnosticslightly complex (lean runtime, learning loop, disk-first memory)Built-in skills
3nanobot47.8kUltra-lightweight, self-hosted personal agent framework: the harness is a Python daemon wiring tools, memory, and MCP into chat/webhook front ends (Telegram, Discord, web); minimal footprint alternative to heavier personal-runtime stacks. mcp · memory · local · pythonmostly simple (lightweight daemon, chat/MCP)Project README
4CowAgent46.8kSelf-hosted harness (formerly chatgpt-on-wechat) that plans tasks, runs tools/skills, and self-evolves via memory; multi-model, multi-channel (WeChat, Telegram, etc.), one-line install. memory · pythonslightly complex (multi-channel, self-evolving)Project README
5Khoj ★37.2kSelf-hostable "AI second brain": answers over your docs and the web, custom agents, scheduled automations, and multi-client reach (web, Obsidian, Emacs, WhatsApp). A personal-agent harness with retrieval at the core. pythoncomplex (server + clients — product suite)Feature tour
6Eliza ★19.3kOpen "agentic operating system" (elizaOS): persistent multi-agent runtime with character files, a plugin ecosystem, and social/platform integrations — the harness behind a large share of autonomous social agents. memory · multi-agent · typescriptcomplex (runtime + plugin ecosystem — product suite)Agent quickstart
7Agent Zero19.1kOrganic, prompt-defined personal agent framework: hierarchical sub-agents, persistent memory, browser and code tools, and self-modifying behavior; runs in Docker with a web UI. memory · multi-agent · browser · sandbox · pythonslightly complex (prompt-defined, Docker + web UI)Framework tour
8OpenHarness (HKUDS)15.6kOpen agent harness with a built-in personal agent ("Ohmo") that runs across Feishu, Slack, Telegram, and Discord; core tool-use, skills, memory, multi-agent coordination with auto-compaction for multi-day sessions. memory · multi-agentcomplex (personal agent + multi-channel — product suite)harness-eval skill
9AIlice1.4kFully autonomous general-purpose agent; one binary, Docker-ready, for when you want "set goal and walk away" without a framework. sandbox · pythonslightly complex (autonomous, one binary)Task showcase
10Talon ★75Multi-platform personal agent living in Telegram, Discord, Teams, and the terminal. The harness is a pluggable-backend loop (Claude, Kilo, OpenCode, Codex, OpenAI Agents) with full MCP tool access and persistent background agents (Goals, Heartbeat, Dream); the chat apps are shells. mcp · memory · cli · typescriptslightly complex (multi-platform, pluggable backends, MCP)Multi-platform setup

Frameworks

Back to top

General-purpose agent and LLM application frameworks (the app layer, not harnesses per se).

#Project⭐ StarsDescriptionOpen sourceSimplicity ↔ capabilityExamples
1n8n ★ ✱204kFair-code workflow engine with 400+ nodes and native AI nodes; the self-hosted Zapier that actually does agents and LangChain. workflow · local · typescript⚠️ Fair-codecomplex (400+ nodes, workflow engine — product suite)Agent vs chain workflow
2AutoGPT ★187kThe original autonomous loop: goal in, agent iterates with tools and memory; Forge is the dev framework, Benchmark the eval harness. memory · evals · python⚠️ Polyform-SUcomplex (autonomous loop, tools, memory — product suite)Medium blogger graph
3Dify ★155kOne-stop LLM app platform: visual workflows, RAG pipeline, 50+ tools, model management; "ship from prototype to prod" in a single UI. low-code · rag · python⚠️ Fair-codecomplex (one-stop platform — product suite)Customer-service bot
4langflow ★154kLow-code UI to build and deploy LangChain/LangGraph flows; visual DAG editor and one-click run. low-code · pythoncomplex (low-code, visual — product suite)Chat with RAG flow
5langchain146kChains, tools, retrievers, and agents; the usual entry point for "add tools to an LLM" in Python/JS. pythoncomplex (kitchen-sink ecosystem — product suite)Build an agent notebook
6browser-use113kPython web-agent harness: natural-language goals become browser actions, driven directly over the Chrome DevTools Protocol (it dropped Playwright in August 2025). The biggest community in the browser-agent category. browser · pythonslightly complex (LLM + browser, CDP)Grocery shopping agent
7llama-index52kData-centric: indexing, RAG, and query engines; agent abstractions sit on top of your data pipelines. rag · pythoncomplex (RAG + agents — product suite)Research assistant workflow
8agno42.1kPython agents with memory, knowledge bases, tools, and structured outputs; continues the PhiData-era product line under the Agno name—production apps, evals, and pipelines. memory · evals · pythoncomplex (memory, KB, observability — product suite)Agent with tools
9langgraph ★ ✱41.1kState-machine graphs over LLM steps; checkpointing, human-in-the-loop, and durable execution so workflows survive restarts. workflow · pythonslightly complex (graphs, checkpointing, durable exec)Customer support agent
10semantic-kernel28.5kMicrosoft's plugin and planner layer for LLMs; C#, Python, Java; strong on enterprise auth and orchestration. pythoncomplex (enterprise, multi-language — product suite)Chat completion agent
11mastra ✱27.7kTypeScript-first; agents, tools, and workflows with a single runtime and minimal boilerplate. typed · typescript⚠️ Elastic-2.0slightly complex (TS-first, minimal boilerplate)Durable research agent
12Haystack26.4kOpen-source orchestration framework for context-engineered LLM apps: modular pipelines and agent workflows with explicit control over retrieval, routing, memory, and generation—closer to LangChain's territory than a coding-agent harness. memory · rag · pythoncomplex (modular pipelines, RAG + agents — product suite)Project README
13letta ★ ✱24.6kPython agent runtime with tool use and control flow; lean API; stateful agents with long-horizon memory. memory · pythonmostly simple (lean API)Loop .af agent file
14Stagehand24.2kBrowserbase's SDK for browser agents: natural-language actions (act, extract, observe) and deterministic Playwright code mix in one script, so agent flexibility and repeatable automation live in the same harness. browser · typescriptslightly complex (NL + code browser SDK)Act/extract/observe quickstart
15Google ADK ★21.4kGoogle's official Agent Development Kit: code-first Python toolkit for building, evaluating, and deploying agents. Optimized for Gemini but model-agnostic; deploys to Cloud Run / Vertex AI; ships a dev UI with eval and a code-execution sandbox. evals · sandbox · pythoncomplex (official Google SDK, eval, deploy — product suite)Travel concierge agent
16rasa ★21.3kConversational AI stack (NLU, dialogue, actions); long-standing OSS choice for chat and voice bots. voice · pythoncomplex (full stack — product suite)Sara conversational demo
17botpress ★14.9kVisual bot builder and runtime; multi-channel, open-source alternative to commercial bot platforms. low-code · typescriptcomplex (visual builder, multi-channel — product suite)Inter-bot delegation
18R2R ★8kRAG-first: hybrid search, knowledge graphs, multimodal; the framework for "production RAG" when you care more about retrieval than chat UI. vision · rag · workflow · pythoncomplex (production RAG — product suite)hello_r2r RAG example
19agent-squad7.8kAWS-originated orchestrator (now under 2FastLabs): intent classification, streaming, SupervisorAgent; "agent-as-tools" so one agent delegates to a squad. multi-agentslightly complex (squad orchestration)E-commerce support sim
20AgentVerse ★5.1kTask-solving and simulation envs for multi-LLM agents; deploy many agents in custom environments without building infra from scratch. multi-agent · pythoncomplex (simulation envs, multi-agent — product suite)NLP classroom sim
21youtu-agent4.6kTencent Cloud's agent framework: a minimal tool-calling harness designed to perform well with open-source models, positioned as a lighter alternative to heavier orchestration frameworks.mostly simple (minimal loop, open-model focus)Project README
22Bee Agent Framework3.4kPython + TypeScript, LF AI–backed; MCP/ACP, workflows, Requirement Agent; the one that pushes "production multi-agent" without LangChain. mcp · multi-agent · python · typescriptcomplex (production multi-agent — product suite)ReAct agent example
23AgentStack2.2kScaffolds full agent projects; plugs in CrewAI, LangGraph, OpenAI Swarm, LlamaStack and wires AgentOps observability from day one.slightly complex (scaffold, multi-backend)Research assistant crew
24AgentSilex454~300 lines of readable agent code on top of LiteLLM; the "I want to see the whole loop" option for learning or minimal production. pythonsuper simple (~300 LOC)Simple weather agent
25SuperAgentX204Lightweight multi-agent orchestrator with an AGI-angle; minimal surface, docs-first, for teams that want orchestration without the kitchen sink. multi-agent · pythonmostly simple (minimal surface)Parallel marketing agents

Multi-agent and orchestration

Back to top

Harnesses and patterns for multi-agent coordination and handoffs.

#Project⭐ StarsDescriptionOpen sourceSimplicity ↔ capabilityExamples
1MetaGPT ★70.2kThe "AI software company" multi-agent framework: role-played PM, architect, and engineer agents turn a one-line requirement into specs, designs, and code along an SOP assembly line. The landmark of the genre; development pace has slowed in 2026. multi-agent · pythoncomplex (role pipeline, SOPs — product suite)Build a customized agent
2autogen60.8kConversable agents and group chats; code execution and human-in-the-loop; Microsoft origin, AG2 ecosystem. ⚠️ In maintenance mode since late 2025: no new features, and Microsoft directs new users to Agent Framework. multi-agent · python✅ CC-BYcomplex (group chat, code exec, AG2 — product suite)Distributed group chat
3OpenManus58.2kOpen, invite-free general agent from the MetaGPT team: planning plus tool use over a multi-agent loop, aimed at reproducing Manus-style autonomous task completion on your own keys. multi-agent · pythoncomplex (multi-agent + tools)Quickstart
4crewAI58.1kRole-based agents (roles, goals, backstori