Replies: 1 comment
-
|
Hey @SoaresMG! Great question - I've dealt with similar orchestration challenges. Here are a few strategies that have worked well for me: 1. Make subagent responsibilities crystal clear 2. Add decision triggers
3. Test with edge cases
If one phrasing works better, you can guide users or refine your orchestration logic. 4. Keep orchestrator context lean 5. Explicit handoff pattern This makes the flow visible and you can catch when delegation is skipped. The token overhead is real, but I've found that a smaller, well-structured orchestration guide (200-300 tokens) works better than large config files. Focus on when to delegate rather than how the subagents work. Have you tried experimenting with different phrasing in your requests? Sometimes the orchestrator picks up on subtle cues we don't realize we're giving it. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi @davepoon and everyone else!
I have started using sub agents a few days ago and I actually created a few similar ones to those present in this project.
Have you faced issues where the lead orchestrator isn't calling consistently the subagents?
I mitigated this by creating a subagent specialised in configuring the lead orchestrator, it came up with a few files dedicated to orchestration in .claude, however it increases the token usage (bigger context) considerably, so I'm trying different approaches.
I know that giving a better context during prompt might have the lead orchestrator doing a better job, but I still find it lacking.
How are you dealing with it?
An example would be asking Claude to update documentation on X feature based on current changes and instead of calling the subagent dedicated to documentation, passing only the necessary context to it, the lead orchestrator tries to do it himself while only the subagent dedicated to documentation contains specific rules.
Beta Was this translation helpful? Give feedback.
All reactions