← All concepts

agent architecture

179 articles · 15 co-occurring · 5 contradictions · 128 briefs

We design intelligent systems where specialized AI agents collaborate in parallel — not single-model solutions, but orchestrated workflows governed by explicit roles, validation gates, and human accou

@rohanpaul_ai: Agents can accumulate hundreds of skills without becoming proportionally bett...

Challenges the assumption that modular skill libraries improve agent performance. Suggests simpler context-preservation patterns outperform complex skill abstraction.

@omarsar0: Finally a good paper testing whether self-reflection loops are worth it.

Contradicts the ReAct/Reflexion pattern that is widely adopted. Shows the pattern doesn't deliver on its promise when tokens are honestly accounted for.

@dbreunig: Prompts are great for one-off requests and human-in-the-loop interfaces, but ...

[STRONG] "terrible for defining the behaviors of systems" — Article argues that prompts are inadequate for defining system behaviors at an architectural level, pointing to a fundamental limitation in relying on prompts for agent behavior specification.

12 AI Coding Emerging Trends That Will Dominate 2026 | by JIN | 𝐀𝐈 𝐦𝐨𝐧𝐤𝐬.𝐢𝐨 | Medium

Article implies agentic architecture is inherently superior without addressing the context management complexity that makes agents fragile. Real agents fail due to context degradation, not because the model isn't 'agentic enough'.

@colin_fraser: That this still happens is exactly why I think the "agent" model of LLMs is w...

[INFERRED] "An agent wouldn't do this. An agent would relentlessly pursue its task until it's done correctly. You know what would do this? A fancy autocomplete." — Article challenges the framing of LLMs as agents, arguing they behave more like autocomplete systems that lack persistent task pursuit and correction mechanisms.

2026-W35
620
2026-W34
343
2026-W33
497
2026-W32
388
2026-W31
382
2026-W30
450
2026-W29
525
2026-W28
520
2026-W27
370
2026-W26
208
2026-W25
475
2026-W24
452

Remove the model from your architecture diagram. Everything left is probably part of the harness: the tools, data access, state store, sandbox, middleware, evaluators, retry policy and UI" — Provides

Agent with tool-use loop is explicitly discussed as alternative to RAG

This article examines how AI agents work, their current capabilities, and the infrastructure needed for reliable function" — Article provides direct technical analysis of how AI agents function and th

The core insight is a clean separation of concerns into three distinct layers, each with a different owner, lifecycle, and trust level. The power of this separation is that each layer evolves independ

An AI agent is a system built around a large language model (LLM) that can reason about tasks, use tools, maintain memory across interactions, and make decisions about how to proceed without following

[direct] "AI agent architecture is the structural framework that defines how an AI system gathers information, processes data, makes decisions, and executes tasks." — Provides foundational definition

MCP is the infrastructure layer that enables autonomous agents to act on the external world. Without it, agents are confined to reasoning-only mode.

an agent as a system using an LLM to decide the control flow of an application" — Article directly defines and structures LangChain agents as LLM-driven control flow systems, core architecture pattern

four key components are required: an agent core, a memory module, agent tools, and a planning module" — Article explicitly defines the foundational architectural components of LLM agent systems

LLM → agent → agent harness → coding harness" — Article explicitly describes the architectural layers of a coding agent, showing how components stack from LLM through harnesses.

We design intelligent systems where specialized AI agents collaborate in parallel — not single-model solutions, but orchestrated workflows governed by explicit roles, validation gates, and human accou

Modern agents run inside a harness that owns tools, context, and control flow." — Defines harness-based agent architecture pattern where harness manages tools, context, and control flow during trainin

For an agent that runs for fifty turns, calls a dozen tools, and reads thousands of tokens of intermediate output, the wording of the original instruction is a small fraction of what the model sees. T

The next generation of these tools is agent-based, operating with more autonomy and potentially without human oversight." — Article addresses the architectural shift toward autonomous AI agents and id

Chronicle 在本地运行沙盒化的后台智能体,持续捕获屏幕图像并生成记忆" — Chronicle exemplifies a sandboxed background agent architecture that continuously observes environment state (screen images) and synthesizes understanding (me

终端优先 —— 核心循环只有三个模块约 1000 行代码,无隐藏编排层" — Webwright extends traditional agent architecture by adopting a terminal-first, minimal-orchestration approach with only 3 core modules and ~1000 lines, eliminati

Isolating context - splitting it up to help an agent perform a task." — Introduces context isolation as an architectural pattern for agent design, adding a new dimension to how agents structure their

