In the AI era, the common mistake is not lack of capability. It is mistaking coordination for progress. One more
agent looks like one more unit of productivity. But if the critical path is still blurry, boundaries are still
vague, and responsibility is still diffuse, the system has only become busier, not more meaningful.
在 AI 时代,最常见的错误不是能力不足,而是把协调误认为进展。多一个 agent,看起来像多了一份生产力;但如果关键路径没有更清楚,
边界没有更明确,责任没有更集中,那么系统只是更忙,不是更有意义。
The most valuable thing about this skill is not that it teaches you how to split work. It forces you to answer a
harder question first: does this work deserve to be split at all?
这个 skill 最有价值的地方,不是它教你怎么拆,而是它先逼你回答一个更难的问题:这件事真的值得拆吗?
01 · Why I Built It01 · 为什么我会做它
I did not build this skill to join the multi-agent rush. I built it to reduce its noise.我做这个 skill,不是为了追赶多代理热潮,而是为了给热潮降噪。
token-efficient-subagent-decomposition starts from a simple observation. Many multi-agent systems
spend tokens, time, and attention in the least defensible places: repeated planning, overlapping exploration, long
handoffs, and too much synchronization. They show complexity. They do not reliably create progress.
That is why the skill does not begin with “how do I make more agents collaborate.” It begins with a counter-rule:
default to one agent. Only split when the side work is truly bounded and the benefit clearly exceeds coordination
cost.
所以这个 skill 不是从“怎样让更多 agent 一起工作”开始,而是从一条反直觉的规则开始:默认单代理。只有当 side work 的边界
足够清晰,而且它带来的收益能覆盖协调成本时,才值得拆出去。
02 · What It Actually Defends02 · 它真正防守的是什么
What it really protects is the critical path, not token thrift by itself.它真正防守的,是关键路径,而不是 token 本身。
The language of the skill is engineering-heavy, but what it defends is work order. The README keeps returning to
the same rule: keep the critical path local, delegate only tightly bounded side work, make handoffs compact, and
keep coordination low-friction.
这个 skill 的语言很工程化,但它背后守护的其实是工作秩序。README 里反复回到同一个判断逻辑:关键路径尽量留在本地,
只有边界清晰的 side work 才适合并行委派,交接必须紧凑,协调必须低开销。
Critical path关键路径
The main line of work should not be blocked by decomposition performed for spectacle.
主流程不能因为炫技式拆分而被卡住。
Bounded side work边界清楚的 side work
Subagents should only own tasks with clear responsibility, output, and reintegration paths.
子代理只接边界明确、责任清楚、结果可回收的任务。
Lean handoff精简交接
The handoff itself is already a tax, so the transfer should stay as compact as possible.
交接本身就是成本,所以交接越短越好。
The project even names the hidden price of decomposition: merge tax, blocked tax, decomposition score. That is a
serious move. It turns the glamorous question “can we split this” into the harder question “what extra burden did
we just create by splitting it.”
03 · Why This Belongs to Absurdism03 · 为什么它属于“荒诞主义”
Because the absurd appears when machinery grows while the question stays unresolved.因为真正的荒诞,是机器越复杂,问题却仍旧没有被说清。
Multi-agent orchestration makes this visible very quickly. You can add agents, plans, handoffs, and monitoring
until the system looks impressive, while the original issue remains underdefined. The contradiction is not that
nothing works. The contradiction is that more work can coexist with less understanding.
That is why I call it absurdism rather than nihilism. The problem is not meaning disappearing into a void. It is
the stubborn mismatch between expanding capability and unresolved orientation. The honest response is not hype. It
is lucid discipline.
04 · What the Repository Really Teaches04 · 这个仓库真正教的是什么
The repository looks like it teaches delegation. In reality it teaches restraint.这个 repo 看起来写的是 delegation,实际上写的是克制。
It does not hand you a flashy multi-agent framework. It gives you operational discipline: decide whether
delegation is necessary, design a bounded task, keep the handoff minimal, do not idle waiting, do not synchronize
for theater, do not repeat exploration that someone else already completed.
In a culture that increasingly rewards “more” as an answer to every problem, that restraint matters. It preserves
continuity of context. It preserves sharp ownership. It preserves the density of attention that serious work
requires.
If you want to inspect the project directly如果你想直接看项目本体
This essay is grounded in the GitHub project
token-efficient-subagent-decomposition. It is a Codex skill whose core claim is straightforward: default to one agent, and only delegate when the side
work is genuinely bounded and worth the coordination cost.
What I want to preserve is not an efficiency myth. It is the density of judgment.我想保住的,不是效率神话,而是判断的密度。
For that reason, this skill does not really belong to the story of “stronger orchestration.” It belongs to a
different discipline: subtract the noise that never deserved to happen, and let the meaningful decision return
to the front.