This repository was archived by the owner on Jun 26, 2026. It is now read-only.
Custom specialist agents with GSD — what's the recommended integration pattern? #3682
Unanswered
ismaHenzel
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
I've been using GSD for a while and it's been great for long-running, structured development. But I'm hitting a gap when it comes to custom specialist agents.
My setup has custom agents like:
conventions, type hint rules, etc.
or a cloud agent with provider-specific tools).
The gsd-executor does the heavy lifting of plan execution, commits, summaries and state management — and I don't want to lose any of that. But for certain tasks (e.g. all .py
files in a task), I'd like the executor to delegate the actual implementation to the right specialist, then resume to handle the commit + SUMMARY.md as usual.
My current thinking is:
A few questions:
All reactions