Fix and enrich the orchestrator coordinator system prompt so it matches the current CLI and teaches harness selection + command discovery#2361
Open
VenkataSakethDakuri wants to merge 2 commits into
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fix and enrich the orchestrator coordinator system prompt
Change the orchestrator coordinator system prompt so it matches the current CLI and teaches harness selection plus command discovery.
Files changed
backend/internal/session_manager/manager.go(orchestratorPrompt)backend/internal/session_manager/manager_test.go(TestSpawnOrchestrator_UsesCoordinatorPrompt)What changed in the prompt
Added the now-required
--nameflag to the spawn example:Added a note that
--projectand--nameare both required.Added guidance for choosing a worker's agent:
--agent <name>(an alias for--harness), for example--agent codexor--agent claude-code.Clarified that if
--agentis omitted, the project's default worker agent is used.Added a discovery pointer to run
ao spawn --helpfor the full list.Added a broader discovery pointer to run
ao --helpandao <command> --helpfor other commands.What changed in the test
--name.--agent <name>ao spawn --helpao --helpWhy
--namebecame required in#2302on2026-06-30, but the prompt still used the old command.2because--nameis required.--harness/--agentwas never mentioned, so requests to spawn a specific harness, such ascodex, silently fell back to the project's default worker agent,claude-code.