pullfrog 0.1.2 → 0.1.4

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.
@@ -201,6 +201,13 @@ export interface WriteablePayload {
201
201
  triggerer?: string | undefined;
202
202
  /** event-level instructions for this trigger type (flag-expanded server-side) */
203
203
  eventInstructions?: string | undefined;
204
+ /**
205
+ * system-injected note about prior superseded runs (e.g. when the
206
+ * triggering @pullfrog comment is edited). rendered alongside the user's
207
+ * prompt rather than via eventInstructions so it survives user-prompt
208
+ * precedence.
209
+ */
210
+ previousRunsNote?: string | undefined;
204
211
  /** event data from webhook payload - discriminated union based on trigger field */
205
212
  event: PayloadEvent;
206
213
  /** timeout for agent run (e.g., "10m", "1h30m") - defaults to "1h" */