Tagged articles
217 articles
Page 1 of 3
IT Services Circle
IT Services Circle
May 19, 2026 · Artificial Intelligence

Peter Steinberger’s $1.3 M Monthly Token Bill: OpenAI’s Subsidy Powers a 100‑Agent OpenClaw

Peter Steinberger revealed that his OpenAI API usage cost $1.3 million in the past 30 days, consuming 6 030 billion tokens across 7.6 million requests, most of which power a cloud‑run fleet of about 100 Codex agents that automate OpenClaw development, prompting a debate on AI‑driven software costs.

AI EngineeringCodexMulti-Agent
0 likes · 7 min read
Peter Steinberger’s $1.3 M Monthly Token Bill: OpenAI’s Subsidy Powers a 100‑Agent OpenClaw
AI Engineer Programming
AI Engineer Programming
May 17, 2026 · Artificial Intelligence

ReAct, Plan‑Execute, and Reflection: How Continuous Loops Make Agent Architecture Crucial

While a single LLM call is a stateless function, real‑world tasks require dynamic information gathering, hypothesis testing, and iterative refinement, so agents must operate in a continuous loop; the article analyzes core patterns such as ReAct, Plan‑Execute, Reflection, Multi‑Agent and HITL, highlighting state management, cost, debugging, and observability challenges.

Agent ArchitectureLLMMulti-Agent
0 likes · 21 min read
ReAct, Plan‑Execute, and Reflection: How Continuous Loops Make Agent Architecture Crucial
Old Zhang's AI Learning
Old Zhang's AI Learning
May 15, 2026 · Artificial Intelligence

Alibaba’s Qoder 1.0 Transforms Desktop AI Coding – Hands‑On Review

Qoder 1.0 upgrades from a 0.x prototype to a full‑featured AI IDE with a new independent Quest view, multi‑agent parallelism, end‑to‑end delivery, long‑term memory, extensible expert teams, and full‑stack quality checks, demonstrated by recreating a browser extension in minutes.

AI IDEAgentic CodingBrowser Agent
0 likes · 14 min read
Alibaba’s Qoder 1.0 Transforms Desktop AI Coding – Hands‑On Review
AI Engineer Programming
AI Engineer Programming
May 13, 2026 · Artificial Intelligence

AI Agent Architecture Patterns: How to Choose the Right Solution for Your Workload

The article analyzes how AI agent architecture choices—single‑agent versus multi‑agent, ReAct, plan‑and‑execute, orchestrator‑worker, hierarchical teams, reflection, and HITL—affect cost, reliability, and scalability, providing quantitative trade‑offs and industry examples to guide workload‑specific selection.

AI AgentsArchitecture PatternsHuman-in-the-Loop
0 likes · 16 min read
AI Agent Architecture Patterns: How to Choose the Right Solution for Your Workload
21CTO
21CTO
May 11, 2026 · Artificial Intelligence

How jcode Runs 10‑20 AI Agents on an 8 GB Laptop with Rust

jcode, a Rust‑based AI agent framework, uses only 27.8 MB per agent and 14 ms startup time, enabling 10‑20 concurrent agents on an 8 GB laptop, outperforming Claude Code, GitHub Copilot CLI and other Python‑based solutions in memory, speed, and scalability.

AI AgentsMemory OptimizationMulti-Agent
0 likes · 11 min read
How jcode Runs 10‑20 AI Agents on an 8 GB Laptop with Rust
AI Architecture Path
AI Architecture Path
May 9, 2026 · Artificial Intelligence

Struggling with an Unknown Codebase? Claude Code Plugin Maps All Logic in One Graph

Understand‑Anything is a Claude Code plugin that uses a multi‑agent pipeline to turn large, unfamiliar codebases into searchable, interactive knowledge graphs, supporting nine AI coding tools, offering visual dashboards, natural‑language Q&A, incremental diff, and detailed onboarding while noting token costs and large‑graph performance limits.

AI toolClaude CodeKnowledge Graph
0 likes · 11 min read
Struggling with an Unknown Codebase? Claude Code Plugin Maps All Logic in One Graph
James' Growth Diary
James' Growth Diary
May 8, 2026 · Artificial Intelligence

How to Test Multi‑Agent Systems? Mock LLM and Graph Replay Explained

The article analyzes why testing Multi‑Agent systems is difficult—due to LLM output randomness, cross‑node state propagation, and tool side‑effects—and presents a systematic solution using mock LLMs, MemorySaver checkpoints with graph replay, tool stubs, and a three‑layer testing pyramid while highlighting common pitfalls and best practices.

Graph ReplayLangChainMock LLM
0 likes · 14 min read
How to Test Multi‑Agent Systems? Mock LLM and Graph Replay Explained
PaperAgent
PaperAgent
May 7, 2026 · Artificial Intelligence

190 Must-Read AI Agent Papers + 321 Google Implementation Cases – Free Resource Pack

The article provides a free compiled resource containing 190 essential AI Agent papers—from fundamentals to cutting‑edge topics—along with 321 Google‑released implementation cases and 500 open‑source agent applications, all with source code to help beginners and researchers quickly understand the field and reproduce results.

AI AgentLLMMemory
0 likes · 6 min read
190 Must-Read AI Agent Papers + 321 Google Implementation Cases – Free Resource Pack
James' Growth Diary
James' Growth Diary
May 7, 2026 · Artificial Intelligence

Mastering the Coordinator Pattern: Control‑Plane/Data‑Plane Separation for Scalable Multi‑Agent Orchestration

The article dissects Claude Code’s Coordinator pattern, explaining how separating the control plane from the data plane eliminates serial bottlenecks, context overflow, and fault‑propagation in single‑Agent setups, and details the dual back‑end design, message protocol, engineering insights, technical debt, and practical adoption guidelines.

Backend AbstractionControl PlaneCoordinator
0 likes · 16 min read
Mastering the Coordinator Pattern: Control‑Plane/Data‑Plane Separation for Scalable Multi‑Agent Orchestration
James' Growth Diary
James' Growth Diary
May 7, 2026 · Artificial Intelligence

Three Design Patterns for Multi‑Agent Permission Isolation: Assigning Dedicated Toolsets

The article explains three architectural patterns—static binding, dynamic injection, and tool‑level guards—for isolating tool permissions in production‑grade multi‑agent LLM systems, compares their trade‑offs, shows concrete code examples, and highlights common pitfalls and best‑practice recommendations.

Dynamic InjectionLangChainMulti-Agent
0 likes · 16 min read
Three Design Patterns for Multi‑Agent Permission Isolation: Assigning Dedicated Toolsets
James' Growth Diary
James' Growth Diary
May 5, 2026 · Artificial Intelligence

Deep Dive into LangGraph Swarm: How Agents Transfer Control with the Handoff Mechanism

This article explains the Swarm collaboration model in LangGraph, contrasting it with Supervisor, detailing the handoff tool that atomically updates the active_agent state and routes control, and provides a complete travel‑booking example, custom handoff creation, common pitfalls, and best‑practice tips.

Active AgentHandoffLangGraph
0 likes · 13 min read
Deep Dive into LangGraph Swarm: How Agents Transfer Control with the Handoff Mechanism
DataFunSummit
DataFunSummit
May 4, 2026 · Artificial Intelligence

