@rallycry/conveyor-skills 1.0.1 → 1.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
|
@@ -149,6 +149,16 @@ and never silence a failure with a filter, a `.skip`, or a "known flake" note:
|
|
|
149
149
|
either your diff broke it, or the test is broken or environment-dependent and
|
|
150
150
|
you fix the test.
|
|
151
151
|
|
|
152
|
+
**Long gates in a pod: background them the sanctioned way.** Launch a long
|
|
153
|
+
gate with the harness's `run_in_background` Bash option and end the turn — the
|
|
154
|
+
runner tracks the launch, holds pod liveness while a gate process is alive,
|
|
155
|
+
and wakes you when it finishes (or if its completion callback is lost). In a
|
|
156
|
+
repo without Conveyor's `scripts/singleton.sh`, wrap the command in the
|
|
157
|
+
shipped `conveyor-gate` bin — `conveyor-gate <label> -- <cmd…>` — which writes
|
|
158
|
+
the same pid/exit contract under `$CONVEYOR_RUN_DIR/gates/` so the runner can
|
|
159
|
+
see it. Hand-rolled backgrounding (`nohup`, `&`, `disown`) is invisible to the
|
|
160
|
+
runner: the pod can sleep mid-run and nothing will wake you.
|
|
161
|
+
|
|
152
162
|
**A UI-visible change needs visual proof before the PR**, in both environments:
|
|
153
163
|
capture a screenshot (static) or a short recording (interaction) with the host
|
|
154
164
|
repo's own tooling and attach it with `mcp__conveyor__upload_attachment`, then
|