agent-conveyor 0.1.20 → 0.1.21
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/README.md
CHANGED
|
@@ -168,8 +168,8 @@ conveyor plugin-status
|
|
|
168
168
|
|
|
169
169
|
The per-project default ledger for operator sessions is
|
|
170
170
|
`.codex-workers/workerctl.db`. The initial included skills are
|
|
171
|
-
`conveyor-create-pair`, `conveyor-create-worker-set`,
|
|
172
|
-
`conveyor-check-status`.
|
|
171
|
+
`conveyor-create-pair`, `conveyor-create-worker-set`,
|
|
172
|
+
`conveyor-check-status`, and `conveyor-whats-next-nudger`.
|
|
173
173
|
|
|
174
174
|
After install, the intended Codex app entry point is natural language. Open a
|
|
175
175
|
new Codex app session in the target repo and say:
|
|
@@ -204,6 +204,9 @@ print `CONVEYOR POLL`, `CONVEYOR RECEIVED`, `WORK`, `CONVEYOR SEND`, and
|
|
|
204
204
|
audit proof, not a replacement for the live session story. Idle polls may be a
|
|
205
205
|
single `CONVEYOR IDLE` line.
|
|
206
206
|
|
|
207
|
+
For bounded follow-up passes after the first worker result, use
|
|
208
|
+
`Use the conveyor-whats-next-nudger skill`.
|
|
209
|
+
|
|
207
210
|
Dispatch is core infrastructure for supervised worker/manager pairs. The
|
|
208
211
|
`pair` workflow starts a detached Dispatch watch process by default so worker
|
|
209
212
|
completion is routed to the bound manager mechanically. For manually bound
|
|
@@ -6697,7 +6697,12 @@ function runInstallSkillsCommand(parsed, options) {
|
|
|
6697
6697
|
return { exitCode: 0, handled: true, stdout: `${lines.join("\n")}\n` };
|
|
6698
6698
|
}
|
|
6699
6699
|
const AGENT_CONVEYOR_PLUGIN_NAME = "agent-conveyor";
|
|
6700
|
-
const AGENT_CONVEYOR_PLUGIN_SKILLS = [
|
|
6700
|
+
const AGENT_CONVEYOR_PLUGIN_SKILLS = [
|
|
6701
|
+
"conveyor-create-pair",
|
|
6702
|
+
"conveyor-create-worker-set",
|
|
6703
|
+
"conveyor-check-status",
|
|
6704
|
+
"conveyor-whats-next-nudger",
|
|
6705
|
+
];
|
|
6701
6706
|
function resolveCodexHome(parsed, options) {
|
|
6702
6707
|
return resolve(expandUserPath(parsed.flags.codexHome ?? options.env?.CODEX_HOME ?? join(homedir(), ".codex")));
|
|
6703
6708
|
}
|