Skip to content
Chad Brown
Chad Brown
  • The Context Window Is the Only Working Memory a Model Has

    A language model has no memory of you. It has no memory of the last thing it told you, no running notion of the task, no internal notebook that persists from one call to the next. What looks like memory is an illusion reconstructed on every request. The single place that illusion is assembled is the context window, and that window…

    Read More The Context Window Is the Only Working Memory a Model HasContinue

  • A Coordinator That Executes Stops Coordinating

    The defining mistake in multi-agent design is building an orchestrator that does work. It feels natural: the orchestrator is the smartest, most context-rich component in the system, so why not let it handle the hard parts itself and delegate only the scraps? Because the moment the coordinating agent starts executing, it stops being able to coordinate well. Its context fills with the…

    Read More A Coordinator That Executes Stops CoordinatingContinue

  • Decomposition Is the Skill That Decides Whether an Agent Is Reliable

    The reliability of an agentic system is mostly settled before the model runs a single step. It is settled in how the work was cut. Hand an agent a large, monolithic goal and it has to invent the structure the goal lacks: it has to decide on its own where one piece of the job ends and the next…

    Read More Decomposition Is the Skill That Decides Whether an Agent Is ReliableContinue

  • The Description, Not the Name, Decides Which Tool an Agent Calls

    When an agent reaches for the wrong tool, the instinct is to inspect the code: a broken function, a malformed schema, a name that should have been clearer. Almost none of that touched the decision. By the time any tool executes, the model has already settled on it, and it settled by reading natural language. The thing that actually drove the choice is the…

    Read More The Description, Not the Name, Decides Which Tool an Agent CallsContinue

  • Tool Use, Not Intelligence, Is What Makes a Model an Agent

    A language model, on its own, cannot do anything. It can produce text, and that is the entire extent of its reach. It cannot read a file, query a database, send a message, or check whether the claim it just made is true. The most capable model ever built, handed a goal it understands perfectly, can still only respond by writing words about it. The leap from…

    Read More Tool Use, Not Intelligence, Is What Makes a Model an AgentContinue

  • Every Agent Runs the Same Four-Phase Loop, Whether You Designed It or Not

    An agent is not a clever prompt or a powerful model. It is a loop. Strip away the framework, the tool catalog, and the system prompt, and what remains is a cycle that repeats: the model reads its situation, decides on one action, that action runs, and the result is folded back into what the model reads next time. Perceive, reason, act, observe, and then perceive again. This loop is…

    Read More Every Agent Runs the Same Four-Phase Loop, Whether You Designed It or NotContinue

  • A Chatbot, a Workflow, and an Agent Are Three Different Architectures

    Three words get used as if they were a single rising scale of sophistication: chatbot, workflow, agent. The implication is that a chatbot is a simple thing, a workflow is a more capable thing, and an agent is the advanced version of both. That framing is wrong, and the wrongness is expensive, because it leads teams to reach for the label that sounds most…

    Read More A Chatbot, a Workflow, and an Agent Are Three Different ArchitecturesContinue

  • Most Systems You’re Calling Agents Should Be Workflows

    The word agent has become the default aspiration. New systems are framed as agentic before anyone has asked whether they need to be, and “we built an agent” now carries a prestige that “we built a pipeline” does not. This is an expensive habit. For the large majority of production work, the correct architecture is the deterministic workflow, and the decision rests on a single question. Does the…

    Read More Most Systems You’re Calling Agents Should Be WorkflowsContinue

Page navigation

Previous PagePrevious 1 2
  • LinkedIn