abelworkflow 0.9.0 → 0.9.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/cli.mjs CHANGED
@@ -2354,7 +2354,8 @@ function buildCodexConfigContent(currentContent, {
2354
2354
  base_url: baseUrl,
2355
2355
  wire_api: "responses",
2356
2356
  temp_env_key: envKey,
2357
- requires_openai_auth: true
2357
+ requires_openai_auth: true,
2358
+ supports_websockets: true
2358
2359
  });
2359
2360
  return `${content.trim()}${lineEnding}`;
2360
2361
  }
@@ -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.5"
15
+ model = "gpt-5.6-sol"
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.5"
14
+ model = "gpt-5.6-sol"
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.5"
17
+ model = "gpt-5.6-sol"
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.5"
14
+ model = "gpt-5.6-sol"
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.5"
13
+ model = "gpt-5.6-sol"
14
14
  model_reasoning_effort = "high"
15
15
  sandbox_mode = "workspace-write"
16
16
 
@@ -5,11 +5,9 @@ preferred_auth_method = "apikey"
5
5
  approvals_reviewer = "guardian_subagent"
6
6
  approval_policy = "on-request"
7
7
  sandbox_mode = "workspace-write"
8
- model = "gpt-5.5"
8
+ model = "gpt-5.6-sol"
9
9
  model_reasoning_effort = "high"
10
10
  network_access = true
11
- supports_websockets = true
12
- requires_openai_auth = true
13
11
  developer_instructions = """
14
12
  Act as the default orchestrator for specialized subagents.
15
13
 
@@ -95,5 +93,4 @@ job_max_runtime_seconds = 2400
95
93
  multi_agent = true
96
94
  js_repl = true
97
95
  guardian_approval = true
98
- responses_websockets_v2 = true
99
96
  shell_snapshot = true
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "abelworkflow",
3
- "version": "0.9.0",
3
+ "version": "0.9.1",
4
4
  "description": "Install AbelWorkflow into ~/.agents and create Claude/Codex symlinks.",
5
5
  "type": "module",
6
6
  "scripts": {