Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions SPEC.md
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ Fields:
Fields:

- `max_concurrent_agents` (integer)
- Default: `10`
- Default: `5`
- Changes SHOULD be re-applied at runtime and affect subsequent dispatch decisions.
- `max_turns` (positive integer)
- Default: `20`
Expand Down Expand Up @@ -583,7 +583,7 @@ not require recognizing or validating extension fields unless that extension is
- `hooks.after_run`: shell script or null
- `hooks.before_remove`: shell script or null
- `hooks.timeout_ms`: integer, default `60000`
- `agent.max_concurrent_agents`: integer, default `10`
- `agent.max_concurrent_agents`: integer, default `5`
Comment thread
coderabbitai[bot] marked this conversation as resolved.
- `agent.max_turns`: integer, default `20`
- `agent.max_retry_backoff_ms`: integer, default `300000` (5m)
- `agent.max_concurrent_agents_by_state`: map of positive integers, default `{}`
Expand Down
2 changes: 1 addition & 1 deletion elixir/WORKFLOW.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ hooks:
before_remove: |
cd elixir && mise exec -- mix workspace.before_remove
agent:
max_concurrent_agents: 10
max_concurrent_agents: 5
max_turns: 20
codex:
command: codex --config shell_environment_policy.inherit=all --config model_reasoning_effort=xhigh --model gpt-5.3-codex app-server
Expand Down
2 changes: 1 addition & 1 deletion elixir/lib/symphony_elixir/config/schema.ex
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ defmodule SymphonyElixir.Config.Schema do

@primary_key false
embedded_schema do
field(:max_concurrent_agents, :integer, default: 10)
field(:max_concurrent_agents, :integer, default: 5)
field(:max_turns, :integer, default: 20)
field(:max_retry_backoff_ms, :integer, default: 300_000)
field(:max_concurrent_agents_by_state, :map, default: %{})
Expand Down
4 changes: 2 additions & 2 deletions elixir/lib/symphony_elixir/installer/workflow_profile.ex
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ defmodule SymphonyElixir.Installer.WorkflowProfile do
defp apply_profile_defaults(plan, "symphony-dev") do
plan
|> put_default(:terminal_states, @default_terminal_states)
|> put_default(:agent_max_concurrent_agents, 10)
|> put_default(:agent_max_concurrent_agents, 5)
|> put_default(:agent_max_turns, 20)
|> put_default(:human_review_state, @default_human_review_state)
|> put_default(:rework_state, @default_rework_state)
Expand All @@ -77,7 +77,7 @@ defmodule SymphonyElixir.Installer.WorkflowProfile do

defp apply_profile_defaults(plan, _profile) do
plan
|> put_default(:agent_max_concurrent_agents, 10)
|> put_default(:agent_max_concurrent_agents, 5)
|> put_default(:agent_max_turns, 20)
end

Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion elixir/test/support/test_support.exs
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ defmodule SymphonyElixir.TestSupport do
workspace_root: Path.join(System.tmp_dir!(), "symphony_workspaces"),
worker_ssh_hosts: [],
worker_max_concurrent_agents_per_host: nil,
max_concurrent_agents: 10,
max_concurrent_agents: 5,
max_turns: 20,
max_retry_backoff_ms: 300_000,
max_concurrent_agents_by_state: %{},
Expand Down
1 change: 1 addition & 0 deletions elixir/test/symphony_elixir/installer_apply_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ defmodule SymphonyElixir.InstallerApplyTest do

assert workflow_artifact.content =~ "Forge provider: GitHub"
assert workflow_artifact.content =~ "Validation command before handoff: mix test"
assert workflow_artifact.content =~ "max_concurrent_agents: 5"
assert workflow_artifact.content =~ "networkAccess: true"
assert workflow_artifact.content =~ "Progress SLA"
assert workflow_artifact.content =~ "Create or refresh `## Codex Workpad` within 5 minutes"
Expand Down
2 changes: 1 addition & 1 deletion elixir/test/symphony_elixir/workspace_and_config_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -743,7 +743,7 @@ defmodule SymphonyElixir.WorkspaceAndConfigTest do
assert config.tracker.project_slug == nil
assert config.workspace.root == Path.join(System.tmp_dir!(), "symphony_workspaces")
assert config.worker.max_concurrent_agents_per_host == nil
assert config.agent.max_concurrent_agents == 10
assert config.agent.max_concurrent_agents == 5
assert config.codex.command == "codex app-server"

assert config.codex.approval_policy == "never"
Expand Down
Loading