先让 Agent 完成几项真实任务(真实场景比合成测试更能暴露问题)。在LangFuse中打开对应trace,重点关注:"where it gets confused"" — Article provides concrete debugging methodology: running real tasks and analyzing where agent reasoning fails, d

A Headlong agent is never asleep. It keeps generating thoughts about whatever it decides is interesting, in a self-guided loop inspired by human inner monologue." — Headlong demonstrates a novel agent

harness 是马具——裸模型只会吐字,套上工具调用、agent loop、沙箱、记忆之后才能干活" — Article provides concrete definition of agent harness as composition of tool-calling, agent loop, sandbox, and memory

Real agent performance requires two distinct, synchronized disciplines working together: Context Engineering and Memory Engineering form a dual-loop cognitive architecture that gives LLMs persistent c

Contradicts the ReAct/Reflexion pattern that is widely adopted. Shows the pattern doesn't deliver on its promise when tokens are honestly accounted for.

An Agent must first understand its current task environment. This includes: parsing the user's natural language input, reading external data sources (databases, APIs, documents), and retrieving contex

MCP reduces the integration tax that makes multi-system automation fragile. Without MCP, connecting multiple agents to multiple systems creates a web of custom integrations." — Article articulates how

A well-designed agent can apply qualitative judgments, not just follow instructions." — Evidences that effective agent architectures require sophisticated reasoning capabilities beyond simple instruct

Our create_agent primitive in LangChain exposes the one of the simplest Harnesses for builders to extend, a ReAct loop with support for tools, middleware (hooks), and model choice. It's a great place

AI agents differ from traditional chatbots in one key way. They perform tasks, not just conversations." — Article identifies task execution as the defining architectural difference for AI agents, supp

The four strategies (write, select, compress, isolate) are architectural patterns for building production-grade agents that maintain coherence across long tasks

Proposes specific architectural pattern (autonomous compression vs. fixed-threshold) for agent decision-making

Claude Code to automatically switch from preloading MCP tools to search-based loading" — Exemplifies adaptive agent architecture where tool loading strategy adjusts dynamically based on context, showi

Build complete ReAct and MDP agent loops with real tool execution" — Covers both ReAct (Reasoning-Acting) and Markov Decision Process agent loops with practical tool execution implementation

Introducing our new research direction on Recursive Language Models. We are sharing our initial experiments showing the promise of RLMs." — RLMs represent a specific architectural innovation for agent

agentic support is new baseline for any SaaS" — Article asserts that agentic capabilities have become essential architectural requirement for SaaS platforms

Article explicitly contrasts Claude Code's agent-system design (better context chaining) against IDE extensions and CLI tools, showing agent architecture as superior for context preservation.

A decade of information retrieval and three years of agent harness engineering, poured into a local-first knowledge system" — napkin represents evolved thinking on agent harness engineering with novel

Agentic AI creates goal-driven autonomous agents that can observe their environment, plan actions, execute tasks, and maintain long-term memory. Unlike standard LLMs, which only respond to prompts, ag

Flue is a TypeScript framework for building the next generation of agents, powered by the @pidotdev agent harness. Last week, I teased: "What if React for Agents?" and yes, as you will see, the inspir

To speed things up and parallelize work, we built an always-running agent system" — Demonstrates scaling from manual sequential experiment execution to parallel distributed agent fleet running thousan

Frames memory/context as architectural requirements for multi-session agents, not optional features.

Most agents underperform because they lack context. This prompt forces you to see the gaps and fix them." — Provides evidence that systematic context gap identification is a key architectural pattern

Author's point about client-specific agents (hooks, commands, monitors, LSP) is fundamentally about architectural constraints on portability

Query agent pattern described (takes natural language, understands data structure, constructs queries, evaluates results, reformulates) is agent behavior—reasoning loop with feedback.

Demonstrates how context engineering principles shape agent framework design decisions

The article directly describes two distinct architectural patterns for organizing AI agents

Building a 'fully working AI Exam Builder' powered by Claude + MCP is agentic—Claude orchestrates decisions, delegates to tools, maintains reasoning thread.

building your own is quite simple and you'll be happy you did: any model you want (self-hosted if needed), fully customizable to your stack" — Hugging Face describes their Moon Bot implementation as a

Explains how agentic systems (Cursor, Claude Code) require standardized tool access layers. MCP is the infrastructure enabling autonomous agent action on external data.

React, Plan-and-Execute, smolagents are specific agent architectures analyzed; each implies different context structures

Understanding MCP vulnerability patterns is essential for designing safe agent-to-tool communication architectures. Shows why naive agent tool-calling can be dangerous.

query this concept
$ db.articles("agent-architecture")
$ db.cooccurrence("agent-architecture")
$ db.contradictions("agent-architecture")