Inside Alibaba Cloud AI Search: Agentic RAG Architecture and Multi‑Agent Techniques

Alibaba Cloud AI Search tackles high‑concurrency, multimodal, and multi‑hop queries by evolving its Agentic RAG architecture from a single agent to a coordinated multi‑agent system that integrates planning, retrieval, and generation, leverages hybrid vector‑text‑DB‑graph recall, GPU‑accelerated indexing, quantization, NL2SQL, and multimodal search, with performance data and real‑world case studies.

AI searchAgentic RAGAlibaba Cloud
0 likes · 6 min read
Inside Alibaba Cloud AI Search: Agentic RAG Architecture and Multi‑Agent Techniques
James' Growth Diary
James' Growth Diary
May 4, 2026 · Artificial Intelligence

Choosing the Right Multi‑Agent Collaboration Pattern: Supervisor, Swarm, Mesh, or Pipeline

When a single LLM agent can’t handle research, writing, and fact‑checking simultaneously, the article breaks down four multi‑agent collaboration patterns—Supervisor, Swarm, Pipeline, and Mesh—detailing their architectures, code examples, pros, cons, suitable scenarios, and common pitfalls to help you pick the best fit.

LangGraphMulti-AgentPipeline
0 likes · 21 min read
Choosing the Right Multi‑Agent Collaboration Pattern: Supervisor, Swarm, Mesh, or Pipeline
AI Explorer
AI Explorer
May 1, 2026 · Artificial Intelligence

A New Multi‑Agent LLM Framework Redefines AI‑Driven Financial Trading

TradingAgents introduces a multi‑agent LLM framework that transforms AI from a single‑point price predictor into a collaborative trading team, offering roles such as analyst, researcher, trader, and risk manager, with open‑source code, Docker deployment, and over 59,000 GitHub stars.

AI FinanceDockerLLM
0 likes · 7 min read
A New Multi‑Agent LLM Framework Redefines AI‑Driven Financial Trading
ZhiKe AI
ZhiKe AI
May 1, 2026 · Artificial Intelligence

From Chatbot to Action: How Large‑Model Agents Turn Queries into Real‑World Tasks

The article explains that large‑model agents differ from traditional chatbots by perceiving goals, planning steps, invoking tools, and executing actions autonomously, covering their definition, core modules, ReAct reasoning‑acting loop, single‑ versus multi‑agent systems, current industry trends, and the reliability, safety, observability, and cost challenges they face.

AI AgentAI EngineeringAgent Architecture
0 likes · 18 min read
From Chatbot to Action: How Large‑Model Agents Turn Queries into Real‑World Tasks
Alibaba Cloud Native
Alibaba Cloud Native
Apr 28, 2026 · Artificial Intelligence

Scaling Enterprise Multi‑Agent AI: Insights from the QunXia AI Salon

The Beijing AI salon showcased HiClaw's multi‑agent platform, QwenPaw personal assistant, an AgentScope‑Java Q&A agent, and Nacos's AI skill registry, detailing their architectures, security mechanisms, deployment workflows, and hands‑on best practices for enterprise‑grade AI scaling.

AI AgentsAgentScopeEnterprise AI
0 likes · 6 min read
Scaling Enterprise Multi‑Agent AI: Insights from the QunXia AI Salon
James' Growth Diary
James' Growth Diary
Apr 28, 2026 · Artificial Intelligence

Mastering LangGraph Multi‑Agent Collaboration: The Supervisor Pattern from Theory to Practice

This article explains why single‑agent LLM pipelines fail when many tools are attached, introduces the Supervisor pattern that separates routing and execution across specialized agents, compares Tool‑Calling and Handoff approaches, provides a complete TypeScript implementation—including hierarchical supervisors—and lists five common pitfalls with concrete fixes.

HandoffLLM OrchestrationLangGraph
0 likes · 17 min read
Mastering LangGraph Multi‑Agent Collaboration: The Supervisor Pattern from Theory to Practice
James' Growth Diary
James' Growth Diary
Apr 28, 2026 · Artificial Intelligence

Mastering LangGraph Multi‑Agent Collaboration: The Supervisor Pattern Explained from Theory to Practice

The article examines why single‑agent setups fail, introduces the Supervisor pattern for clear responsibility separation, compares Tool‑Calling and Handoff approaches, provides a complete TypeScript implementation, explores hierarchical supervisors, and outlines five common pitfalls with concrete fixes.

HandoffLangGraphMulti-Agent
0 likes · 15 min read
Mastering LangGraph Multi‑Agent Collaboration: The Supervisor Pattern Explained from Theory to Practice
Architect
Architect
Apr 27, 2026 · Artificial Intelligence

Sub-Agent vs Agent Team: Designing Multi-Agent Architectures Around Context Boundaries

The article explains how to choose between Sub‑Agent and Agent Team structures for multi‑agent systems by evaluating whether sub‑tasks share context, need isolation, compression, parallelism, or continuous collaboration, and provides practical guidelines, pitfalls, and a decision framework to avoid over‑engineering.

AI ArchitectureAgent TeamContext Boundaries
0 likes · 18 min read
Sub-Agent vs Agent Team: Designing Multi-Agent Architectures Around Context Boundaries
AI Explorer
AI Explorer
Apr 27, 2026 · Artificial Intelligence

TradingAgents: A Multi‑Agent LLM Framework for Financial Trading

TradingAgents is an open‑source Python framework that splits the trading workflow into five specialized LLM agents, uses structured JSON communication, supports multiple model providers, and lets users quickly backtest or run live strategies with a single pip install.

LLMMulti-AgentPython
0 likes · 6 min read
TradingAgents: A Multi‑Agent LLM Framework for Financial Trading
Java Companion
Java Companion
Apr 27, 2026 · Artificial Intelligence

From Spring Boot 3.5 to an AI OS: One JAR Powers Agents, Knowledge Base, and Toolchain

MateClaw is an open‑source, Java‑centric AI operating system built on Spring Boot 3.5 and Spring AI Alibaba that runs as a single JAR, offering multi‑agent collaboration, a structured wiki‑style knowledge base, tool‑guarded utilities, multi‑model routing, and cross‑channel deployment while keeping all data on‑premises.

AIJavaKnowledge Base
0 likes · 16 min read
From Spring Boot 3.5 to an AI OS: One JAR Powers Agents, Knowledge Base, and Toolchain
AI Explorer
AI Explorer
Apr 26, 2026 · Artificial Intelligence

A Lightweight Python Multi‑Agent Framework That Gained 25K+ Stars in 24 Hours

OpenAI’s newly open‑sourced openai‑agents‑python SDK is a lightweight, powerful Python framework for building multi‑agent AI workflows, quickly earning over 25,000 GitHub stars, supporting 100+ LLM providers, and offering sandbox agents, built‑in tracing, and human‑AI collaboration features.

AI workflowLLMMulti-Agent
0 likes · 7 min read
A Lightweight Python Multi‑Agent Framework That Gained 25K+ Stars in 24 Hours
Machine Learning Algorithms & Natural Language Processing
Machine Learning Algorithms & Natural Language Processing
Apr 25, 2026 · Artificial Intelligence

Coordination Engineering’s Key Leap: Jiuwen Claw Introduces the New Team Skills Paradigm

