sisyphi 1.2.26 → 1.2.28

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/dist/cli.js CHANGED
@@ -6897,7 +6897,7 @@ INVOCATION
6897
6897
 
6898
6898
  DECK JSON SCHEMA
6899
6899
 
6900
- { "title"?: string, "interactions": Interaction[] } // interactions[] non-empty
6900
+ { "title": string, "interactions": Interaction[] } // title non-empty; interactions[] non-empty
6901
6901
 
6902
6902
  Interaction:
6903
6903
  id string, /^[A-Za-z0-9_-]+$/, max 64 chars, unique within deck
@@ -7293,7 +7293,7 @@ async function triageAsk(cwd, sessionId, askId, kind, title) {
7293
7293
  const choice = showAskTriagePopup({
7294
7294
  askId,
7295
7295
  sessionLabel: sessionLabel(cwd, sessionId),
7296
- title: title !== void 0 ? title : "Question pending"
7296
+ title
7297
7297
  });
7298
7298
  if (choice === "dismiss") return;
7299
7299
  if (choice === "agent") {
@@ -7329,7 +7329,7 @@ async function submitDeck(deck, opts, options) {
7329
7329
  const claudeSessionId = resolveClaudeSessionId(cwd, sessionId, askedBy);
7330
7330
  const askId = mintAskId();
7331
7331
  const q0 = deck.interactions[0];
7332
- const askTitle = deck.title !== void 0 ? deck.title : q0?.title;
7332
+ const askTitle = deck.title;
7333
7333
  const suppressTerminalNotification = blocking ? shouldSuppressBanner() : false;
7334
7334
  createAsk(cwd, sessionId, {
7335
7335
  askId,