![]() |
VOOZH | about |
Jun 29, 2026
"AI agent" covers everything from a chatbot with one tool to a fleet of orchestrated coding agents. This guide maps every major type โ reactive vs deliberative, ReAct vs plan-and-execute, coding vs research vs browser agents, single vs multi-agent โ and tells you which to build when.
Jun 27, 2026
Single agents hit walls. Multi-agent systems break through them โ but only if you architect them right. This guide covers every major orchestration pattern, state management, error handling, cost control, and which frameworks to use.
Jun 27, 2026
ReAct is not a framework feature โ it is a prompting pattern. Once you understand the Thought/Action/Observation loop you will see it everywhere: in LangChain agents, Claude Code, and every serious agentic system built in 2024 and beyond.
TL;DR: On June 22, 2026, Eric Xing, Mingkai Deng, and Jinyu Hou published Critique of Agent Model on arXiv (2606.23991). The paper draws a sharp line between agentic systems โ where competence lives in external scaffolding (workflows, tool APIs, permission hooks) โ and agentive systems โ where goal, identity, decision-making, self-regulation, and learning are internalized. It proposes GIC (Goal-Identity-Configurator) as a general-purpose architecture combining hierarchical goals, evolving identity, world-model simulation, learned self-regulation, and self-directed learning, with explicit attention to auditability and human oversight.
Every vendor ships an "agent" in 2026. Claude Code, Cursor, Codex, Copilot โ the label is everywhere. At the same time, headlines ask whether AI will develop machine agency against humans.
Critique of Agent Model cuts through both hype and panic with a simpler question: What is an agent? What constitutes agency?
The authors argue we need a precise boundary between automation (prescribed tasks, engineered loops) and agency (structures that let a system operate in the open world with genuine autonomy). That boundary matters for building capable systems and for evaluating what is worth fearing.
| Detail | Value |
|---|---|
| Paper | Critique of Agent Model |
| arXiv ID | 2606.23991 |
| Submitted | June 22, 2026 (v1) |
| Authors | Eric Xing, Mingkai Deng, Jinyu Hou |
| Subjects | cs.AI, cs.LG, cs.MA, cs.RO |
| Core terms | Agentic vs agentive, GIC architecture |
| Five dimensions | Goal, identity, decision-making, self-regulation, learning |
Most LLM products marketed as agents in 2026 are agentic, in the paper's vocabulary:
This is not semantic nitpicking. The paper claims genuine agency requires internalization across all five dimensions. A system that only looks autonomous because a developer wrapped it in a loop is still automation with good UX.
For practitioners, the mapping is immediate:
| What you use today | Paper classification | Where competence lives |
|---|---|---|
| Claude Code + hooks + bash | Agentic | Harness, settings.json, tool policies |
| Cursor + rules + MCP | Agentic | IDE orchestration + model |
| Goal command long runs | Agentic (strong) | Prescribed goal + external loop |
| Hypothetical GIC agent | Agentive (target) | Internal goals, identity, world model |
If you have shipped with agent skills and MCP, you are building agentic systems โ and that can be exactly the right engineering choice for production.
The paper analyzes architectures along five axes. Each must be internalized for agentive status, not delegated entirely to the environment.
How does the system represent and decompose objectives? Prescribed task lists and one-shot prompts are external goals. Hierarchical goal decomposition inside the agent โ with sub-goals that persist and revise โ is what GIC targets.
Related reading: Goal mode for long-running agents.
Who is the agent, and does that persist across sessions? Marketing personas and system prompts are shallow identity. Identity evolution โ stable self-model that updates from experience โ is the agentive bar.
Does the system choose actions from internal state, or only react to the next tool slot in a graph? Agentic stacks often hard-code decision topology. Agentive systems reason with simulative options before acting.
Stop rules, budget caps, and human approval gates are external regulation โ necessary for safety, but not the same as learned self-regulation inside the agent.
Fine-tuning pipelines and RAG updates happen outside the runtime loop. Self-directed learning from real and simulated experience โ without a human relabeling every step โ is the fifth internalized requirement.
The paper connects this framework to Descartes' grounding of agency in independent thought and to autonomous beings in science fiction โ not as fluff, but as intuition pumps for what "internal" means.
Building on the critique, the authors propose GIC as a blueprint for a general-purpose agent model:
GIC stack (conceptual)
โโโ Hierarchical goal decomposition
โโโ Identity evolution (persistent self-model)
โโโ Simulative reasoning โ separate world model
โโโ Learned self-regulation
โโโ Self-directed learning (real + simulated experience)
Simulative reasoning is a standout detail: GIC assumes a separately trained world model the agent uses to imagine outcomes before committing to actions โ closer to model-based RL than pure ReAct tool loops.
Self-directed learning spans both live environment interaction and simulation โ aligning with trends in world-model agents and self-improving harnesses, but pushing capability inside the agent rather than in the harness alone.
GIC is a research architecture, not a GitHub repo you can git clone today. Treat it as a specification for where agentive research may go, not a replacement for Claude Code tomorrow morning.
The paper does not tell you to stop using Claude Code. It tells you to name what you have:
Agentic systems can be excellent โ Most production value in 2026 comes from agentic stacks: clear tools, permission boundaries, observable hooks, and human-in-the-loop approval. That matches how sound and traffic-light notifications keep long runs safe.
"Agent" marketing oversells autonomy โ If every dimension is external, you have a sophisticated workflow engine, not an open-world autonomous agent. That is fine โ as long as security and compliance teams know the difference.
Agentive research raises the oversight bar โ More internal autonomy implies harder auditability. The paper explicitly discusses controllability and safety under human oversight โ the same concerns driving premortem skills and enterprise agent governance.
Harness engineering still matters โ Work like Self-Harness shows harness-only gains of 14โ21 points on Terminal-Bench 2.0. Xing et al. would classify that as optimizing agentic layers โ valuable, orthogonal to internalizing agency.
Existential "machine agency" fears assume agentive systems without oversight. The paper's closing emphasis is different: agentive systems with greater autonomy that remain under human oversight.
Practical implications:
For teams shipping today, the actionable takeaway is to document which of the five dimensions are external in your stack โ and which you are falsely attributing to the model.
| Pattern | Goal | Identity | Decision | Regulation | Learning | Paper label |
|---|---|---|---|---|---|---|
| Chatbot + RAG | External | External | External | External | External | Automation |
| ReAct tool loop | External | Prompt-only | Partial | External | External | Agentic |
| Claude Code + MCP + hooks | External | Session | Harness | Hooks + user | External | Agentic |
| Multi-agent orchestration | Shared external | Role prompts | Graph | Per-agent caps | External | Agentic |
| GIC (proposed) | Internal hierarchy | Evolving | Simulative WM | Learned | Self-directed | Agentive target |
The abstract states the problem plainly:
With the rise of Large Language Model (LLM) systems marketed as "coding agents", "AI co-scientists", and other "agentic" tools โฆ it has become essential to clarify where automation ends and agency begins.
And the core technical claim:
Genuine agency requires these structures to be internalized within the system itself rather than assembled through external scaffolding.
That single sentence is the paper's contribution to every 2026 architecture review.
Primary source: arXiv:2606.23991 โ Critique of Agent Model ยท DOI 10.48550/arXiv.2606.23991
Paper details, author list, and arXiv metadata accurate as of June 23, 2026. GIC is a proposed research architecture โ verify against the PDF before citing implementation claims in production docs.