Jiuwen Claw advances AI coordination engineering by unveiling Coordination Engineering and the first standardized multi‑agent capability package, Team Skills, which codifies collaboration workflows, offers a creator tool and hub for reusable, cross‑framework team skills such as a medical expert consultation team.

AI CollaborationCoordination EngineeringJiuwenClaw
0 likes · 10 min read
Coordination Engineering’s Key Leap: Jiuwen Claw Introduces the New Team Skills Paradigm
AI Waka
AI Waka
Apr 24, 2026 · Artificial Intelligence

One Loop, Three Modes: A Practical Guide to Multi‑Agent Orchestration

The article explains how treating an AI system as multiple specialized agents—delegator, worker, and reviewer—running the same loop but with different configurations can prevent context overload, and it details three orchestration patterns (delegation, swarm, coordinator) along with tool partitioning to ensure reliable, scalable multi‑agent workflows.

AI AgentsMulti-AgentOrchestration
0 likes · 15 min read
One Loop, Three Modes: A Practical Guide to Multi‑Agent Orchestration
Ray's Galactic Tech
Ray's Galactic Tech
Apr 23, 2026 · Backend Development

Stop Treating LLMs as 'All‑Purpose Tools': Practical Spring AI Multi‑Agent Architecture for Production

This article analyses why a single‑agent LLM approach quickly hits scalability, context, and governance limits, and presents a production‑ready Spring AI Multi‑Agent design—including layered architecture, agent metadata, skill engineering, routing strategies, orchestration, resilience, A2A service discovery, Kubernetes deployment, observability, security, and cost‑control—backed by concrete Java code examples.

A2AJavaKubernetes
0 likes · 38 min read
Stop Treating LLMs as 'All‑Purpose Tools': Practical Spring AI Multi‑Agent Architecture for Production
PMTalk Product Manager Community
PMTalk Product Manager Community
Apr 23, 2026 · Product Management

The Core Logic Behind AI Product Management: When and How to Use Multiple Agents

The article explains why many AI product managers struggle with multi‑agent concepts, outlines the three structural bottlenecks a single agent faces, shows how task decomposition and specialized agents improve quality, and provides concrete product‑design decisions—including orchestration, context passing, failure handling, and human‑in‑the‑loop—to determine when multi‑agent architectures are appropriate.

AI product managementMulti-AgentOrchestration
0 likes · 16 min read
The Core Logic Behind AI Product Management: When and How to Use Multiple Agents
AI Explorer
AI Explorer
Apr 23, 2026 · Artificial Intelligence

Why OpenAI’s Lightweight Multi‑Agent Python Framework Is Going Viral

The open‑source OpenAI Agents SDK provides a lightweight Python framework that enables multiple AI agents to collaborate like a team, offering features such as automatic handoff, sandboxed execution, safety guardrails, human‑in‑the‑loop control, full‑traceability, and support for over 100 LLM models, all with just a single pip install.

AI workflowLLMMulti-Agent
0 likes · 5 min read
Why OpenAI’s Lightweight Multi‑Agent Python Framework Is Going Viral
AntTech
AntTech
Apr 22, 2026 · Artificial Intelligence

How Multi‑Agent MCTS and Information‑Gain Rewards Are Transforming Mobile GUI and Search Agents

This article reviews two recent ICLR 2026 papers—M²‑Miner, a multi‑agent Monte‑Carlo Tree Search framework for low‑cost mobile GUI data mining, and IGPO, an information‑gain‑based reinforcement‑learning method that provides dense rewards for multi‑turn search agents—detailing their designs, experiments, and open‑source releases.

GUI Data MiningInformation GainLLM agents
0 likes · 8 min read
How Multi‑Agent MCTS and Information‑Gain Rewards Are Transforming Mobile GUI and Search Agents
IT Services Circle
IT Services Circle
Apr 21, 2026 · Artificial Intelligence

Top 10 Open‑Source AI Projects Transforming Multi‑Agent Development, Coding and More

This article surveys ten notable open‑source AI projects—from a visual multi‑agent IDE and a teammate‑style agent framework to AI‑enhanced coding workflows, a lifelong‑memory layer for Claude Code, a massive Chinese textbook repository, a universal Markdown converter, and a high‑quality TTS model—detailing their motivations, core features, benchmarks, and real‑world usage scenarios.

AI toolsLLM workflowsMarkdown conversion
0 likes · 14 min read
Top 10 Open‑Source AI Projects Transforming Multi‑Agent Development, Coding and More
FunTester
FunTester
Apr 20, 2026 · Artificial Intelligence

Why Self‑Evaluating Agents Fail and How to Build Reliable Multi‑Agent Systems

The article analyzes why letting the same AI Agent generate and self‑evaluate results in over‑confident but flawed outputs, especially for subjective tasks, and proposes a three‑stage multi‑agent architecture with independent evaluation, concrete standards, and prompt‑based calibration to improve reliability as models evolve.

AIMulti-AgentPrompt Engineering
0 likes · 9 min read
Why Self‑Evaluating Agents Fail and How to Build Reliable Multi‑Agent Systems
Baidu Geek Talk
Baidu Geek Talk
Apr 20, 2026 · Artificial Intelligence

Can AI Agents Fully Automate Software Development? A Deep Dive into AutoResearch Adaptation

This article details how Karpathy's AutoResearch methodology was transferred to software development, introducing multi‑agent cross‑review, a five‑dimensional quantitative scoring system, and feedback‑driven iteration to build a fully automatic pipeline that resolves a medium‑complexity GitHub Issue in about ten minutes with a 9.0/10 code‑quality score.

AI automationAutoResearchCode Generation
0 likes · 19 min read
Can AI Agents Fully Automate Software Development? A Deep Dive into AutoResearch Adaptation
Machine Learning Algorithms & Natural Language Processing
Machine Learning Algorithms & Natural Language Processing
Apr 18, 2026 · Artificial Intelligence

From Passive Exposure to Active Decision Assistant: Deep Research Framework for Recommenders

The paper introduces the Deep Research paradigm and the RecPilot multi‑agent framework, which transform traditional list‑based recommender systems into proactive decision‑support assistants that simulate user exploration, generate structured reports, and demonstrably outperform existing baselines on TMALL data.

Deep ResearchLLMMulti-Agent
0 likes · 10 min read
From Passive Exposure to Active Decision Assistant: Deep Research Framework for Recommenders
PMTalk Product Manager Community
PMTalk Product Manager Community
Apr 18, 2026 · Product Management

Why AI Product Managers Must Rethink Their Core Logic in the Multi‑Agent Era

The article explains how multi‑agent architectures expose three structural bottlenecks of single‑agent designs, outlines concrete product‑design questions—task decomposition, specialist agents, orchestration, failure handling—and shows how AI product managers must shift from dialogue design to full process orchestration to deliver high‑quality results.

AI product managementFailure HandlingMulti-Agent
0 likes · 16 min read
Why AI Product Managers Must Rethink Their Core Logic in the Multi‑Agent Era
Qborfy AI
Qborfy AI
Apr 17, 2026 · Artificial Intelligence

Will Harness Engineering Survive the Rise of Stronger AI Models? Future Trends and Strategies

As large language models become more capable, Harness engineering will not disappear but evolve—simplifying some components while taking on more complex tasks, requiring new memory systems, multi‑model collaboration, adaptive observability, and a shift in engineers' roles, all backed by concrete examples and actionable roadmaps.

