anomalyco / anomalyco/opencode
Independent Task subagents run sequentially with GPT-5.6-sol (OpenAI)
@neriousy is already working on this.
Since Aug 31, 2026.
- Dominant language
- TypeScript
- Stars
- 209k
- Forks
- 27.5k
- PR merge metrics
- PR metrics pending
Description
Description
When using gpt-5.6-sol (max variant) through the OpenAI provider as the main agent, three independent Task/subagent calls requested in the same turn run sequentially. Each task completes successfully; none is stuck or fails.
Actual: Subagent A finishes before B starts, and B finishes before C starts. Total duration is approximately A + B + C.
Expected: Independent subagents should start concurrently, with total duration close to max(A, B, C).
There is no custom Task/Subagent configuration. I reviewed #11865 and #37315; this report differs because no subagent is stuck or failing. This is a corrected resubmission of #46451.
Plugins
vision-bridge, read-pdf, anchored-standard, keyword-skills, append-question. None modifies Task/Subagent scheduling.
OpenCode version
1.18.25
Steps to reproduce
-
Configure
gpt-5.6-sol(max) from theOpenAIprovider as the main model. -
Start a session and give the main agent three independent tasks with no dependencies.
-
Use this prompt:
Delegate these three independent tasks to three separate subagents. Start all three in the same turn and run them concurrently. Do not wait for one task to finish before starting another.
-
Observe that B starts only after A finishes, and C starts only after B finishes.
Screenshot and/or share link
Previous auto-closed report: https://github.com/anomalyco/opencode/issues/46451
Operating System
Windows 11 Pro for Workstations 10.0.26200 (Build 26200)
Terminal
OpenCode TUI in PowerShell 7 (pwsh)
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Assessment
This issue has not been assessed yet.