// writing · position essays

Essays on the Agentic Era

I studied intelligence from molecules to neurons to multi-agent systems. These essays are my position — the arguments, the evidence, and the engineering discipline behind betting on swarms. Opinion pieces, not research claims.

01 · THE THESISWhy I Bet on Swarms9 min read · Jan 2026 02 · THE SIGNATURE PIECEWhat Connectomics Taught Me About Multi-Agent Systems10 min read · Feb 2026 03 · THE CONTRARIAN TAKEEvaluation Is the Bottleneck, Not the Model9 min read · Mar 2026

01 · the thesis manifesto

Why I Bet on Swarms

By Behzat Aslanoğlu · January 12, 2026 · 9 min read

I'm not betting on a bigger brain. I'm betting on a smarter crowd. That's the wager that organizes everything I build now: intelligence is not a property of a single model — it emerges from structured interaction among many.

This isn't a metaphor I borrowed from a keynote. It's a pattern I've watched happen at three scales. At TÜBİTAK I simulated protein dynamics — the F876L mutation in the androgen receptor that flips a cancer drug from inhibitor to agonist — and saw how a single residue change propagates through a folded molecule. Then in connectomics, I built models that recover the brain's wiring from coarse scans — billions of sparsely connected specialists producing coherent thought. Now, as an LLM & Agentic AI Engineer, I'm building the same pattern at the level of software agents.

"The whole becomes smarter than any one of its parts — I watched it happen at the level of a folded protein, then at the level of a brain graph, and I'm building it now at the level of agents."

The failure mode of single agents

One agent is one bottleneck, one point of failure, one guess. It holds the whole context, makes the whole decision, and when it's wrong — it's wrong with total confidence. Scaling that means scaling a single failure mode. The industry pattern of "throw a bigger model at the loop" is exactly the dead end: nobody wins by scaling a single bottleneck.

What actually makes a swarm work

Swarms are an engineering discipline, not a vibe. The discipline is: decompose, delegate, verify, iterate — and publish the failures. The emergence everyone hypes is what you get when the coordination layer is boring and correct.

"A single agent is a loop with a purpose. A swarm is a loop with a nervous system."

So yes — I bet on swarms. Not because they're fashionable, but because resilience, scale, and collective reasoning are the only answers to the single-agent ceiling, and I've seen the pattern hold at every level of intelligence I've studied.

02 · the signature piece

What Connectomics Taught Me About Multi-Agent Systems

By Behzat Aslanoğlu · February 2, 2026 · 10 min read

The human brain is the most complex graph we know — and it is not one model. It is billions of tiny, half-informed agents that argue their way to an answer. Before I built agents, I built the systems that predict that wiring: super-resolution for connectomics, recovering high-resolution brain-connectivity matrices from coarse, noisy scans (released open-source as a CC0 Kaggle dataset). It taught me five design rules for multi-agent systems.

1 · Sparse connectivity is a feature, not a bug

The brain gets rich behavior from selective wiring — most neurons connect to a few thousand of their billions of neighbors. The lesson for agents: don't connect everything to everything. Route deliberately. A fully-connected agent graph is not intelligence; it's noise with extra latency.

2 · Super-resolution is constraint recovery, not guesswork

Given a coarse connectome, the model learns the anatomy and physics that govern real wiring, then infers the missing structure — the way the brain itself would. The lesson is the deepest rule of agent design: don't just fit the observed behavior — recover the system that generated it.

"Super-resolution taught me the deepest rule of agent design: don't just fit the observed behavior — recover the system that generated it."

3 · Specialization plus coordination

Connectomics is the study of roles — sensory, motor, executive — tightly coupled. Swarms need heterogeneous specialists, not a committee of clones. Division of labor is where efficiency comes from; coordination is where correctness comes from.

4 · No single point of failure

The brain stays robust to lesions through redundancy. Agent systems should degrade gracefully: when one specialist fails, the others re-route. A swarm without graceful degradation is just a monolith wearing a costume.

5 · Respect the physics of the system you're modeling

This is the through-line from molecular dynamics to connectomics to agents: every number makes sense only inside the system that produced it — a mutation inside a folded protein, a connection inside a connectome, a tool call inside a swarm.

"The brain doesn't run one model. It runs billions of tiny, half-informed agents that argue their way to an answer."

I built the system that predicts that wiring before I built the agents that imitate it. That's not a coincidence — it's the design manual.

03 · the contrarian take

Evaluation Is the Bottleneck, Not the Model

By Behzat Aslanoğlu · March 5, 2026 · 9 min read

The field fixates on the next model release. I think the real constraint on shipping reliable agents is embarrassingly unglamorous: knowing whether the agent actually did the job. Agents don't fail because the model is dumb — they fail because we can't tell a good completion from a hallucinated one.

In the agent systems I build and review, the failures are overwhelmingly structural — wrong commands, missing steps, logic errors — rarely "the model isn't smart enough." A tool call with the wrong arguments, a step the agent skipped, a plan it never verified: these are interface failures, not reasoning failures. And the only reliable way to catch them is a world you can check the agent against.

A loop with a purpose needs a verifier

A feedback loop is only as smart as its check. Building the verifier — the sandbox, the assertions, the world-model that can say "no, that didn't work" — is the engineering. The prompt is the easy part.

"A feedback loop is only as smart as its verifier. Build the check, or you're just making confident mistakes faster."

Evaluation is an environment problem, not a rubric problem

Real tasks need a world you can check against — a sandbox, a simulator, a game. Vibes don't scale. This is why I'm a believer in environment-first evaluation: if you can't re-run the world, you can't verify the agent.

Instrumentation is part of the design

Observability, traces, and failure taxonomies are evaluation infrastructure. Collect them from day one — retrofitting traces onto a shipped agent is archaeology, not engineering.

The honest win

A 35%-with-verification beats a 70%-unverified claim every time. Publish baselines. Publish failure modes. A reproducible failure is a research result; a happy-looking hallucination is a liability.

"The model is the easy part. Knowing whether the agent actually did the job is the hard part — and that's the bottleneck worth betting on."

Field notes, monthly

Build logs, failures, and frontier reading on agents and swarms. No noise.

Newsletter coming soon — via email or LinkedIn.