AIFuture TrendsHarness Engineering
0 likes · 22 min read
Will Harness Engineering Survive the Rise of Stronger AI Models? Future Trends and Strategies
Big Data Technology & Architecture
Big Data Technology & Architecture
Apr 17, 2026 · Industry Insights

Why Data Agents Are the Next AI Frontier in Enterprise Analytics

The article examines the rise of Data Agents—AI-powered assistants that shift data analysis from manual SQL queries to autonomous, multi‑step reasoning—by outlining their technical evolution, current market players, core architectural components, and future trends shaping enterprise analytics through semantic layers and multi‑agent collaboration.

AIData AgentMulti-Agent
0 likes · 16 min read
Why Data Agents Are the Next AI Frontier in Enterprise Analytics
AI Explorer
AI Explorer
Apr 16, 2026 · Artificial Intelligence

Is a Lightweight Multi‑Agent Workflow Framework the Next Paradigm for AI Application Development?

OpenAI’s newly open‑sourced Agents SDK for Python offers a lightweight, vendor‑neutral framework that lets developers define, orchestrate, and monitor multiple AI agents—each acting as a specialized tool or sandboxed worker—enabling rapid construction of complex, production‑grade AI collaboration workflows.

AI workflowAgents SDKMulti-Agent
0 likes · 7 min read
Is a Lightweight Multi‑Agent Workflow Framework the Next Paradigm for AI Application Development?
Qborfy AI
Qborfy AI
Apr 15, 2026 · Artificial Intelligence

Why Three AI Agents Beat One: Planner‑Generator‑Evaluator Architecture Explained

The article analyzes why a single AI struggles to self‑evaluate, presents Anthropic’s three‑agent (Planner, Generator, Evaluator) architecture with concrete DAW‑building examples, sprint contracts, cost‑benefit tables, and step‑by‑step processes that show how each role solves specific problems and improves overall quality.

AI ArchitectureEvaluatorMulti-Agent
0 likes · 24 min read
Why Three AI Agents Beat One: Planner‑Generator‑Evaluator Architecture Explained
AgentGuide
AgentGuide
Apr 14, 2026 · Artificial Intelligence

What Is Mixture-of-Agents (MoA) and How Does It Boost Performance?

MoA (Mixture-of-Agents) is a quality-first multi-agent collaboration mode where multiple large models act as Proposers and an Aggregator merges their diverse outputs, delivering more robust and higher-quality results at the cost of increased latency, making it ideal for high-value, open-ended tasks and extensible via multi-layer aggregation.

AIAgent CollaborationMixture of Agents
0 likes · 4 min read
What Is Mixture-of-Agents (MoA) and How Does It Boost Performance?
HyperAI Super Neural
HyperAI Super Neural
Apr 14, 2026 · Artificial Intelligence

DeepTutor Online Tutorial: HKU’s Open‑Source Multi‑Agent Interactive Learning Assistant

DeepTutor, an open‑source personal learning assistant from HKU’s Data Science Lab, combines multi‑agent collaboration, retrieval‑augmented generation, and web search to deliver end‑to‑end interactive learning—covering knowledge Q&A, visual explanations, exercise generation, and research support—while a step‑by‑step HyperAI tutorial shows how to deploy it with ready‑made compute resources.

AI tutoringDeepTutorHyperAI
0 likes · 6 min read
DeepTutor Online Tutorial: HKU’s Open‑Source Multi‑Agent Interactive Learning Assistant
AI Engineering
AI Engineering
Apr 14, 2026 · Artificial Intelligence

Anthropic’s Multi‑Agent Coordination Guide: 5 Architectures and When to Use Them

When a single AI agent can’t finish a task, Anthropic’s new guide outlines five proven multi‑agent coordination patterns—generate‑validate, orchestrate‑sub‑agent, team, message‑bus, and shared‑state—detailing suitable scenarios, common pitfalls, and a recommendation to start simple and scale only as needed.

AI ArchitectureAnthropicCoordination Patterns
0 likes · 4 min read
Anthropic’s Multi‑Agent Coordination Guide: 5 Architectures and When to Use Them
Top Architecture Tech Stack
Top Architecture Tech Stack
Apr 13, 2026 · Artificial Intelligence

Codex Desktop: Turning AI Coding into a Shift‑Change Assistant

OpenAI’s new Codex desktop app upgrades AI programming from a simple code‑completion tool to a multi‑agent, schedule‑driven assistant that can run parallel tasks, automate routine engineering work, and encapsulate team SOPs as reusable Skills, signaling a shift toward AI‑driven development workflows.

AI CodingCodexMulti-Agent
0 likes · 9 min read
Codex Desktop: Turning AI Coding into a Shift‑Change Assistant
Tech Verticals & Horizontals
Tech Verticals & Horizontals
Apr 11, 2026 · Artificial Intelligence

How to Automate the Entire Development Workflow with OpenClaw Multi‑Agent – One Person, No More Juggling Roles

This guide shows how independent developers or small teams can use OpenClaw's multi‑agent framework to create a virtual development team of five AI "employees", configure Feishu integration, and automate the full software development lifecycle from requirement analysis to testing, dramatically improving efficiency and reducing manual effort.

AI AgentsDevOpsFeishu integration
0 likes · 25 min read
How to Automate the Entire Development Workflow with OpenClaw Multi‑Agent – One Person, No More Juggling Roles
AI Insight Log
AI Insight Log
Apr 11, 2026 · Artificial Intelligence

Can Opus + Sonnet Advisor Cut Costs While Raising AI Benchmark Scores?

Anthropic’s new advisor strategy lets the cheaper Opus model act as a consultant for Sonnet or Haiku, delivering higher benchmark scores—e.g., SWE‑bench Multilingual up to 74.8% and BrowseComp up to 41.2%—while reducing per‑task cost to about 15% of solo runs, though it introduces trade‑offs such as the need for the executor to recognize when to ask for advice and potential vendor lock‑in.

AnthropicBenchmarkClaude
0 likes · 8 min read
Can Opus + Sonnet Advisor Cut Costs While Raising AI Benchmark Scores?
PaperAgent
PaperAgent
Apr 10, 2026 · Artificial Intelligence

Can Multi‑Agent AI Generate Conference‑Ready Papers? Inside PaperOrchestra

PaperOrchestra, a multi‑agent collaborative framework, transforms unstructured research notes into LaTeX‑formatted conference papers by automating literature review, chart generation, and drafting, achieving 50‑68% absolute win rates over baselines in human‑like quality evaluations across CVPR and ICLR benchmarks.

AI writingMulti-AgentPaper Generation
0 likes · 9 min read
Can Multi‑Agent AI Generate Conference‑Ready Papers? Inside PaperOrchestra
Node.js Tech Stack
Node.js Tech Stack
Apr 10, 2026 · Artificial Intelligence

How Anthropic’s Advisor Strategy Boosts Sonnet Scores by 2.7% While Cutting Costs 12%

Anthropic’s new advisor strategy flips the traditional multi‑agent model by letting a cheap front‑line model call Opus for advice only when needed, delivering a 2.7 percentage‑point score lift on SWE‑bench, a 12 % cost reduction, and a simple one‑line API integration, while also outlining its limitations and future implications.

