惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Y
Y Combinator Blog
腾讯CDC
Recent Announcements
Recent Announcements
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Hugging Face - Blog
Hugging Face - Blog
H
Help Net Security
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Last Week in AI
Last Week in AI
博客园_首页
D
DataBreaches.Net
P
Proofpoint News Feed
云风的 BLOG
云风的 BLOG
V
Visual Studio Blog
月光博客
月光博客
Jina AI
Jina AI
Stack Overflow Blog
Stack Overflow Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 【当耐特】
Vercel News
Vercel News
WordPress大学
WordPress大学
J
Java Code Geeks
博客园 - 聂微东
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
U
Unit 42

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
Narrow by Design: The Case for Composable AI Teams
Ash Conway · 2026-05-01 · via Hacker News - Newest: "AI"

Originally published at https://openenvelope.org/writing/narrow-by-design

There is a temptation, when building with AI, to make agents as capable as possible. Give them access to everything. Write prompts that cover every edge case. Hope that the model figures out the rest. This feels like leverage — one agent, infinite surface area.

It is the wrong instinct. And the teams built this way tend to prove it quickly.

The agents that perform best are not the most capable ones. They are the most focused ones. The ones with a single, unambiguous job. This is not a quirk of current models — it is a structural property of how AI systems work, and it has real consequences for how AI teams should be designed.

Composable AI is not a new concept, but it is often described in abstract terms — modular components, interoperable systems, reusable pieces. The practical version is simpler: you build specialised agents that do one thing well, and you connect them into a structure that handles the complexity.

The insight is that a capable agent and a small team doing the same job are the same abstraction at different levels of resolution. A Support Lead agent and a support team with an L1 triage agent, an L2 technical agent, and a comms agent present the same interface to the outside world. The parent system — whatever is routing tasks to them — does not know or care which one it is talking to. The team version just performs better, because each component has one clear job.

This makes the agent abstraction fractal. Any agent in a hierarchy could, in theory, be expanded into a sub-team without changing anything upstream. The question is not whether to decompose — it is how far to go.

When an agent’s role is narrow, several things happen simultaneously:

Instructions become unambiguous. A prompt that covers one job function can be specific and precise. A prompt that covers many job functions has to hedge, qualify, and cover edge cases — and models respond to that ambiguity by hedging too.

Context gets smaller. A focused agent only needs to hold the context relevant to its job. A generalist agent carries everything and has to reason about what matters. Smaller, cleaner context produces more reliable outputs.

The input-output contract gets clear. When an agent knows exactly what it receives and exactly what it is expected to produce, the model can optimise for that path. When the contract is fuzzy, so is the output.

Together, these mean that narrowing an agent’s role is not just a design preference — it is a performance lever. The same underlying model, given a focused role, will consistently outperform the same model given a broad one.

This does not mean narrower is always better. There is a crossover point.

The gains from specialisation are real, but they operate on a curve. Once a role is narrow enough to be genuinely unambiguous — once there is no meaningful ambiguity left to resolve — splitting it further adds coordination overhead without adding focus. An agent that must wait on three upstream agents before it can act may produce worse end-to-end results than a slightly broader agent that handles the full task itself. Latency compounds. Error propagation between agents adds surface area. The seams between components become the weakness.

The right question is not “how narrow can we go?” but “where does a role become coherent?” A coherent role has a clear job function, a defined escalation path, and inputs and outputs that are specific enough that the agent can act without ambiguity. Below that level, you are decomposing a skill rather than a role — and that is where the performance curve flattens.

Designing that boundary well is a skill. The best AI teams are not the ones with the most agents. They are the ones where each agent’s role was thought through carefully enough that the decomposition reflects the actual structure of the work.

There is a structural question underneath all of this: if agents and teams are the same abstraction at different scales, where does the composition get managed?

The answer depends on what you mean by composition.

The execution layer. How agents wake up, how tasks route between them, how context passes across a conversation — this is a runtime concern. Something has to manage the event bus, the task handoffs, the agent lifecycles. It needs to be close to the metal: fast, stateful, and aware of what is happening right now.

The distribution layer. How teams are defined, packaged, discovered, and deployed — this is a design-time concern. A builder decides how many agents to include, what their roles are, how they escalate, which tools they need access to. That definition gets packaged and shipped to wherever it runs. The distribution layer does not need to know how the agents will coordinate at runtime — it just needs to produce a definition clean enough that the execution layer can do its job.

Conflating these two layers is a common mistake. Trying to build runtime orchestration into a distribution product, or trying to make a runtime aware of packaging concerns, creates systems that are hard to reason about and harder to evolve. The separation is not just architectural cleanliness — it is what allows each layer to improve independently.

Design to the role, not to the model. The unit of composition should be a coherent job function — the kind of role you would put on an org chart. Not a feature, not a skill, not a capability. A role. That is the level at which decomposition produces reliable performance gains without excessive coordination cost.

Escalation paths matter as much as prompts. A narrow agent is only as good as its ability to hand off work it cannot handle. The escalation structure — who passes to whom, under what conditions — is load-bearing. Get it wrong and the team fragments. Get it right and the team behaves like a coherent unit.

The boundary between layers should be explicit. Whatever manages orchestration at runtime should not need to understand how teams were packaged and distributed. Whatever manages distribution should not need to know how agents will coordinate when running. When those concerns bleed into each other, both get harder to build and maintain.

Narrow roles compound. A team of five focused agents, each with a well-designed role and a clear escalation path, will outperform a team of ten broadly-scoped agents trying to cover the same ground. The performance gains are not additive — they multiply, because each agent’s clarity reinforces the clarity of the agents it connects to.

Composable AI is sometimes talked about as a future state — something that will be possible once models are more capable, once tooling matures, once standards emerge. But the core principle is available right now, and it does not require any of those things.

The principle is just this: narrow roles, connected deliberately, with clear interfaces between them, outperform broad roles trying to cover the same ground. This is how good organisations work. It is how good software systems work. And it is how good AI teams work.

The teams worth building are not the ones with the most surface area. They are the ones where every agent knows exactly what its job is — and exactly when to hand it to someone else.

This is the design principle the Envelope Schema is built around. Narrow roles, explicit escalation paths, and declared input-output contracts — so the structure of the team is encoded up front, not improvised at runtime.

Discussion about this post

Ready for more?