fix(cli): discover resumable sessions from /resume - #3582
Conversation
Astro-Han
left a comment
There was a problem hiding this comment.
Reviewed at exact head e23405ce34db55480faf0f2a269cc2105935c8a2.
Coverage: how /resume discovers sessions, and the call chain from picking one to actually resuming. Not covered: wording.
Thanks for adding this entry point — the gap it targets is real. Two things need fixing before it does what it says, and both are reproducible on the ordinary user path.
[P2] onlyResumable filters on "attachable", not "has a safe boundary to resume"
packages/cli/src/pi-tui-runner.ts:2214-2215 selects entries with availability.get(session.id)?.available === true. But that availability comes from inspectSessionResumeAvailability at packages/cli/src/session-driver.ts:182-190, which only checks that session.cwd exists and is realpath-able. The Runtime Host implementation is the same shape, and for remote sessions it returns true for anything that has a cwd at all.
The authority for "is there something to resume" is elsewhere: the Host's turn.resume.query, where the Runtime plans a continuation only from that session's failed/cancelled inline run and otherwise reports resume_candidate_missing. The list path never calls it, and does not consult runningTurnIds or corrupted/unexecutable state either.
So an ordinary completed session, a session that is currently running, or one with no continuable run all appear in /resume as long as their working directory still exists. On remote, runtime-host-tui-command.ts:97-102 pins the scope to all while the new path applies no project predicate, so sessions from other projects are listed too. The same weak predicate also drives the startup hint at pi-tui-runner.ts:2282-2297, which will tell the user a plain attachable session "has an interrupted run".
Suggested direction: have a Runtime-owned resumability query return each session's real disposition, and filter here on current project, deleted workspace, running, and corrupted state — rather than reusing SessionResumeAvailability, which only answers cwd attachability.
[P2] Selecting from the picker does not actually resume
With no attached session, pi-tui-runner.ts:2134-2137 opens showSessionList({ onlyResumable: true }) and returns. The picker's onSelect at :2251-2260 calls goToSession(item.value), which on the idle path runs switchSession (:1649-1652) — and the comment right above goToSession says it plainly: /session is view navigation.
switchSession in runtime-host-session-driver.ts:471-524 validates cwd and the execution boundary, opens a subscription, and attaches a still-running root turn. It never calls turn.resume.query or turn.resume.start. The only driver path that starts a safe-boundary continuation is resumeLatest() at :325-349.
The user therefore picks a session, the picker closes as if the action succeeded, and the interrupted turn does not continue — they typically have to type /resume a second time so the current-session path reaches resumeLatest. That is the core function of the new entry point.
The new test at pi-tui-runner.test.ts:3265-3292 only asserts list text and filtering; it does not press Enter and assert that resumeLatest or a turn start follows, which is why this got through.
Suggested direction: make the selection path call a Runtime-owned switch-and-resume operation, or call resumeLatest once explicitly after a successful switchSession, keeping race/parked/failure outcomes visible.
Note on CI
check-runs on this head is total_count 0 — no run at all, which is neither green nor red. Even once the two items above are fixed, the gate needs terminal green on the new head.
Verification and limits
Changed-file Biome and git diff --check pass. A full CLI build could not be completed in our environment — pre-existing workspace drift unrelated to this PR blocked it — so no targeted-suite pass is claimed here; the findings above are established by reading the call chains at this exact head.
|
Follow-up fix pushed in the new head.
Verification on the new head: CLI build, typecheck, lint, format check, |
320abe1 to
acc96c0
Compare
Generated-by: Codex
Generated-by: Codex
acc96c0 to
f2c24a3
Compare
Astro-Han
left a comment
There was a problem hiding this comment.
Reviewed at exact head f2c24a35. Two [P1]s, both inline. Publishing on behalf of a reviewer without write access here; the analysis is theirs, and I re-verified both against this head before posting.
Gate status is red, but not because of this PR. The test job's Build step fails on apps/desktop/src/main/__tests__/goal-services-adapter.test.ts:64,70,76 with TS2353: 'type' does not exist in type 'SessionChangedEvent'. That file is untouched here — this PR changes four packages/cli files. The root cause was already fixed on main by cded195 (#3642), so merging current main into this branch and re-running should clear it.
The direction is right: /resume should be able to open a picker when there is no current session, and startup should tell you an interrupted run exists. The two findings are both about the resume predicate being reused where an attachability predicate is what the caller needs.
|
|
||
| getSessionResumeAvailability(session: SessionSummary): Promise<SessionResumeAvailability> { | ||
| async getSessionResumeAvailability(session: SessionSummary): Promise<SessionResumeAvailability> { | ||
| if (this.#executionLocation.kind === 'host') { |
There was a problem hiding this comment.
[P1] /session now refuses to navigate to sessions that are perfectly attachable.
On the host path this used to return { available: true } unconditionally (see the inspectRuntimeHostSessionResumeAvailability change further down, where the old location.kind === 'host' ? Promise.resolve({ available: true }) branch is preserved but no longer reached from here). It now returns the result of turn.resume.query, which answers a narrower question: does this session have an interrupted run with a safe boundary to resume from?
But showSessionList has only one availability map, and both /session and /resume read it. In pi-tui-runner.ts the selection handler does if (availability.get(item.value)?.available === false) return; — so under /session, a completed session, a session with no resume candidate, and a currently-running session are all now unselectable. Before this change every one of them could be attached.
That these are two different predicates is already visible in the code: switchSession validates only cwd attachability, not resume readiness. Please split them — keep getSessionResumeAvailability for /resume and give /session its own attachability query — rather than overloading one field.
Second reachable path, same root cause: for an archived session turn.resume.query rejects with session_archived. The availability map is built with a bare Promise.all(sessions.map(...)) (pi-tui-runner.ts:2170-2179) with no per-session error containment, so one archived row takes down the whole picker — /session simply never opens. Worth noting that the sibling foreign-session scan in that same Promise.all is guarded, with .then(summaries => ..., error => ({ error })) and an explicit comment about surfacing rather than swallowing the error. The Maka-session branch deserves the same treatment: per-session failures should degrade that row, not the list.
There was a problem hiding this comment.
System.Collections.Hashtable[3839511828]
| renderScope(); | ||
| }; | ||
|
|
||
| const announceResumeAvailability = async (): Promise<void> => { |
There was a problem hiding this comment.
[P1] Startup fires a second, unconditional listSessions() that races the user's own.
announceResumeAvailability is scheduled with setTimeout(..., 0) at the end of the boot path and calls input.driver.listSessions() for every launch, whether or not there is anything to announce. If the user opens /session immediately, that call is in flight concurrently with showSessionList's own listSessions().
This is not just theoretical: the existing CLI test blocks prompts while the session list is loading fails reproducibly at this head (full pi-tui suite: 131 pass / 1 fail), because DeferredListSessionsDriver has a single shared resolver and the two enumerations contend for it. A test that was green before this PR and is red after it is the finding, independent of whether the shared-resolver fake is an ideal model of the real driver.
Two things to fix: avoid the duplicate enumeration (reuse the session list the boot path already has, or gate the announcement on cheaper state), and add a regression test that pins the concurrent-open behavior so this does not silently come back.
The catch {} with its "advisory and must never prevent the TUI from starting" comment is the right instinct for this feature — the problem is the I/O it performs on the way there, not its failure handling.
There was a problem hiding this comment.
System.Collections.Hashtable[3839511832]
) * refactor(cli): unify transcript reconciliation Generated-by: Codex * refactor(cli): remove derived transcript mirrors Generated-by: Codex * fix(cli): fence transcript replacements across recovery Generated-by: Codex * refactor(cli): remove shell poll side state Generated-by: Codex * refactor(cli): delete runtime transcript materializer Generated-by: Codex * refactor(cli): use projector snapshot authority Generated-by: Codex * refactor(ui): remove unreachable tool states Generated-by: Codex * refactor(cli): unify transcript settlement signals Generated-by: Codex * refactor(cli): discard hidden polls on interruption Generated-by: Codex * fix(cli): preserve hidden polls during reconciliation Generated-by: Codex * refactor(cli): make live tool events presentation authority * refactor(cli): derive tool presentation from authoritative facts * style(cli): format transcript probes
* fix(desktop): reflow narrow trace turn headers * test(desktop): preserve trace minimum-width viewport
* 修复 Windows 最大化后渲染区未同步 * 补充 Windows 最大化打包烟测 * 改用原生窗口句柄验证最大化 * 强化 Windows 最大化尺寸烟测 * 补充 Windows 最大化文件许可头 * 合并窗口尺寸同步事件处理器 * 收紧 Windows 最大化同步容错
Generated-by: Codex
Generated-by: Codex
…irectory (apache#3578) Sharing one instruction file across the names different agent CLIs read is the documented way to do it — Claude Code's docs recommend symlinking CLAUDE.md to AGENTS.md, and apache/airflow and deepseek-ai/deepseek-harness both ship that link. Maka read every candidate name and appended each one, so such a repository had the same bytes injected twice and spent most of the 14000-character workspace-instruction budget on the duplicate. Deduplicate on the digest of the cleaned text, scoped to one directory. That catches the symlink and a byte-identical copy alike, where a realpath check would only catch the link. Directories stay independent: the same text at global and project scope is a user repeating themselves deliberately. The digest is taken before truncation, so two files that diverge only past the per-file cap still count as different. The shape follows deepseek-harness, which reads several names and ships the symlink, and reconciles them by content rather than by path. Generated-by: Claude Code Co-authored-by: Claude Opus 5 (1M context) <noreply@anthropic.com>
Generated-by: Codex
* fix(desktop): prevent WorkHub result overlap Allow WorkHub target buttons to grow beyond the fixed medium control height so Session metadata stays clear of the result text. Add an Electron layout regression test. Generated-by: Codex * fix(desktop): address WorkHub layout review
…6 updates (apache#3640) * chore(deps): bump the minor-and-patch group across 1 directory with 26 updates Bumps the minor-and-patch group with 25 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@ai-sdk/provider-utils](https://github.com/vercel/ai/tree/HEAD/packages/provider-utils) | `5.0.27` | `5.0.28` | | [@astryxdesign/cli](https://github.com/facebook/astryx/tree/HEAD/packages/cli) | `0.4.0` | `0.4.5` | | [@astryxdesign/core](https://github.com/facebook/astryx/tree/HEAD/packages/core) | `0.4.0` | `0.4.5` | | [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.5.6` | `2.5.9` | | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `26.1.2` | `26.2.0` | | [knip](https://github.com/webpro-nl/knip/tree/HEAD/packages/knip) | `6.26.0` | `6.32.2` | | [@ai-sdk/anthropic](https://github.com/vercel/ai/tree/HEAD/packages/anthropic) | `4.0.39` | `4.0.40` | | [@ai-sdk/code-mode](https://github.com/vercel/ai/tree/HEAD/packages/code-mode) | `1.0.23` | `1.0.27` | | [@ai-sdk/cohere](https://github.com/vercel/ai/tree/HEAD/packages/cohere) | `4.0.27` | `4.0.28` | | [@ai-sdk/google](https://github.com/vercel/ai/tree/HEAD/packages/google) | `4.0.44` | `4.0.47` | | [@ai-sdk/open-responses](https://github.com/vercel/ai/tree/HEAD/packages/open-responses) | `2.0.28` | `2.0.29` | | [@ai-sdk/openai](https://github.com/vercel/ai/tree/HEAD/packages/openai) | `4.0.42` | `4.0.44` | | [@ai-sdk/openai-compatible](https://github.com/vercel/ai/tree/HEAD/packages/openai-compatible) | `3.0.30` | `3.0.32` | | [@larksuiteoapi/node-sdk](https://github.com/larksuite/node-sdk) | `1.72.0` | `1.73.0` | | [@openai/agents-core](https://github.com/openai/openai-agents-js) | `0.14.3` | `0.17.0` | | [ai](https://github.com/vercel/ai/tree/HEAD/packages/ai) | `7.0.66` | `7.0.70` | | [ws](https://github.com/websockets/ws) | `8.21.2` | `8.21.3` | | [electron](https://github.com/electron/electron) | `43.2.0` | `43.4.1` | | [@earendil-works/pi-tui](https://github.com/earendil-works/pi/tree/HEAD/packages/tui) | `0.83.0` | `0.84.2` | | [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) | `1.28.0` | `1.33.0` | | [mermaid](https://github.com/mermaid-js/mermaid) | `11.16.1` | `11.17.0` | | [@astryxdesign/theme-neutral](https://github.com/facebook/astryx/tree/HEAD/packages/themes/neutral) | `0.4.0` | `0.4.5` | | [@storybook/react-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/react-vite) | `10.5.6` | `10.5.10` | | [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react) | `6.0.5` | `6.1.0` | | [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `8.1.5` | `8.2.2` | Updates `@ai-sdk/provider-utils` from 5.0.27 to 5.0.28 - [Release notes](https://github.com/vercel/ai/releases) - [Changelog](https://github.com/vercel/ai/blob/main/packages/provider-utils/CHANGELOG.md) - [Commits](https://github.com/vercel/ai/commits/@ai-sdk/provider-utils@5.0.28/packages/provider-utils) Updates `@astryxdesign/cli` from 0.4.0 to 0.4.5 - [Release notes](https://github.com/facebook/astryx/releases) - [Changelog](https://github.com/facebook/astryx/blob/main/packages/cli/CHANGELOG.md) - [Commits](https://github.com/facebook/astryx/commits/v0.4.5/packages/cli) Updates `@astryxdesign/core` from 0.4.0 to 0.4.5 - [Release notes](https://github.com/facebook/astryx/releases) - [Changelog](https://github.com/facebook/astryx/blob/main/packages/core/CHANGELOG.md) - [Commits](https://github.com/facebook/astryx/commits/v0.4.5/packages/core) Updates `@biomejs/biome` from 2.5.6 to 2.5.9 - [Release notes](https://github.com/biomejs/biome/releases) - [Changelog](https://github.com/biomejs/biome/blob/main/packages/@biomejs/biome/CHANGELOG.md) - [Commits](https://github.com/biomejs/biome/commits/@biomejs/biome@2.5.9/packages/@biomejs/biome) Updates `@types/node` from 26.1.2 to 26.2.0 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) Updates `knip` from 6.26.0 to 6.32.2 - [Release notes](https://github.com/webpro-nl/knip/releases) - [Commits](https://github.com/webpro-nl/knip/commits/knip@6.32.2/packages/knip) Updates `@ai-sdk/anthropic` from 4.0.39 to 4.0.40 - [Release notes](https://github.com/vercel/ai/releases) - [Changelog](https://github.com/vercel/ai/blob/main/packages/anthropic/CHANGELOG.md) - [Commits](https://github.com/vercel/ai/commits/@ai-sdk/anthropic@4.0.40/packages/anthropic) Updates `@ai-sdk/code-mode` from 1.0.23 to 1.0.27 - [Release notes](https://github.com/vercel/ai/releases) - [Changelog](https://github.com/vercel/ai/blob/main/packages/code-mode/CHANGELOG.md) - [Commits](https://github.com/vercel/ai/commits/@ai-sdk/code-mode@1.0.27/packages/code-mode) Updates `@ai-sdk/cohere` from 4.0.27 to 4.0.28 - [Release notes](https://github.com/vercel/ai/releases) - [Changelog](https://github.com/vercel/ai/blob/main/packages/cohere/CHANGELOG.md) - [Commits](https://github.com/vercel/ai/commits/@ai-sdk/cohere@4.0.28/packages/cohere) Updates `@ai-sdk/google` from 4.0.44 to 4.0.47 - [Release notes](https://github.com/vercel/ai/releases) - [Changelog](https://github.com/vercel/ai/blob/main/packages/google/CHANGELOG.md) - [Commits](https://github.com/vercel/ai/commits/@ai-sdk/google@4.0.47/packages/google) Updates `@ai-sdk/open-responses` from 2.0.28 to 2.0.29 - [Release notes](https://github.com/vercel/ai/releases) - [Changelog](https://github.com/vercel/ai/blob/main/packages/open-responses/CHANGELOG.md) - [Commits](https://github.com/vercel/ai/commits/@ai-sdk/open-responses@2.0.29/packages/open-responses) Updates `@ai-sdk/openai` from 4.0.42 to 4.0.44 - [Release notes](https://github.com/vercel/ai/releases) - [Changelog](https://github.com/vercel/ai/blob/main/packages/openai/CHANGELOG.md) - [Commits](https://github.com/vercel/ai/commits/@ai-sdk/openai@4.0.44/packages/openai) Updates `@ai-sdk/openai-compatible` from 3.0.30 to 3.0.32 - [Release notes](https://github.com/vercel/ai/releases) - [Changelog](https://github.com/vercel/ai/blob/main/packages/openai-compatible/CHANGELOG.md) - [Commits](https://github.com/vercel/ai/commits/@ai-sdk/openai-compatible@3.0.32/packages/openai-compatible) Updates `@larksuiteoapi/node-sdk` from 1.72.0 to 1.73.0 - [Commits](https://github.com/larksuite/node-sdk/commits) Updates `@openai/agents-core` from 0.14.3 to 0.17.0 - [Release notes](https://github.com/openai/openai-agents-js/releases) - [Commits](openai/openai-agents-js@v0.14.3...v0.17.0) Updates `ai` from 7.0.66 to 7.0.70 - [Release notes](https://github.com/vercel/ai/releases) - [Changelog](https://github.com/vercel/ai/blob/main/packages/ai/CHANGELOG.md) - [Commits](https://github.com/vercel/ai/commits/ai@7.0.70/packages/ai) Updates `ws` from 8.21.2 to 8.21.3 - [Release notes](https://github.com/websockets/ws/releases) - [Commits](websockets/ws@8.21.2...8.21.3) Updates `electron` from 43.2.0 to 43.4.1 - [Release notes](https://github.com/electron/electron/releases) - [Commits](electron/electron@v43.2.0...v43.4.1) Updates `@earendil-works/pi-tui` from 0.83.0 to 0.84.2 - [Release notes](https://github.com/earendil-works/pi/releases) - [Changelog](https://github.com/earendil-works/pi/blob/main/packages/tui/CHANGELOG.md) - [Commits](https://github.com/earendil-works/pi/commits/v0.84.2/packages/tui) Updates `lucide-react` from 1.28.0 to 1.33.0 - [Release notes](https://github.com/lucide-icons/lucide/releases) - [Commits](https://github.com/lucide-icons/lucide/commits/1.33.0/packages/lucide-react) Updates `mermaid` from 11.16.1 to 11.17.0 - [Release notes](https://github.com/mermaid-js/mermaid/releases) - [Commits](https://github.com/mermaid-js/mermaid/compare/mermaid@11.16.1...mermaid@11.17.0) Updates `@astryxdesign/theme-neutral` from 0.4.0 to 0.4.5 - [Release notes](https://github.com/facebook/astryx/releases) - [Changelog](https://github.com/facebook/astryx/blob/main/packages/themes/neutral/CHANGELOG.md) - [Commits](https://github.com/facebook/astryx/commits/v0.4.5/packages/themes/neutral) Updates `@storybook/react-vite` from 10.5.6 to 10.5.10 - [Release notes](https://github.com/storybookjs/storybook/releases) - [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md) - [Commits](https://github.com/storybookjs/storybook/commits/v10.5.10/code/frameworks/react-vite) Updates `@vitejs/plugin-react` from 6.0.5 to 6.1.0 - [Release notes](https://github.com/vitejs/vite-plugin-react/releases) - [Changelog](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite-plugin-react/commits/plugin-react@6.1.0/packages/plugin-react) Updates `storybook` from 10.5.6 to 10.5.10 - [Release notes](https://github.com/storybookjs/storybook/releases) - [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md) - [Commits](https://github.com/storybookjs/storybook/commits/v10.5.10/code/core) Updates `vite` from 8.1.5 to 8.2.2 - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v8.2.2/packages/vite) --- updated-dependencies: - dependency-name: "@ai-sdk/anthropic" dependency-version: 4.0.40 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-and-patch - dependency-name: "@ai-sdk/code-mode" dependency-version: 1.0.27 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-and-patch - dependency-name: "@ai-sdk/cohere" dependency-version: 4.0.28 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-and-patch - dependency-name: "@ai-sdk/google" dependency-version: 4.0.47 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-and-patch - dependency-name: "@ai-sdk/open-responses" dependency-version: 2.0.29 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-and-patch - dependency-name: "@ai-sdk/openai" dependency-version: 4.0.44 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-and-patch - dependency-name: "@ai-sdk/openai-compatible" dependency-version: 3.0.32 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-and-patch - dependency-name: "@ai-sdk/provider-utils" dependency-version: 5.0.28 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: minor-and-patch - dependency-name: "@astryxdesign/cli" dependency-version: 0.4.5 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: minor-and-patch - dependency-name: "@astryxdesign/core" dependency-version: 0.4.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-and-patch - dependency-name: "@astryxdesign/theme-neutral" dependency-version: 0.4.5 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: minor-and-patch - dependency-name: "@biomejs/biome" dependency-version: 2.5.9 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: minor-and-patch - dependency-name: "@earendil-works/pi-tui" dependency-version: 0.84.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-and-patch - dependency-name: "@larksuiteoapi/node-sdk" dependency-version: 1.73.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-and-patch - dependency-name: "@openai/agents-core" dependency-version: 0.17.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-and-patch - dependency-name: "@storybook/react-vite" dependency-version: 10.5.10 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: minor-and-patch - dependency-name: "@types/node" dependency-version: 26.2.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: minor-and-patch - dependency-name: "@vitejs/plugin-react" dependency-version: 6.1.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: minor-and-patch - dependency-name: ai dependency-version: 7.0.70 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-and-patch - dependency-name: electron dependency-version: 43.4.1 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: minor-and-patch - dependency-name: knip dependency-version: 6.32.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: minor-and-patch - dependency-name: lucide-react dependency-version: 1.33.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-and-patch - dependency-name: mermaid dependency-version: 11.17.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-and-patch - dependency-name: storybook dependency-version: 10.5.10 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: minor-and-patch - dependency-name: vite dependency-version: 8.2.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: minor-and-patch - dependency-name: ws dependency-version: 8.21.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-and-patch ... Signed-off-by: dependabot[bot] <support@github.com> * fix(deps): adapt the grouped bump to current contracts Retarget the provider-utils and Astryx patches, migrate the CLI to pi-tui's main-screen implementation, and keep layer tests on the client-mounted surface. Refresh the reviewed dependency notices, Astryx theme artifacts, and surface inventory for the upgraded graph. Generated-by: Codex * test(desktop): use the session change payload contract Remove the IPC channel discriminator from SessionChangedEvent fixtures so the test matches the payload emitted by Runtime Host and restores the current main build. Generated-by: Codex * fix(deps): update the source license inventory Point the source candidate's legal inventory at the retargeted provider-utils and Astryx patch files and record the upgraded Astryx theme input. Generated-by: Codex * chore(deps): align with knip 6.32 analysis Remove unused compatibility re-exports and obsolete binary ignores that the upgraded Knip now reports. Keep the underlying implementations and public types that still have consumers. Generated-by: Codex * chore(deps): remove an unused UI type forwarder Keep QuietPreview owned by @maka/core and stop re-exporting it from the UI adapter when no consumer uses that compatibility path. This lets Knip 6.32 finish its packages/ui analysis. Generated-by: Codex * fix(legal): preserve exact upstream MIT notices Use the complete version-pinned README license blocks for fastdom 1.0.12 and strictdom 1.0.1 instead of synthesizing copyright holders from author metadata. Add a regression check for the exact notices and regenerate the Desktop inventory. Generated-by: Codex --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: AstroHan <lei.yuhan@outlook.com>
Generated-by: OpenAI Codex Co-authored-by: k4its1t <306379390+k4its1t@users.noreply.github.com>
…audit (apache#3603) * refactor(core): drop retired 'execute' permission mode from capability audit Remove the 'execute' member from CAPABILITY_AUDIT_PERMISSION_MODES and the associated Exclude<> workaround in SkillAuditRecord, since the retired mode is already folded to 'ask' at all persistence decode sites. - scheduledTaskPermissionMode: active tasks now map to 'ask' instead of the retired 'execute' (behavioural equivalent). - executableScheduledTaskCount: filters enabled non-explore tasks instead of the now-unreachable 'execute' permissionMode literal. - CLI activation-command retains the execute→ask alias for external callers per the original comment. Refs: apache#3385 Generated-by: OpenAI Codex Signed-off-by: Yunare Maia <yunare@gmail.com> * style: apply biome formatting to capability-audit (CI fix) --------- Signed-off-by: Yunare Maia <yunare@gmail.com>
* refactor: publish canonical session catalog activity Carry the storage catalog's materialized activity timestamp through Runtime Host projections and cursors. This removes the protocol's dependence on the redundant last-used timestamp and gives all clients one ordering fact. Generated-by: Maka * refactor: share canonical catalog projection Generated-by: Maka * refactor: accept complete desktop catalog snapshots Generated-by: Maka * refactor: retire session last-used authority Generated-by: Maka * refactor: remove session settings list patches Generated-by: Maka * refactor: remove desktop catalog upserts Generated-by: Maka * refactor: delete session summary merge layer Generated-by: Maka * refactor: drop legacy session activity column Generated-by: Maka * refactor: remove remaining desktop catalog patches Generated-by: Maka * chore: restore canonical ASF source header Generated-by: Maka * fix(desktop): repaint committed session settings Generated-by: Maka * fix(desktop): keep plan state outside catalog snapshots Generated-by: Maka * fix(desktop): retain healthy host catalogs Generated-by: Maka * fix(desktop): reconcile mode intents with catalog snapshots Keep the latest Plan and orchestration intent in one setting owner until the Host commit is observed in a catalog snapshot. Catalog refresh failures no longer roll presentation back or prevent a queued latest intent from reaching the Host. Generated-by: Maka * fix(desktop): retire settings on newer catalog snapshots Fence committed mode overlays by successful catalog observation revision instead of value equality. Runtime-owned transitions such as Plan approval can now supersede an older renderer commit without letting failed reads discard it. Generated-by: Maka * fix(runtime-host): advance catalog protocol epoch Current main already owns epoch 43 for shell-run poll correlation. Advance the retired Session timestamp wire change to epoch 44 and pin that compatibility floor. Generated-by: Maka
Refresh the stale surface count and run the repository-wide inventory gate before Build whenever code validation is selected. Fixes apache#3646 Generated-by: OpenAI Codex
* refactor(core): introduce persisted value boundary Generated-by: Codex * refactor(core): separate persisted record decoders Generated-by: Codex * refactor(storage): enforce persisted decode paths Generated-by: Codex * ci(runtime-host): declare compatible session turn decoder change Generated-by: Codex * ci(runtime-host): refresh compatible session turn declaration Generated-by: Codex * test(core): mark new stored message fixture persisted Generated-by: Codex
* fix(mcp): drop JSON Schema annotations from tool schemas Client Capability validation intentionally keeps a strict keyword allowlist. Normalize MCP tool descriptors during discovery by removing only the non-semantic $schema and $comment annotations from supported schema positions. Keep $id because it changes $ref base resolution and must remain subject to protocol validation. Generated-by: pi (gpt-5.6-sol) * fix(mcp): scrub annotations under every subschema keyword Add patternProperties, dependentSchemas, dependencies, prefixItems, additionalItems, unevaluatedItems, unevaluatedProperties, contains, not, if, then, and else to subschema traversal. Keep the traversal explicit so instance-data keywords such as default, const, examples, and enum retain payload keys named $schema or $comment. $id remains untouched and survives normalization. Generated-by: pi (gpt-5.6-sol)
* fix(storage): import Codex item_completed messages Generated-by: OpenAI Codex * fix(storage): preserve Codex content-part concatenation Match the upstream Codex contract by concatenating completed user and agent text parts without injecting separators. Strengthen the regression fixture so split-word boundaries fail under the previous behavior. Generated-by: OpenAI Codex --------- Co-authored-by: sunrioa <178722768+sunrioa@users.noreply.github.com>
…3549) The gateway serves muse-spark-1.2-contributor correctly through the Responses API, while its Chat Completions stream lacks a reliable terminal finish reason. Pin this provider/model pair to Responses instead of weakening the shared truncation guard, and cover both the scoped protocol choice and final request endpoint. Fixes apache#3548 Generated-by: OpenAI Codex
Generated-by: Codex
Summary
Fixes #3508.
When the TUI has no attached session,
/resumenow opens a picker limited to sessions whose resume availability is ready, instead of attempting an attached-session-only resume. Startup also performs a best-effort availability check and surfaces a passive hint for the current or cwd session when safe-boundary resume is available.Implementation
/resumewithout an attached session./sessionrows, attached-session resume behavior, sandbox boundaries, and Desktop policy unchanged.Verification
node --test --test-name-pattern="opens a picker containing only resumable" packages/cli/dist/__tests__/pi-tui-runner.test.js— passed.npm --workspace maka-agent run build— passed.npm --workspace maka-agent run typecheck— passed.npm run lint -- packages/cli/src/pi-tui-runner.ts packages/cli/src/__tests__/pi-tui-runner.test.ts— passed.npm run format:check -- packages/cli/src/pi-tui-runner.ts packages/cli/src/__tests__/pi-tui-runner.test.ts— passed.git diff --check— passed.npm --workspace maka-agent test— 378 passed, 12 failed, 1 skipped; failures are existing environment/Windows-dependent tests outside this diff.Not run: full repository build and Docker-based checks; this is a pure CLI/TUI unit behavior change with no external service dependency.
AI use
Tool(s) and scope: Codex assisted with remote issue selection, implementation, regression testing, and PR text. The commit includes a
Generated-by: Codextrailer.Checklist
Does this PR entail a change in behavior?
/resumenow discovers resumable sessions when no session is attached.