AnthropicBenchmarkClaude
0 likes · 10 min read
How Anthropic’s Advisor Strategy Boosts Sonnet Scores by 2.7% While Cutting Costs 12%
AI Explorer
AI Explorer
Apr 9, 2026 · Artificial Intelligence

Team‑First Multi‑Agent Orchestration Framework: Zero‑Learning‑Curve AI Coding

The open‑source “oh‑my‑claudecode” (OMC) framework lets developers drive Claude Code with natural‑language commands, automatically orchestrating multiple agents to plan, code, test, and deploy projects, eliminating the need to memorize complex Claude Code instructions and dramatically lowering the cognitive load of AI‑assisted programming.

AI CodingAutomationCLI
0 likes · 7 min read
Team‑First Multi‑Agent Orchestration Framework: Zero‑Learning‑Curve AI Coding
Machine Heart
Machine Heart
Apr 9, 2026 · Artificial Intelligence

AutoSOTA Finds 105 New SOTA Models in One Week, Restoring AI Research’s Creative Core

AutoSOTA, a Tsinghua‑Beijing Zhongguancun Institute project, automates end‑to‑end AI research using a multi‑agent framework, toolkit, and skill set, enabling it to discover 105 significantly improved SOTA models in a week—over 60% with novel architectures and ~10% average performance gains—freeing scientists from repetitive optimization.

AI automationAutoSOTAMulti-Agent
0 likes · 6 min read
AutoSOTA Finds 105 New SOTA Models in One Week, Restoring AI Research’s Creative Core
AI Large-Model Wave and Transformation Guide
AI Large-Model Wave and Transformation Guide
Apr 7, 2026 · Artificial Intelligence

Why Harness Engineering Is the New AI Competitive Edge in 2026

The article argues that as large‑model capabilities converge, the decisive factor in 2026 AI competition shifts from raw model power to the ability to engineer a full‑stack Harness system that multiplies performance tenfold through standardized adapters, dynamic prompt registries, multi‑agent orchestration, context compression, and observability.

AI EngineeringHarnessMulti-Agent
0 likes · 14 min read
Why Harness Engineering Is the New AI Competitive Edge in 2026
AI Step-by-Step
AI Step-by-Step
Apr 6, 2026 · Artificial Intelligence

Why Single Agents Fail: Embracing Multi‑Agent Microservice Architecture

When a single AI agent’s logic hits bottlenecks, the article explains how breaking responsibilities into bounded microservice agents, using pipelines for deterministic steps and supervisors for dynamic routing, yields clearer contracts, shared state, easier debugging, and more stable, scalable task execution.

AI ArchitectureAgent FrameworksMicroservices
0 likes · 12 min read
Why Single Agents Fail: Embracing Multi‑Agent Microservice Architecture
PMTalk Product Manager Community
PMTalk Product Manager Community
Apr 5, 2026 · Product Management

Why AI Product Managers Must Rethink Their Core Logic in the Multi‑Agent Era

The article explains how multi‑agent architectures solve three structural bottlenecks of single‑agent AI—context overload, diluted expertise, and hidden failure points—by showing a concrete contract‑review use case and outlining four essential product‑design decisions for AI PMs.

AI product managementMulti-AgentOrchestration
0 likes · 16 min read
Why AI Product Managers Must Rethink Their Core Logic in the Multi‑Agent Era
Ray's Galactic Tech
Ray's Galactic Tech
Apr 4, 2026 · Backend Development

How to Build a High‑Concurrency Story Creation Platform with AgentScope Java

This article presents a step‑by‑step engineering guide for constructing a production‑grade, high‑throughput story generation platform using AgentScope Java, Spring Boot, Kafka, Redis, PostgreSQL, and Kubernetes, covering architecture, task modeling, DAG orchestration, code organization, scalability, observability, and deployment best practices.

JavaKafkaMulti-Agent
0 likes · 39 min read
How to Build a High‑Concurrency Story Creation Platform with AgentScope Java
SpringMeng
SpringMeng
Apr 4, 2026 · Artificial Intelligence

How to Build a Tencent IMA‑Style AI Knowledge Base for Under $3,000

This article details a cost‑effective AI knowledge‑base project that replicates Tencent IMA functionality using Dify’s open‑source platform, Chinese LLMs (Qwen, DeepSeek, GLM), a Java Spring Boot backend, Vue frontend, multi‑agent orchestration, hybrid on‑premise/cloud deployment, and provides concrete cost and performance estimates.

AI knowledge baseDifyDocker
0 likes · 12 min read
How to Build a Tencent IMA‑Style AI Knowledge Base for Under $3,000
AI Architecture Hub
AI Architecture Hub
Apr 4, 2026 · Artificial Intelligence

How Claude Code Achieves Unlimited Context with Multi‑Layer Caching and Self‑Evolving Agents

This article dissects Claude Code's source code, revealing a two‑layer system‑prompt cache, a four‑stage compact strategy, proactive autonomous modes, multi‑agent collaboration, remote bridge architecture, enterprise‑grade security, and a sophisticated telemetry system that together enable limitless context, self‑learning memory, and industrial‑scale reliability.

AI AgentClaude CodeMulti-Agent
0 likes · 39 min read
How Claude Code Achieves Unlimited Context with Multi‑Layer Caching and Self‑Evolving Agents
Data STUDIO
Data STUDIO
Apr 1, 2026 · Artificial Intelligence

Blackboard System: Enabling Dynamic Collaboration Among Expert AI Agents

This article compares a rigid sequential multi‑agent pipeline with a flexible blackboard architecture, showing how shared memory and a dynamic controller let specialist AI agents cooperate opportunistically, obey conditional user instructions, and achieve higher efficiency and instruction‑following scores.

Blackboard SystemDynamic SchedulingLLM
0 likes · 21 min read
Blackboard System: Enabling Dynamic Collaboration Among Expert AI Agents
ShiZhen AI
ShiZhen AI
Apr 1, 2026 · Artificial Intelligence

Inside Claude Code’s 512K-Line Leak: How Its AI Coding System Is Built

The accidental source‑map release of Anthropic’s Claude Code on March 31 2026 exposed 512 000 lines of TypeScript, revealing a five‑layer architecture, a sophisticated prompt‑memory split, a 40‑plus‑tool ecosystem, multi‑agent coordination, and hidden feature‑flags that together illustrate how a top‑tier AI coding agent is engineered as a full‑stack runtime rather than a simple model wrapper.

AI coding agentClaude CodeMulti-Agent
0 likes · 24 min read
Inside Claude Code’s 512K-Line Leak: How Its AI Coding System Is Built
AI Tech Publishing
AI Tech Publishing
Mar 31, 2026 · Artificial Intelligence

Step‑by‑Step Guide to Building Your First AI Agent from Scratch (Full Code Included)

This comprehensive guide walks you through the fundamentals of AI agents, explains the core agent loop, compares workflow patterns with autonomous agents, and provides a practical five‑step process—including tool design, memory handling, testing, and multi‑agent collaboration—complete with real code examples for Anthropic and OpenAI SDKs.

AI AgentLLMMemory
0 likes · 22 min read
Step‑by‑Step Guide to Building Your First AI Agent from Scratch (Full Code Included)
Lao Guo's Learning Space
Lao Guo's Learning Space
Mar 30, 2026 · Artificial Intelligence

