@laitszkin/apollo-toolkit 2.4.1 → 2.4.3

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,18 @@ All notable changes to this repository are documented in this file.
4
4
 
5
5
  ## [Unreleased]
6
6
 
7
+ ## [v2.4.3] - 2026-03-19
8
+
9
+ ### Changed
10
+ - Clarify `codex-subagent-orchestration` guidance so delegated custom-agent creation steps include the required context for agent-creation tooling.
11
+
12
+ ## [v2.4.2] - 2026-03-19
13
+
14
+ ### Changed
15
+ - Relax `codex-subagent-orchestration` so reusable custom agents no longer require repeated historical use before creation or persistence.
16
+ - Require agents to abstract task-specific delegation into the most general reusable role that still preserves clear ownership boundaries, such as `code_reviewer` before narrower one-off task agents.
17
+ - Clarify when domain-specific specialization such as `rust_reviewer` is warranted and when a generic reusable reviewer should be preferred.
18
+
7
19
  ## [v2.4.1] - 2026-03-19
8
20
 
9
21
  ### Changed
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: codex-subagent-orchestration
3
- description: Use for almost every non-trivial Codex task. Inspect existing custom agents under `~/.codex/agents`, reuse them when they already fit, create a new focused custom agent in the official Codex TOML format when needed, and coordinate parallel subagents for exploration, review, verification, or unrelated module work while keeping tightly coupled serial work in the main agent.
3
+ description: Use for almost every non-trivial Codex task. Conduct muti-agents workflow to better finish your jobs. Use this skill for better muti-agents orchestration. Inspect existing custom agents under `~/.codex/agents`, reuse them when they already fit, create a new focused custom agent in the official Codex TOML format when needed, and coordinate parallel subagents for exploration, review, verification, or unrelated module work while keeping tightly coupled serial work in the main agent.
4
4
  ---
5
5
 
6
6
  # Codex Subagent Orchestration
@@ -104,11 +104,19 @@ Reuse an existing custom agent when all of the following are true:
104
104
  - its tools, sandbox, and model profile are suitable
105
105
  - using it will not create role overlap with another active agent
106
106
 
107
- Create a new custom agent only when:
107
+ Create a new custom agent whenever the current task exposes a stable reusable role and:
108
108
 
109
109
  - no existing agent owns the job cleanly
110
- - the job is likely to recur on similar tasks
111
110
  - the responsibility can be described independently from the current one-off prompt
111
+ - the role can be named, bounded, and reused on future tasks even if this is its first appearance
112
+
113
+ Do not require repeated historical use before creating a reusable custom agent. Treat "reusable" as a property of role clarity and stable boundaries, not as proof that the exact same task has already repeated many times.
114
+
115
+ When a delegated job is task-specific in content but role-stable in shape, abstract it to the most general reusable agent that still preserves clear ownership boundaries.
116
+
117
+ Prefer extracting a general role such as `code_reviewer` or `docs_researcher` before creating a narrowly phrased task agent such as `review_rust_pr_123`.
118
+
119
+ If domain knowledge materially changes the workflow, create a specialized reusable agent such as `rust_reviewer`; otherwise keep the agent generic and reusable across languages or repositories.
112
120
 
113
121
  Do not create near-duplicates. Tighten or extend an existing agent when the gap is small and the responsibility remains coherent.
114
122
 
@@ -119,6 +127,7 @@ Do not create near-duplicates. Tighten or extend an existing agent when the gap
119
127
  - Match the filename to the `name` field unless there is a strong reason not to.
120
128
  - Keep `description` human-facing and routing-oriented: it should explain when Codex should use the agent.
121
129
  - Keep `developer_instructions` stable and role-specific; do not leak current task noise into reusable instructions.
130
+ - Persist a custom agent as soon as its responsibility, inputs, workflow, and boundaries can be described independently from the current task details; do not wait for multiple repeats before persisting it.
122
131
  - Set `model` to either `gpt-5.3-codex` or `gpt-5.4`.
123
132
  - Set `model_reasoning_effort` from actual task complexity, not from agent prestige or habit.
124
133
 
@@ -126,7 +135,7 @@ Naming rule for this skill:
126
135
 
127
136
  - choose a short English noun phrase
128
137
  - normalize it to snake_case
129
- - examples: `code_mapper`, `docs_researcher`, `browser_debugger`, `payments_reviewer`
138
+ - examples: `code_mapper`, `code_reviewer`, `docs_researcher`, `rust_reviewer`, `browser_debugger`
130
139
 
131
140
  ### 5) Use the fixed instruction format
132
141
 
@@ -202,6 +211,7 @@ If the task turns into one tightly coupled stream of work, stop delegating new e
202
211
  ### 9) Maintain the agent catalog after the task
203
212
 
204
213
  - Persist any new reusable custom agent to `~/.codex/agents/`.
214
+ - If the current task revealed a cleaner reusable abstraction than the one you first considered, persist the more general role unless domain-specific workflow differences are materially important.
205
215
  - If a newly created agent proved too broad, narrow its description and instructions before finishing.
206
216
  - If two agents overlap heavily, keep one and tighten the other instead of letting both drift.
207
217
  - Do not persist throwaway agents that are really just one-off prompts.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@laitszkin/apollo-toolkit",
3
- "version": "2.4.1",
3
+ "version": "2.4.3",
4
4
  "description": "Apollo Toolkit npm installer for managed skill linking across Codex, OpenClaw, and Trae.",
5
5
  "license": "MIT",
6
6
  "author": "LaiTszKin",