-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Open
Labels
bugSomething isn't workingSomething isn't workingenhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomershelp wantedExtra attention is neededExtra attention is needed
Description
Description
Users cannot save blog posts due to agent coordination issue. The export functionality exists but the wrong agent responds to save requests.
Steps to Reproduce
- Run
uv run adk run blogger_agent
- Complete full workflow (plan → write → social media)
- Ask "save this file" or "export this blog post"
- Observe: social_media_writer responds with "I can't save files directly"
Expected Behaviour
- Main agent should respond to save requests
- Should ask for filename
- Should use
save_blog_post_to_file
tool to save the blog post
Actual Behavior
- Social media writer responds incorrectly
- User gets "I can't save files" message
- No file is actually saved
Root Cause
- Sub-agents don't have access to
save_blog_post_to_file
tool - Main agent has the tool but doesn't intercept save requests
- Agent coordination issue in the workflow
Impact
- Users cannot export their blog posts
- Breaks the core workflow (Step 8 in README)
- Poor user experience
Solution
- Update main agent instructions to handle export requests
- Add proactive export offer after social media step
- Ensure main agent intercepts all save requests
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingenhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomershelp wantedExtra attention is neededExtra attention is needed