Building an AI Dream Team with OpenClaw: A Hands‑On Multi‑Agent Guide

The article explains why single‑agent LLMs struggle with complex tasks and demonstrates how OpenClaw's multi‑agent architecture—featuring persistent, sub‑ and ACP agents, isolated workspaces, and cost‑aware model selection—enables parallel role‑focused collaboration, scalability, and significant efficiency gains.

AI CollaborationAgent ArchitectureCost Optimization
0 likes · 14 min read
Building an AI Dream Team with OpenClaw: A Hands‑On Multi‑Agent Guide
macrozheng
macrozheng
Mar 30, 2026 · Operations

How OpenClaw Turns a Single Message into a Full Agent Execution Pipeline

This article walks through every step of OpenClaw's processing chain—from protocol adaptation and de‑duplication, through routing, session‑key generation, lane management, context assembly, skill injection, memory handling, and multi‑agent collaboration—showing how a plain user message becomes a fully governed, executable task.

Context managementMessage RoutingMulti-Agent
0 likes · 28 min read
How OpenClaw Turns a Single Message into a Full Agent Execution Pipeline
AI2ML AI to Machine Learning
AI2ML AI to Machine Learning
Mar 28, 2026 · Artificial Intelligence

OpenClaw FAQ: 40 Technical Questions Answered

This comprehensive FAQ walks through 40 technical questions about OpenClaw, covering its innovations, architecture, multi‑agent collaboration, memory and context handling, security risks, token‑saving strategies, real‑world use cases, comparisons with other agents, and competitive landscape.

AI automationAgent ArchitectureMemory Management
0 likes · 25 min read
OpenClaw FAQ: 40 Technical Questions Answered
Wu Shixiong's Large Model Academy
Wu Shixiong's Large Model Academy
Mar 28, 2026 · Artificial Intelligence

Mastering Multi‑Agent Systems: Design, Parallel Execution, and Interview Strategies

This article dissects the shortcomings of single‑agent LLM pipelines, introduces the Supervisor‑based Multi‑Agent architecture with LangGraph, demonstrates parallel task execution, robust error handling, and result merging, and provides concrete interview guidance backed by real performance data.

AI ArchitectureError HandlingLLM
0 likes · 19 min read
Mastering Multi‑Agent Systems: Design, Parallel Execution, and Interview Strategies
SpringMeng
SpringMeng
Mar 26, 2026 · Artificial Intelligence

Building a Dify‑Powered Multi‑Agent RAG AI Service with Chinese Large Models

After the New Year the author landed several AI contracts, delivering a six‑week knowledge‑base Q&A system and a two‑month AI customer‑service platform built with Dify, multi‑Agent workflows, RAG, and domestic large language models, cutting staff from fifteen to two and boosting development efficiency twofold.

AI Customer ServiceChinese LLMDify
0 likes · 7 min read
Building a Dify‑Powered Multi‑Agent RAG AI Service with Chinese Large Models
AI Engineer Programming
AI Engineer Programming
Mar 25, 2026 · Artificial Intelligence

What Is an AI Agent? Definition, Core Capabilities, and Architecture

The article explains AI agents as autonomous systems that perceive environments, plan, use tools, iterate through action loops, and self‑reflect, contrasting them with traditional chatbots and workflows, and outlines their core abilities, memory types, tool‑use mechanisms, and single‑ versus multi‑agent architectures.

AI AgentMemoryMulti-Agent
0 likes · 8 min read
What Is an AI Agent? Definition, Core Capabilities, and Architecture
Geek Labs
Geek Labs
Mar 25, 2026 · Artificial Intelligence

4 Must‑Try Claude Code Projects on GitHub for Coding, Learning, and Startup Automation

This article reviews four high‑star GitHub projects built for Claude Code—codebase‑to‑course, claude‑peers‑mcp, a lean‑startup skill pack, and OpenGauss—detailing the problems they address, key features, architecture, and simple installation commands to turn codebases into interactive courses, enable multi‑instance collaboration, guide minimalist entrepreneurship, and orchestrate Lean 4 formal proofs.

AI toolingClaude CodeLean 4
0 likes · 8 min read
4 Must‑Try Claude Code Projects on GitHub for Coding, Learning, and Startup Automation
AI Engineering
AI Engineering
Mar 25, 2026 · Artificial Intelligence

Is “Harness Engineering” Just Rebranded Engineering Common Sense?

The article examines the hype around “harness engineering” in LLM workflows, showing through SGLang’s multi‑agent experience that the approach merely repackages established software‑engineering principles such as separation of concerns, docs‑as‑code, and structured routing, and discusses its limits and future implications.

Harness EngineeringLLMMulti-Agent
0 likes · 8 min read
Is “Harness Engineering” Just Rebranded Engineering Common Sense?
ShiZhen AI
ShiZhen AI
Mar 24, 2026 · Artificial Intelligence

How Anthropic’s Multi‑Agent Harness Keeps Claude Running for Six Hours

Anthropic’s engineering blog details a multi‑agent harness that splits generation and evaluation tasks, tackles Claude’s context‑anxiety and self‑assessment issues, and demonstrates through front‑end design and full‑stack app experiments how the system can run continuously for hours with higher quality output.

AIAgent HarnessAnthropic
0 likes · 13 min read
How Anthropic’s Multi‑Agent Harness Keeps Claude Running for Six Hours
Geek Labs
Geek Labs
Mar 24, 2026 · Industry Insights

9 Must‑See GitHub Projects: MacBook‑Run LLM, WeChat AI, Multi‑Agent Collaboration and More

This article reviews nine standout GitHub open‑source projects, covering a C/Metal LLM engine for MacBooks, a Claude Code commercial‑analysis skill, multi‑agent communication tools, web‑enabled AI, autonomous research automation, WeChat AI integration, a minimalist terminal, a Codex console, and a lightweight WARP proxy.

AIDockerGitHub
0 likes · 10 min read
9 Must‑See GitHub Projects: MacBook‑Run LLM, WeChat AI, Multi‑Agent Collaboration and More
AI Architecture Path
AI Architecture Path
Mar 23, 2026 · Artificial Intelligence

Eliminate AI Context Corruption: Boost Coding Efficiency with GSD

The article introduces GSD, an open‑source, MIT‑licensed system that tackles AI‑driven coding’s “context corruption” problem by providing independent context windows, multi‑agent orchestration, atomic Git commits, and a six‑step workflow, enabling developers to use Claude Code and other AI tools more efficiently across projects of various sizes.

AI CodingContext managementGit
0 likes · 10 min read
Eliminate AI Context Corruption: Boost Coding Efficiency with GSD
AI Architecture Hub
AI Architecture Hub
Mar 20, 2026 · Artificial Intelligence

Master OpenClaw: 5‑Layer Architecture & Practical Troubleshooting Guide

This article breaks down OpenClaw’s five‑layer runtime—channel, account, agent, session, and memory—explaining common “mystical” issues, offering concrete diagnostics, configuration tips, and step‑by‑step commands so developers can quickly identify why a bot doesn’t reply, loses context, or forgets prior messages.

AIMulti-AgentOpenClaw
0 likes · 11 min read
Master OpenClaw: 5‑Layer Architecture & Practical Troubleshooting Guide
AgentGuide
AgentGuide
Mar 19, 2026 · Artificial Intelligence

What Exactly Is an AI Agent? Complete Interview Guide

