@laitszkin/apollo-toolkit 2.4.0 → 2.4.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/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,13 @@ All notable changes to this repository are documented in this file.
|
|
|
4
4
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
|
+
## [v2.4.1] - 2026-03-19
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
- Tighten `codex-subagent-orchestration` so non-trivial tasks must use actual subagent tool calls when delegation is allowed, instead of stopping at prose-only delegation guidance.
|
|
11
|
+
- Require `codex-subagent-orchestration` to default to a parallel subagents workflow whenever two or more independent workstreams can run safely in parallel.
|
|
12
|
+
- Clarify runtime handoff and orchestration boundaries for delegated agents, including tool-rule, sandbox, write-scope, and isolated-review expectations.
|
|
13
|
+
|
|
7
14
|
## [v2.4.0] - 2026-03-19
|
|
8
15
|
|
|
9
16
|
### Added
|
|
@@ -15,8 +15,8 @@ description: Use for almost every non-trivial Codex task. Inspect existing custo
|
|
|
15
15
|
## Standards
|
|
16
16
|
|
|
17
17
|
- Evidence: Inspect the current task shape and the existing custom-agent catalog before creating or updating any agent.
|
|
18
|
-
- Execution: Use this skill for nearly every non-trivial task
|
|
19
|
-
- Quality: Keep each custom agent narrow, opinionated, and non-overlapping; prefer read-only sandboxes for explorers and reviewers; avoid parallel write conflicts.
|
|
18
|
+
- Execution: Use this skill for nearly every non-trivial task. When current tool rules allow delegation, the agent must actually launch one or more subagents instead of only describing delegation in prose. Treat a parallel subagents workflow as the default whenever two or more independent workstreams can run safely in parallel, use a single helper agent only when there is exactly one bounded sidecar job, and keep shared planning, conflict resolution, and final synthesis in the main agent.
|
|
19
|
+
- Quality: Keep each custom agent narrow, opinionated, and non-overlapping; prefer read-only sandboxes for explorers and reviewers; keep review contexts isolated from the implementation thread; avoid parallel write conflicts.
|
|
20
20
|
- Output: State which agents were reused or created, what each owned, whether they waited in parallel or were staged, and what remained with the main agent.
|
|
21
21
|
|
|
22
22
|
## Overview
|
|
@@ -54,7 +54,7 @@ Prefer `gpt-5.3-codex` first for agentic coding roles. Escalate to `gpt-5.4` whe
|
|
|
54
54
|
|
|
55
55
|
## When To Use
|
|
56
56
|
|
|
57
|
-
Use this skill by default unless the task is genuinely trivial, such as:
|
|
57
|
+
Use this skill by default unless the task is genuinely trivial or current tool rules disallow delegation, such as:
|
|
58
58
|
|
|
59
59
|
- a one-shot factual answer with no decomposition value
|
|
60
60
|
- a single obvious command or one-line edit
|
|
@@ -68,16 +68,20 @@ Subagents are most valuable for:
|
|
|
68
68
|
- browser reproduction and debugging
|
|
69
69
|
- parallel edits across unrelated files or modules
|
|
70
70
|
|
|
71
|
-
Keep the main agent in charge when the work is highly continuous, tightly coupled, or depends on a single evolving mental model. In those cases, let subagents provide bounded context, not final ownership.
|
|
71
|
+
Keep the main agent in charge when the work is highly continuous, tightly coupled, or depends on a single evolving mental model. In those cases, let subagents provide bounded context, not final ownership, and do not force parallel writers.
|
|
72
|
+
|
|
73
|
+
This skill is not satisfied by merely writing that Codex should delegate later. When parallelizable sidecar work exists and delegation is allowed, the default compliant shape is a parallel subagents workflow.
|
|
72
74
|
|
|
73
75
|
## Workflow
|
|
74
76
|
|
|
75
77
|
### 1) Triage the task first
|
|
76
78
|
|
|
77
79
|
- Decide whether the task is trivial, serial-but-complex, or parallelizable.
|
|
80
|
+
- If the task is non-trivial and delegation is allowed, you must delegate at least one bounded subtask to a subagent.
|
|
81
|
+
- If the task has two or more independent read/review/exploration tracks, you must use a parallel subagents workflow rather than a single helper agent or a staged suggestion-only plan.
|
|
78
82
|
- Use subagents for most non-trivial tasks, but do not force them into tiny or tightly coupled work.
|
|
79
83
|
- Prefer one writer plus supporting read-only agents when ownership would otherwise overlap.
|
|
80
|
-
-
|
|
84
|
+
- If tool rules require explicit user intent before delegation, confirm that gate first; once satisfied, launch the chosen subagents and do not stay in suggestion-only mode.
|
|
81
85
|
|
|
82
86
|
### 2) Inspect the current agent catalog
|
|
83
87
|
|
|
@@ -147,6 +151,7 @@ Whenever you prompt a subagent, include:
|
|
|
147
151
|
- the expected summary or output format
|
|
148
152
|
- the file or module ownership boundary
|
|
149
153
|
- the stop condition if the agent hits uncertainty or overlap
|
|
154
|
+
- the instruction to stay within current tool-rule limits for delegation, sandbox, and write scope
|
|
150
155
|
|
|
151
156
|
### 6) Decompose ownership before spawning
|
|
152
157
|
|
|
@@ -163,9 +168,11 @@ Avoid combining exploration, review, and editing into one reusable agent when th
|
|
|
163
168
|
|
|
164
169
|
### 7) Orchestrate the run
|
|
165
170
|
|
|
166
|
-
-
|
|
171
|
+
- Use actual subagent tool calls when delegation is allowed; do not stop at writing that Codex should spawn agents later.
|
|
172
|
+
- State exactly how to split the work before each launch.
|
|
167
173
|
- Say whether to wait for all agents before continuing or to stage them in sequence.
|
|
168
174
|
- Ask for concise returned summaries, not raw logs.
|
|
175
|
+
- Treat single-subagent delegation as the exception path, not the default orchestration pattern.
|
|
169
176
|
|
|
170
177
|
Preferred patterns:
|
|
171
178
|
|
|
@@ -176,6 +183,7 @@ Preferred patterns:
|
|
|
176
183
|
Practical default:
|
|
177
184
|
|
|
178
185
|
- spawn 2-4 agents for a complex task
|
|
186
|
+
- spawn at least 2 agents when the task clearly contains parallelizable investigation or review tracks
|
|
179
187
|
- keep within the current `agents.max_threads`
|
|
180
188
|
- keep nesting shallow; many Codex setups leave `agents.max_depth` at 1 unless configured otherwise
|
|
181
189
|
|