AI FROM MY POV
ENع

Stop Making One AI Do Everything — Use Subagents Instead

TL;DRWhen one AI thread does everything, it fills up with junk and does your work serially. Instead, delegate a scoped task to a subagent — it works in its own clean context and reports back a result — and match a cheap fast model to grunt work, a strong one to real reasoning. Faster, cheaper, and your main thread stays focused.
Is a subagent a different AI model?

Not necessarily — it's a fresh instance of an AI with its own clean context, dispatched to do one scoped task. You can also tell it which model to use, which is where the cost/speed win comes from.

Do I need Claude Code for this, or does any AI work?

The pattern — hand off a scoped task, get a clean-context worker, review the result — works with any tool that supports it. Claude Code has it built in (the Agent/Task tool); that's what the examples here use.

How many subagents can I run at once?

As many as are genuinely independent. If task B needs task A's output, run them one after another. If they don't depend on each other — three separate research questions, say — fire them in parallel and read all three reports when they land.

Isn't this just... delegating to another chat?

Basically, yes — that's the whole trick. A subagent doesn't share your context, so it doesn't drag your main thread down with search results and file dumps. It only hands back the finished answer.

Share

Related