This article breaks down the concept of AI agents for interview preparation, covering their definition, core components like planning, memory, and tool use, differences from plain LLM chats, real‑world challenges, typical use cases, detailed component analysis, and a runnable pseudo‑code example.

AI AgentLLMMemory
0 likes · 9 min read
What Exactly Is an AI Agent? Complete Interview Guide
SuanNi
SuanNi
Mar 18, 2026 · Artificial Intelligence

How the A2A Protocol Powers Multi‑Agent Collaboration for Large Language Models

This article explains the A2A (Agent‑to‑Agent) protocol, its core concepts such as discovery, task delegation, context sharing and capability delegation, and demonstrates how it extends single‑agent MCP architectures to enable scalable, secure cooperation among specialized AI agents in complex workflows.

A2AAIContext Engineering
0 likes · 10 min read
How the A2A Protocol Powers Multi‑Agent Collaboration for Large Language Models
Machine Learning Algorithms & Natural Language Processing
Machine Learning Algorithms & Natural Language Processing
Mar 17, 2026 · Artificial Intelligence

From Lists to Decision Reports: The Deep Research Framework for Recommender Systems

The paper introduces Deep Research for Recommender Systems, a multi‑agent framework called RecPilot that replaces traditional list‑based recommendations with AI‑driven exploration, trajectory simulation, and structured decision‑support reports, and demonstrates its superiority on TMALL data through extensive trajectory and report‑generation evaluations.

Deep ResearchLLMMulti-Agent
0 likes · 10 min read
From Lists to Decision Reports: The Deep Research Framework for Recommender Systems
AI Engineering
AI Engineering
Mar 17, 2026 · Artificial Intelligence

OpenMAIC: One-Click AI-Powered Interactive Classroom with Video, PPT, and Editing

OpenMAIC, an open‑source multi‑agent platform from Tsinghua, lets users upload a PDF or topic and automatically creates a full virtual classroom—including AI professor, AI students, slides, quizzes, and a whiteboard for step‑by‑step problem solving—using LangGraph orchestration and support for major LLMs.

AI educationGeminiLangGraph
0 likes · 3 min read
OpenMAIC: One-Click AI-Powered Interactive Classroom with Video, PPT, and Editing
Frontend AI Walk
Frontend AI Walk
Mar 17, 2026 · Artificial Intelligence

Harness Engineering 101: Orchestrating AI Agents for 10× Productivity

This guide introduces Harness Engineering—a paradigm that shifts developers from merely using AI to commanding a team of AI agents—explaining its definition, technical foundations, workflow, real‑world examples, and why it can deliver ten‑fold efficiency gains.

AI orchestrationEngineeringMulti-Agent
0 likes · 19 min read
Harness Engineering 101: Orchestrating AI Agents for 10× Productivity
AI Architecture Path
AI Architecture Path
Mar 16, 2026 · Artificial Intelligence

How MiroFish Turns Documents into Parallel AI Worlds for Future Simulation

MiroFish is an open‑source multi‑agent platform that automatically builds high‑fidelity digital societies from any text, enabling realistic opinion, policy, literary, and crisis simulations with a five‑step GraphRAG workflow, Docker or source deployment, and detailed reporting tools.

AI simulationGraphRAGMulti-Agent
0 likes · 12 min read
How MiroFish Turns Documents into Parallel AI Worlds for Future Simulation
AI Explorer
AI Explorer
Mar 14, 2026 · Artificial Intelligence

Build a Claude‑Code‑Level AI Agent in 12 Incremental Lessons

This open‑source tutorial walks developers through twelve progressive lessons, expanding a minimal 84‑line agent to a full‑featured 694‑line Claude‑Code‑style AI system that covers tool calls, sub‑agents, context compression, and multi‑agent collaboration.

AI AgentAgent LoopClaude Code
0 likes · 9 min read
Build a Claude‑Code‑Level AI Agent in 12 Incremental Lessons
Node.js Tech Stack
Node.js Tech Stack
Mar 13, 2026 · Artificial Intelligence

Claude’s New AI Code Review: Up to $25 per PR – What It Means for Your Repo

Claude’s newly launched AI‑powered code review uses multiple parallel agents to automatically scan pull requests, flagging issues with an internal consistency check that reduces false positives to under 1 %, while Anthropic reports detection rates of 84 % for large PRs and 31 % for small ones, though each review costs $15–25.

AI code reviewClaudeMulti-Agent
0 likes · 9 min read
Claude’s New AI Code Review: Up to $25 per PR – What It Means for Your Repo
Java Tech Enthusiast
Java Tech Enthusiast
Mar 10, 2026 · Artificial Intelligence

Mastering AI Agent Paradigms: ReAct, Plan‑and‑Execute, Reflection & Multi‑Agent Workflows

This guide explains the core engineering paradigms behind AI agents—including ReAct, Plan‑and‑Execute, Reflection, Multi‑Agent systems, A2A communication, and Agentic Workflows—detailing their concepts, advantages, implementation components, and a concrete troubleshooting example with step‑by‑step code snippets.

A2AAI AgentMulti-Agent
0 likes · 18 min read
Mastering AI Agent Paradigms: ReAct, Plan‑and‑Execute, Reflection & Multi‑Agent Workflows
Tencent Technical Engineering
Tencent Technical Engineering
Mar 9, 2026 · Artificial Intelligence

How Does OpenClaw Power Multi‑Agent AI? A Deep Dive into Architecture, Deployment, and Risks

This article explains OpenClaw’s core framework, multi‑agent communication mechanisms, deployment options on cloud or local machines, hardware recommendations, IM tool selection, session and memory management, skill handling, version control, and practical use cases while highlighting important security considerations.

DeploymentLLMMulti-Agent
0 likes · 26 min read
How Does OpenClaw Power Multi‑Agent AI? A Deep Dive into Architecture, Deployment, and Risks
AI Architecture Hub
AI Architecture Hub
Mar 7, 2026 · Artificial Intelligence

How to Build a Scalable Multi‑Agent System with OpenClaw: From Single Agent to Secure, Isolated Teams

This guide explains why a single OpenClaw agent quickly hits limits, describes the internal isolation units of an agent, shows how to detect when to split agents, and provides step‑by‑step instructions for creating agents, configuring routing, applying three levels of isolation, and performing pre‑deployment security checks.

AI workflowAgent IsolationDocker sandbox
0 likes · 19 min read
How to Build a Scalable Multi‑Agent System with OpenClaw: From Single Agent to Secure, Isolated Teams
Frontend AI Walk
Frontend AI Walk
Mar 7, 2026 · Artificial Intelligence

12 Advanced OpenClaw Configurations to Train Your AI Like an Employee

This guide walks you through twelve concrete configuration techniques—defining the AI's soul, identity, user profile, multi‑agent roles, toolset, memory, error logging, permissions, skills, parallel instances, security, and daily training—to transform OpenClaw from a static tool into a continuously evolving, employee‑like assistant.

AI AssistantConfigurationMulti-Agent
0 likes · 15 min read
12 Advanced OpenClaw Configurations to Train Your AI Like an Employee
Java Web Project
Java Web Project
Mar 7, 2026 · Artificial Intelligence

Why AgentScope Java Beats Python for Multi‑Agent AI Development

