@rallycry/conveyor-agent 11.0.1 → 11.0.2
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rallycry/conveyor-agent",
|
|
3
|
-
"version": "11.0.
|
|
3
|
+
"version": "11.0.2",
|
|
4
4
|
"description": "Conveyor Agent Runner v10 - PTY harness for the task chat (SDK harness for audit/project-chat). Agent-as-User architecture with BaseService patterns. Works locally too.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agent",
|
|
@@ -173,7 +173,10 @@ notification is the wake. The `ScheduleWakeup` you still arm is the fallback for
|
|
|
173
173
|
the case where the wait dies silently — use the pacing table's background-gate
|
|
174
174
|
row (1200–1800s), not a second, shorter timer.
|
|
175
175
|
|
|
176
|
-
- Prefer `node_modules/.bin/conveyor-wait`.
|
|
176
|
+
- Prefer `node_modules/.bin/conveyor-wait`. Gate on
|
|
177
|
+
`[ -x node_modules/.bin/conveyor-wait ]`, not on the path existing: in a
|
|
178
|
+
checkout that has not been built the bin is a symlink into an unbuilt
|
|
179
|
+
`dist/`, so it looks present and fails to run. When that test is false, use
|
|
177
180
|
`npx -y -p @rallycry/conveyor-mcp@latest conveyor-wait`. The `-p` form
|
|
178
181
|
matters: inside the conveyor monorepo a bare
|
|
179
182
|
`npx @rallycry/conveyor-mcp` misresolves.
|