goose subagents - show us your use case! #3864
Replies: 5 comments 1 reply
-
https://github.com/pc-style/goose (kinda) working team of subagents |
Beta Was this translation helpful? Give feedback.
-
Thank you for creating this discussion! Tagged a couple of folks from the open source community on Discord to chime in as well. <3 |
Beta Was this translation helpful? Give feedback.
-
(Mr Kips from Discord here) |
Beta Was this translation helpful? Give feedback.
-
An amazing use case found here in the Pulse MCP handbook: https://www.pulsemcp.com/building-agents-with-goose |
Beta Was this translation helpful? Give feedback.
-
https://github.com/towry/dots/blob/next/conf/llm/goose-recipes/frontend-master.yaml Sharing my frontend master workflow. ![]() ![]() ![]() ![]() |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hey everyone,
Have you ever considered supercharging your work? We've been introducing subagents to goose!
To prompt for it: ask goose to 'create dynamic tasks'
What are subagents good for?
1. Independent Memory Scopes
Subagents carry their own isolated context
Useful for: summarizing large documents, debugging logs without polluting parent context, testing hypotheses in parallel without memory overlap
2. Research + Aggregation
Without Subagents: Agent queries Stripe & Adyen sequentially, risk of getting lost, context collisions, timeout
With Subagents: Parent agent spawns 2 subagents, one fetches Stripe data, one fetches Adyen data, results merged upstream → faster + modular
3. Sequential Workflows / Checklists
Example: New Employee Onboarding
Step 1: Set up account
Step 2: Provision access
Step 3: Notify stakeholders
Each step handled by a subagent, supports retries, logs, progress tracking
See more in the docs here: https://block.github.io/goose/docs/experimental/subagents/
Already using subagents? Share your use case, we'd love to know how you are using it.
Beta Was this translation helpful? Give feedback.
All reactions