feat: inject concurrent agent count into persona system prompt#181
Draft
nextlevelshit wants to merge 1 commit intomainfrom
Draft
feat: inject concurrent agent count into persona system prompt#181nextlevelshit wants to merge 1 commit intomainfrom
nextlevelshit wants to merge 1 commit intomainfrom
Conversation
Add max_concurrent_agents field to pipeline step configuration that controls how many sub-agents a persona may spawn during execution. - Add MaxConcurrentAgents to Step struct (yaml: max_concurrent_agents) - Add MaxConcurrentAgents to AdapterRunConfig for adapter propagation - Add ValidateMaxConcurrentAgents bounds check (0-10, Claude Code cap) - Build concurrency section in CLAUDE.md when value > 1 - Wire executor → adapter propagation in runStepExecution - Add comprehensive tests: unit, integration, and propagation
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.
Summary
max_concurrent_agentsfield to pipeline step configuration with validation (1-10 range)AdapterRunConfigfor adapter-level awarenessCloses #112
Changes
internal/pipeline/types.go— AddedMaxConcurrentAgentsfield toStepstruct with YAML/JSON tagsinternal/pipeline/validation.go— Added validation for max_concurrent_agents range (1-10)internal/pipeline/validation_test.go— Table-driven tests for concurrency field validationinternal/pipeline/executor.go— Passes MaxConcurrentAgents to adapter run configinternal/adapter/adapter.go— AddedMaxConcurrentAgentstoAdapterRunConfiginternal/adapter/claude.go— Injects concurrency section into generated CLAUDE.md between contract compliance and restrictionsinternal/adapter/claude_test.go— Tests for prompt generation with and without concurrency hintsspecs/112-concurrent-agent-prompt/— Feature spec, plan, and task listTest Plan
max_concurrent_agents > 1go test ./...