Using only slash commands? You're automating 20% of what Claude Code handles. Most engineers can't explain when to use Agents vs Tools vs Skills. This practical guide helps eliminate the confusion.
i prefer subagents for the exclusive purpose of keeping them tightly scoped. Increases the quality of work but the real effort is frontloaded in defining the agent, its outcomes, reward functions, tools etc
I’m guessing subagents also run some kind of loop (similar to master agent) but it doesn’t involve as many tool calls and has a simpler termination logic.
What are your thoughts on the cloning master agent pattern instead of using subagents?
i prefer subagents for the exclusive purpose of keeping them tightly scoped. Increases the quality of work but the real effort is frontloaded in defining the agent, its outcomes, reward functions, tools etc
I’m guessing subagents also run some kind of loop (similar to master agent) but it doesn’t involve as many tool calls and has a simpler termination logic.