sisyphi 1.2.14 → 1.2.15

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/tui.js CHANGED
@@ -737,11 +737,11 @@ var init_config = __esm({
737
737
  "use strict";
738
738
  init_paths();
739
739
  DEFAULT_CONFIG = {
740
- model: "claude-opus-4-7[1m]",
740
+ model: "claude-opus-4-8[1m]",
741
741
  pollIntervalMs: 5e3,
742
742
  statusBarRenderTicks: 4,
743
743
  orchestratorEffort: "xhigh",
744
- agentEffort: "medium",
744
+ agentEffort: "high",
745
745
  notifications: {
746
746
  enabled: true,
747
747
  sound: "/System/Library/Sounds/Hero.aiff"
@@ -893,6 +893,7 @@ var init_notify = __esm({
893
893
 
894
894
  // src/daemon/ask-store.ts
895
895
  import { existsSync as existsSync9, mkdirSync as mkdirSync8, readFileSync as readFileSync13, readdirSync as readdirSync6 } from "fs";
896
+ import { basename as basename3 } from "path";
896
897
  function readDecisions(cwd2, sessionId2, askId2) {
897
898
  const p = askDecisionsPath(cwd2, sessionId2, askId2);
898
899
  try {
@@ -8544,12 +8545,12 @@ init_paths();
8544
8545
  // src/tui/panels/review-action.ts
8545
8546
  init_shell();
8546
8547
  import { execSync as execSync4 } from "child_process";
8547
- import { basename as basename3, dirname as dirname6 } from "path";
8548
+ import { basename as basename4, dirname as dirname6 } from "path";
8548
8549
  function mountReviewActionPanel(opts) {
8549
8550
  let selectedAction = "open";
8550
8551
  function render(cols, _rows) {
8551
8552
  const rows = [];
8552
- const fileBase = basename3(opts.reviewFile);
8553
+ const fileBase = basename4(opts.reviewFile);
8553
8554
  const fileDir = dirname6(opts.reviewFile);
8554
8555
  const maxPathLen = Math.max(8, cols - 4);
8555
8556
  const pathDisplay = truncate(`${fileDir}/${fileBase}`, maxPathLen);
@@ -8618,7 +8619,12 @@ var lastMountDims = null;
8618
8619
  function mountInlineDeck(state2, cols, rows) {
8619
8620
  return mountResolutionPanel(
8620
8621
  {
8621
- aggregateInbox: state2.aggregateInbox,
8622
+ // Reviews are surfaced by the review-action panel, not the deck resolver —
8623
+ // they have no deck.json, so buildDeck() returns null and the resolver
8624
+ // would tear the whole inbox surface down the moment it advanced onto one.
8625
+ // Excluding them keeps the resolver to deck-backed asks; once those drain
8626
+ // it tears down and renderInboxDeckRows re-dispatches the now-front review.
8627
+ aggregateInbox: state2.aggregateInbox.filter((i) => i.kind !== "review"),
8622
8628
  startIndex: 0,
8623
8629
  cols,
8624
8630
  rows,