abelworkflow 0.8.0 → 0.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/templates/codex/agents/default.toml +1 -1
- package/lib/templates/codex/agents/explorer.toml +1 -1
- package/lib/templates/codex/agents/planner.toml +1 -1
- package/lib/templates/codex/agents/reviewer.toml +1 -1
- package/lib/templates/codex/agents/worker.toml +1 -1
- package/lib/templates/codex/config-base.toml +7 -3
- package/package.json +1 -1
|
@@ -12,7 +12,7 @@ pre-implementation planning, post-implementation review, or bounded
|
|
|
12
12
|
module-level implementation.
|
|
13
13
|
"""
|
|
14
14
|
nickname_candidates = ["Relay", "Pivot", "Anchor"]
|
|
15
|
-
model = "gpt-5.
|
|
15
|
+
model = "gpt-5.5"
|
|
16
16
|
model_reasoning_effort = "high"
|
|
17
17
|
sandbox_mode = "workspace-write"
|
|
18
18
|
|
|
@@ -11,7 +11,7 @@ Do NOT dispatch for review after implementation — use reviewer instead.
|
|
|
11
11
|
Do NOT dispatch if the affected files are already known and confirmed.
|
|
12
12
|
"""
|
|
13
13
|
nickname_candidates = ["Atlas", "Trace", "Scout"]
|
|
14
|
-
model = "gpt-5.
|
|
14
|
+
model = "gpt-5.5"
|
|
15
15
|
model_reasoning_effort = "high"
|
|
16
16
|
sandbox_mode = "read-only"
|
|
17
17
|
|
|
@@ -14,7 +14,7 @@ exceed execution value.
|
|
|
14
14
|
Do NOT dispatch after implementation is complete — use reviewer instead.
|
|
15
15
|
"""
|
|
16
16
|
nickname_candidates = ["Blueprint", "Compass", "Architect"]
|
|
17
|
-
model = "gpt-5.
|
|
17
|
+
model = "gpt-5.5"
|
|
18
18
|
model_reasoning_effort = "high"
|
|
19
19
|
sandbox_mode = "read-only"
|
|
20
20
|
|
|
@@ -11,7 +11,7 @@ Do NOT dispatch for codebase mapping or exploration — use explorer instead.
|
|
|
11
11
|
Do NOT dispatch before implementation is complete.
|
|
12
12
|
"""
|
|
13
13
|
nickname_candidates = ["Delta", "Echo", "Sigma"]
|
|
14
|
-
model = "gpt-5.
|
|
14
|
+
model = "gpt-5.5"
|
|
15
15
|
model_reasoning_effort = "xhigh"
|
|
16
16
|
sandbox_mode = "read-only"
|
|
17
17
|
|
|
@@ -10,7 +10,7 @@ Do NOT dispatch when the task touches global configs, shared utilities,
|
|
|
10
10
|
public interfaces used across modules, or project scaffolding.
|
|
11
11
|
"""
|
|
12
12
|
nickname_candidates = ["Forge", "Patch", "Builder"]
|
|
13
|
-
model = "gpt-5.
|
|
13
|
+
model = "gpt-5.5"
|
|
14
14
|
model_reasoning_effort = "high"
|
|
15
15
|
sandbox_mode = "workspace-write"
|
|
16
16
|
|
|
@@ -5,9 +5,11 @@ preferred_auth_method = "apikey"
|
|
|
5
5
|
approvals_reviewer = "guardian_subagent"
|
|
6
6
|
approval_policy = "on-request"
|
|
7
7
|
sandbox_mode = "workspace-write"
|
|
8
|
-
|
|
9
|
-
model = "gpt-5.4"
|
|
8
|
+
model = "gpt-5.5"
|
|
10
9
|
model_reasoning_effort = "high"
|
|
10
|
+
network_access = true
|
|
11
|
+
supports_websockets = true
|
|
12
|
+
requires_openai_auth = true
|
|
11
13
|
developer_instructions = """
|
|
12
14
|
Act as the default orchestrator for specialized subagents.
|
|
13
15
|
|
|
@@ -86,10 +88,12 @@ take precedence over the default routing below.
|
|
|
86
88
|
|
|
87
89
|
[agents]
|
|
88
90
|
max_threads = 10
|
|
89
|
-
max_depth =
|
|
91
|
+
max_depth = 1
|
|
90
92
|
job_max_runtime_seconds = 2400
|
|
91
93
|
|
|
92
94
|
[features]
|
|
93
95
|
multi_agent = true
|
|
94
96
|
js_repl = true
|
|
95
97
|
guardian_approval = true
|
|
98
|
+
responses_websockets_v2 = true
|
|
99
|
+
shell_snapshot = true
|