AgentScope Java, Alibaba's open‑source multi‑agent framework, lets Java developers build autonomous assistants and collaborative agents with built‑in ReAct reasoning, RAG, memory, and enterprise‑grade integrations, offering a compelling alternative to Python‑centric AI stacks and Spring AI Alibaba.

AIAgentScopeFramework
0 likes · 10 min read
Why AgentScope Java Beats Python for Multi‑Agent AI Development
Architecture Digest
Architecture Digest
Mar 6, 2026 · Artificial Intelligence

AgentScope Java: Unlock Multi‑Agent AI Development Without Leaving Java

This article introduces AgentScope Java, a multi‑agent development framework that lets Java developers build intelligent assistants and collaborative agents with built‑in reasoning, tool use, memory, RAG, and Spring Boot integration, providing production‑grade performance and easy setup.

AI FrameworkAgentScopeMulti-Agent
0 likes · 9 min read
AgentScope Java: Unlock Multi‑Agent AI Development Without Leaving Java
Architect
Architect
Mar 5, 2026 · Artificial Intelligence

How to Turn a Single OpenClaw Agent into a Multi‑Agent Team: A Step‑by‑Step Guide

This article walks you through the complete process of converting a single‑agent OpenClaw deployment into a multi‑agent architecture, covering agent isolation resources, when to split, creating agents, routing rules, DM safety, sandbox options, multi‑gateway setups, remote access, hot‑reload configuration, and a pre‑deployment checklist.

Agent RoutingConfigurationMulti-Agent
0 likes · 23 min read
How to Turn a Single OpenClaw Agent into a Multi‑Agent Team: A Step‑by‑Step Guide
Frontend AI Walk
Frontend AI Walk
Mar 4, 2026 · Operations

Choosing Between MaxClaw and Self‑Hosted OpenClaw: A Primary‑Plus‑Secondary Strategy for Small Teams

The article proposes a hybrid solution for individual developers and small teams where MaxClaw handles everyday multi‑agent tasks while a self‑hosted OpenClaw instance is used for model experiments and high‑privilege operations, covering architecture, deployment steps, cost tactics, and security best practices.

Cost OptimizationDeploymentMaxClaw
0 likes · 12 min read
Choosing Between MaxClaw and Self‑Hosted OpenClaw: A Primary‑Plus‑Secondary Strategy for Small Teams
ShiZhen AI
ShiZhen AI
Mar 3, 2026 · Artificial Intelligence

How OpenAkita Makes Three AIs Collaborate Automatically

OpenAkita is an open‑source multi‑Agent AI assistant that automatically splits tasks among specialized agents, offers 89 built‑in tools across 16 categories, supports 30+ large models and six IM platforms, provides a zero‑CLI graphical setup, and includes a three‑layer memory system with self‑evolving capabilities.

AI AssistantMulti-AgentOpenAkita
0 likes · 9 min read
How OpenAkita Makes Three AIs Collaborate Automatically
AI Tech Publishing
AI Tech Publishing
Feb 27, 2026 · Artificial Intelligence

Step‑by‑Step Guide to Building OpenClaw: A Persistent AI Assistant with Sessions, Tools, and Multi‑Agent Support

This tutorial walks through constructing OpenClaw from scratch, covering persistent JSONL sessions, SOUL.md persona files, tool definitions and an agent loop, permission checks, gateway architecture, context compression, long‑term memory, command queuing, scheduled heartbeats, and multi‑agent routing, all with concrete Python code examples.

AI AgentsLLMMulti-Agent
0 likes · 38 min read
Step‑by‑Step Guide to Building OpenClaw: A Persistent AI Assistant with Sessions, Tools, and Multi‑Agent Support
DataFunSummit
DataFunSummit
Feb 26, 2026 · Artificial Intelligence

How Alibaba Cloud’s Aivis Redefines AI‑Powered Service Agents with Multi‑Agent Architecture

This article systematically explains the evolution of Alibaba Cloud’s intelligent service platform, focusing on the Aivis digital employee, its three‑layer Planner‑Reasoner‑Executor architecture, context‑engineering optimizations, multi‑agent workflow, and practical recommendations for building enterprise‑grade AI‑driven customer service solutions.

Cloud ServicesContext EngineeringMulti-Agent
0 likes · 24 min read
How Alibaba Cloud’s Aivis Redefines AI‑Powered Service Agents with Multi‑Agent Architecture
Shuge Unlimited
Shuge Unlimited
Feb 26, 2026 · Artificial Intelligence

Agent Teams vs Subagents: How Claude Code Evolves from Solo to Team Collaboration

Claude Agent Teams replaces the single‑agent Subagents model with direct peer‑to‑peer messaging, shared task lists, and self‑coordination, enabling parallel execution and collaborative problem solving while incurring higher token costs; the article explains the architecture, use cases, setup, best practices, and current limitations.

AIAgent TeamsClaude
0 likes · 19 min read
Agent Teams vs Subagents: How Claude Code Evolves from Solo to Team Collaboration
phodal
phodal
Feb 24, 2026 · Artificial Intelligence

How Routa Turns Multi‑Agent AI Coding into an Engineered Collaboration Framework

Routa is an engineering‑focused multi‑agent framework that separates tasks, state, events, and execution into controllable modules, enabling open‑ecosystem AI coding agents to collaborate through structured specifications, event‑driven coordination, and verifiable tool interfaces rather than fragile prompt stitching.

AI CollaborationAgent CoordinationEvent-driven
0 likes · 12 min read
How Routa Turns Multi‑Agent AI Coding into an Engineered Collaboration Framework
AI Tech Publishing
AI Tech Publishing
Feb 23, 2026 · Artificial Intelligence

Final Lesson: Build a Fully Working RSS News Brief Agent

In this final lesson of a nine‑day Agent engineering series, the author integrates the full Agent Loop, tools, MCP, skills, RAG, context handling, multi‑turn dialogue, and multi‑agent coordination to create a runnable RSS news‑briefing Agent that fetches feeds in parallel, filters content with LLMs, summarizes articles, and outputs a markdown report.

Agent CoordinationLLMMulti-Agent
0 likes · 12 min read
Final Lesson: Build a Fully Working RSS News Brief Agent
AI Tech Publishing
AI Tech Publishing
Feb 22, 2026 · Artificial Intelligence

Mastering Multi‑Agent Collaboration: Handoff Mode and Coordination

This lesson explains how to extend a single‑agent system with multi‑agent collaboration, covering context isolation, Handoff and Router patterns, flat coordinator architecture, code examples, task decomposition, and practical run‑time demos for building complex AI workflows.

AICoordinatorHandoff
0 likes · 20 min read
Mastering Multi‑Agent Collaboration: Handoff Mode and Coordination
PaperAgent
PaperAgent
Feb 12, 2026 · Artificial Intelligence

How GLM-5 Turns LLMs into System‑Architect Agents: A Deep Technical Review

An in‑depth analysis shows how GLM‑5 surpasses traditional code‑generation LLMs by autonomously designing, implementing, and debugging complex multi‑agent systems, from a fireworks HTML demo to a 35,000‑line TrustGraph refactor, highlighting its architecture, tool integration, and cost‑effective advantages.

AI CodingBackend DevelopmentLLM
0 likes · 9 min read
How GLM-5 Turns LLMs into System‑Architect Agents: A Deep Technical Review