omp-conductor 0.9.0 → 0.9.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/unblock.ts +9 -9
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "omp-conductor",
3
- "version": "0.9.0",
3
+ "version": "0.9.1",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "description": "A 24/7 dispatcher that takes ready GitHub issues to green, mergeable PRs using omp coding sessions, with tiered escalation first to an orchestrator session and then to a human.",
package/src/unblock.ts CHANGED
@@ -73,11 +73,11 @@ export interface UnblockOutcome {
73
73
  requeueSkipped?: true;
74
74
  /** Set when the tracker refused one or more of this verb's label ops, so
75
75
  * the label sync is owed rather than done: the intended label state is
76
- * durable in the store and the daemon retries it (#201). Safety is
77
- * preserved either way, but the issue is only claimable once the queue
78
- * label itself has landed `listReady` reads the tracker by label, so a
79
- * queue-label add that has not been applied is invisible to dispatch. The
80
- * number is what is still pending. */
76
+ * durable in the store and the daemon retries it (#201). This says nothing
77
+ * about claimability `listReady` reads the tracker by label, so an issue
78
+ * is dispatchable only once the queue label is physically present, which a
79
+ * pending add has not delivered and `--no-requeue` never enqueues at all.
80
+ * The number is what is still pending. */
81
81
  labelSyncQueued?: number;
82
82
  }
83
83
 
@@ -268,7 +268,7 @@ export function formatUnblock(
268
268
  const labelsPending = o.labelSyncQueued !== undefined;
269
269
  if (o.labelSyncQueued !== undefined) {
270
270
  lines.push(
271
- ` label sync queued (${o.labelSyncQueued} pending) — the daemon retries; the intended labels are durable, and the issue is claimable once they land`,
271
+ ` label sync queued (${o.labelSyncQueued} pending) — the daemon retries until the tracker matches`,
272
272
  );
273
273
  }
274
274
  if (o.forced === true) {
@@ -321,7 +321,7 @@ export function formatUnblock(
321
321
  lines.push(
322
322
  latest.prUrl === undefined
323
323
  ? labelsPending
324
- ? ` next tick label sync queued (${o.labelSyncQueued} pending) — the daemon retries; eligibility is recorded in the store, not yet on the tracker`
324
+ ? ` next tick label sync queued (${o.labelSyncQueued} pending) — the daemon retries until the tracker matches`
325
325
  : o.requeued === true
326
326
  ? ` next tick eligible again — "${project.queueLabel}" restored (no-op if it was already present; ` +
327
327
  "the dispatcher still applies its open-PR check at claim time)"
@@ -352,7 +352,7 @@ export function formatUnblock(
352
352
  );
353
353
  if (labelsPending) {
354
354
  lines.push(
355
- ` queue label sync queued (${o.labelSyncQueued} pending) — the daemon retries; the intended labels are durable, and the issue is claimable once they land`,
355
+ ` queue label sync queued (${o.labelSyncQueued} pending) — the daemon retries until the tracker matches`,
356
356
  );
357
357
  } else if (o.requeued === true) {
358
358
  lines.push(` queue "${project.queueLabel}" restored (no-op if it was already present)`);
@@ -361,7 +361,7 @@ export function formatUnblock(
361
361
  } else {
362
362
  lines.push(
363
363
  labelsPending
364
- ? ` next tick label sync queued (${o.labelSyncQueued} pending) — the daemon retries; the intended labels are durable, and the issue is claimable once they land`
364
+ ? ` next tick label sync queued (${o.labelSyncQueued} pending) — the daemon retries until the tracker matches`
365
365
  : o.requeued === true
366
366
  ? ` next tick eligible again — "${project.queueLabel}" restored (no-op if it was already present; ` +
367
367
  "the dispatcher still applies its open-PR check at claim time)"