pi-cursor-sdk 0.1.16 → 0.1.18

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 (42) hide show
  1. package/CHANGELOG.md +53 -1
  2. package/README.md +2 -2
  3. package/docs/cursor-live-smoke-checklist.md +54 -41
  4. package/docs/cursor-model-ux-spec.md +4 -3
  5. package/docs/cursor-testing-lessons.md +199 -0
  6. package/package.json +14 -5
  7. package/scripts/isolated-cursor-smoke.sh +226 -0
  8. package/scripts/steering-rpc-smoke.mjs +238 -0
  9. package/scripts/tmux-live-smoke.sh +418 -0
  10. package/scripts/validate-smoke-jsonl.mjs +207 -0
  11. package/src/cursor-context-tools.ts +6 -0
  12. package/src/cursor-display-text.ts +10 -0
  13. package/src/cursor-edit-diff.ts +11 -0
  14. package/src/cursor-env-boolean.ts +22 -0
  15. package/src/cursor-live-run-coordinator.ts +483 -0
  16. package/src/cursor-native-replay-routing.ts +48 -0
  17. package/src/cursor-native-replay-trace.ts +29 -0
  18. package/src/cursor-native-tool-display-registration.ts +103 -0
  19. package/src/cursor-native-tool-display-replay.ts +465 -0
  20. package/src/cursor-native-tool-display-state.ts +78 -0
  21. package/src/cursor-native-tool-display-tools.ts +102 -0
  22. package/src/cursor-native-tool-display.ts +10 -648
  23. package/src/cursor-partial-content-emitter.ts +121 -0
  24. package/src/cursor-pi-tool-bridge-abort.ts +133 -0
  25. package/src/cursor-pi-tool-bridge-diagnostics.ts +179 -0
  26. package/src/cursor-pi-tool-bridge-mcp.ts +118 -0
  27. package/src/cursor-pi-tool-bridge-run.ts +384 -0
  28. package/src/cursor-pi-tool-bridge-server.ts +182 -0
  29. package/src/cursor-pi-tool-bridge-snapshot.ts +88 -0
  30. package/src/cursor-pi-tool-bridge-types.ts +80 -0
  31. package/src/cursor-pi-tool-bridge.ts +42 -1104
  32. package/src/cursor-provider-live-run-drain.ts +405 -0
  33. package/src/cursor-provider-turn-coordinator.ts +460 -0
  34. package/src/cursor-provider.ts +77 -1103
  35. package/src/cursor-question-tool.ts +9 -1
  36. package/src/cursor-record-utils.ts +26 -0
  37. package/src/cursor-sdk-output-filter.ts +100 -0
  38. package/src/cursor-sensitive-text.ts +37 -0
  39. package/src/cursor-tool-transcript.ts +28 -1229
  40. package/src/cursor-transcript-tool-formatters.ts +641 -0
  41. package/src/cursor-transcript-tool-specs.ts +441 -0
  42. package/src/cursor-transcript-utils.ts +276 -0
package/CHANGELOG.md CHANGED
@@ -1,6 +1,58 @@
1
1
  # Changelog
2
2
 
3
- ## Unreleased
3
+ ## 0.1.18 - 2026-05-23
4
+
5
+ ### Added
6
+
7
+ - Add `scripts/isolated-cursor-smoke.sh` and `npm run smoke:isolated` for packed `/tmp` install smoke with seeded `auth.json`, plan-strip shim, and JSONL replay-error scans.
8
+ - Add `scripts/fixtures/plan-strip-shim/` to simulate plan-mode execute stripping active tools to `read`, `bash`, `edit`, and `write`.
9
+ - Extend `scripts/validate-smoke-jsonl.mjs` with `--replay-errors` and `--replay-errors-only` to fail on persisted `Tool grep/cursor/find/ls not found` entries.
10
+ - Add [Cursor testing lessons](docs/cursor-testing-lessons.md) documenting auth.json seeding, isolated harness layout, JSONL replay scans, and the plan-mode replay regression chain.
11
+ - Add regression coverage in `test/cursor-native-replay-stress.test.ts`, `test/cursor-native-replay-trace.test.ts`, `test/cursor-native-replay-routing.test.ts`, and expanded live-run / extension lifecycle tests.
12
+
13
+ ### Changed
14
+
15
+ - Centralize native replay routing in `src/cursor-native-replay-routing.ts` (`resolveNativeReplayDisposition`, shared context-tool partitioning) for turn coordinator and live-run drain.
16
+ - Unify 240-character display truncation in `src/cursor-display-text.ts` and share `getActiveContextToolNames()` via `src/cursor-context-tools.ts`.
17
+ - Unify inactive native replay trace formatting through `src/cursor-native-replay-trace.ts` (`title: summary`) for both live-run drain and turn-coordinator paths.
18
+ - On non-Cursor model switch, strip all registered native replay wrappers except core pi tools (`read`, `bash`, `edit`, `write`), not only `cursor`.
19
+ - Document `auth.json` as the primary live-smoke auth source in the live smoke checklist, README maintainer gate, and UX spec.
20
+
21
+ ### Fixed
22
+
23
+ - Fix `Tool grep not found` and related native replay failures after plan-mode execute resets active tools by re-syncing registered Cursor replay wrappers on `before_agent_start` and `turn_start`.
24
+ - Skip native replay `toolUse` when a replay tool is inactive in `context.tools`; emit scrubbed thinking trace instead of a broken pi tool call.
25
+ - Partition live-run drain replay emission so inactive queued native tools fall back to trace output instead of invalid `toolUse` turns.
26
+
27
+ ## 0.1.17 - 2026-05-23
28
+
29
+ ### Added
30
+
31
+ - Surface in-progress Cursor SDK `task` activity in the TUI from SDK-provided `args.description`, with one deduped line such as `Cursor task: Explore AI/automation projects` and no generic heartbeat or per-tool start spam.
32
+
33
+ ### Changed
34
+
35
+ - Bump pi dev dependency baseline to `0.75.5` for read-tool collapsed-card rendering, package update fixes, and other upstream pi changes. Cursor edit replay remains display-only via `diffString`; pi's new SDK `details.patch` field is not required because Cursor agents do not execute pi's edit tool.
36
+ - Rework live-run internals into dedicated coordination/drain/turn/partial-content modules (`cursor-live-run-coordinator.ts`, `cursor-provider-live-run-drain.ts`, `cursor-provider-turn-coordinator.ts`, `cursor-partial-content-emitter.ts`) while preserving the provider's external contract.
37
+ - Complete phase-2 remediation for #23/#24/#25 by splitting bridge ownership across snapshot/server/run/abort/diagnostics/MCP/types modules, splitting native replay ownership across state/registration/replay/tools modules, and unifying tool completion routing through `resolveToolCompletion`.
38
+ - Replace monolithic provider test coverage with focused stream/bridge/replay/live-run suites plus shared harness helpers.
39
+ - Promote smoke automation into packaged entrypoints (`npm run smoke:live`, `npm run smoke:steering`, `npm run smoke:jsonl`) and make helper retry/polling behavior explicit (TUI answer/footer polling plus deterministic tmux cleanup).
40
+ - Document the hard maintainer rule that Cursor SDK behavior must be verified against the installed `@cursor/sdk` package and/or official TypeScript SDK docs before implementation or release claims.
41
+ - Bump package metadata to `0.1.17` so the dry-run tarball no longer collides with the existing `v0.1.16` tag.
42
+
43
+ ### Fixed
44
+
45
+ - Resolve startup noise issue #17 by extending Cursor SDK bootstrap filtering to late hook compatibility warnings and ripgrep/ignore-mapping output while preserving non-startup logs.
46
+ - Fix steering/follow-up delivery for active pooled Cursor runs by resuming/waiting on the in-flight run and sending incremental follow-up text after pending tool/result flow completes instead of issuing a second concurrent `Agent.send()`; additional stale tool batches from the old run are cancelled so the new user input is not lost.
47
+ - Resolve issue #19 with a canonical edit-diff fallback resolver (`diffString → diff → unifiedDiff → patch`) shared by replay and transcript formatting paths.
48
+ - Resolve issue #20 by updating the token-tracking investigation note to mark the `0.75.3` observation as point-in-time and call out the current `0.75.5` development baseline.
49
+ - Resolve issue #21 by decomposing prior 1k+ provider/transcript/bridge/test monoliths into ownership-scoped modules.
50
+ - Harden bridge diagnostics and secret scrubbing so debug JSONL stays run-safe and allowlisted without endpoint path material, raw args/results, or credential payloads.
51
+ - Make Cursor SDK output filtering safe for overlapping provider streams by restoring the global stdout/stderr/console patch only after the last active install.
52
+ - Reject bridge MCP calls cleanly when tool-dispatch handlers throw, and avoid suppressing unrelated MCP replay solely because an external payload reuses a known bridge request ID.
53
+ - Bound native replay diff/write previews by both lines and characters, summarize non-text MCP content without dumping raw payload JSON, and make expanded-diff truncation copy truthful.
54
+ - Change smoke forbidden-material scans to report only matching file names, not secret-bearing matched lines.
55
+ - Harden live-smoke direct-output checks so a step logs `PASS` only after both command exit and expected stdout assertion succeed, with the basic prompt retrying once on empty output even when the first command exits zero.
4
56
 
5
57
  ## 0.1.16 - 2026-05-22
6
58
 
package/README.md CHANGED
@@ -232,7 +232,7 @@ PI_CURSOR_PI_TOOL_BRIDGE_DEBUG=1 pi --model cursor/composer-2.5
232
232
 
233
233
  ### Maintainer live smoke release gate
234
234
 
235
- For Cursor provider/runtime changes, follow the manual [Cursor live smoke checklist](docs/cursor-live-smoke-checklist.md) before release. Assume every runtime surface is in scope. The checklist uses real `pi -e . --cursor-no-fast --model cursor/composer-2.5` runs with temporary session dirs and requires the visible TUI/output, scrubbed diagnostics, and persisted JSONL to agree. Do not mark a release ready with optional, deferred, mostly-passing, or unobserved smoke checks outstanding.
235
+ For Cursor provider/runtime changes, follow the manual [Cursor live smoke checklist](docs/cursor-live-smoke-checklist.md) before release. See [Cursor testing lessons](docs/cursor-testing-lessons.md) for auth.json seeding, isolated `/tmp` harness layout, JSONL replay-error scans, and other regression traps. Assume every runtime surface is in scope. The checklist uses real `pi -e . --cursor-no-fast --model cursor/composer-2.5` runs with temporary session dirs and requires the visible TUI/output, scrubbed diagnostics, and persisted JSONL to agree. Do not mark a release ready with optional, deferred, mostly-passing, or unobserved smoke checks outstanding.
236
236
 
237
237
  ## Fallback models
238
238
 
@@ -248,7 +248,7 @@ Actual Cursor runs still need a key from `/login`, `CURSOR_API_KEY`, or `--api-k
248
248
  - **The pi tool bridge is local and MCP-backed.** Bridgeable active pi tools are exposed to local Cursor agents through a tokenized `127.0.0.1` MCP endpoint; internal Cursor replay activity names are excluded, and overlapping built-in pi tools are hidden by default. Set `PI_CURSOR_PI_TOOL_BRIDGE=0` to disable it or `PI_CURSOR_EXPOSE_BUILTIN_TOOLS=1` to expose overlapping built-ins too.
249
249
  - **Cursor native tool replay is display-only.** Replay renders recorded Cursor SDK activity and never re-runs Cursor-side commands, reapplies Cursor edits, calls MCP servers, or mutates pi state. Workflow tools such as Cursor `SwitchMode` and Cursor todo state are not pi workflow controls. See [Cursor native tool replay](docs/cursor-native-tool-replay.md) for supported replay cards, ordering, conflict handling, and opt-out flags.
250
250
  - **Cursor run state can span tool-use turns.** Within a pi session, the extension reuses one Cursor SDK agent across compatible follow-up turns and sends incremental prompts when context still matches. It recreates the agent when context diverges, after compaction or `/tree` navigation, on API key changes, after send errors, or on session shutdown. For bridged pi tools, the matching pi `toolResult` resolves into the same live Cursor SDK run without creating a new `Agent`, unless the run was disposed, aborted, or cancelled. Replay can also split one live Cursor SDK run across pi `toolUse` turns for display.
251
- - **Cursor setting sources default to all.** The extension passes `local.settingSources: ["all"]` by default so configured Cursor MCP servers, plugin tools, project/user settings, and related Cursor-native capabilities are available like they are in Cursor. To narrow loading, set a comma-separated list such as `PI_CURSOR_SETTING_SOURCES=project,user,plugins`. To disable ambient setting sources, set `PI_CURSOR_SETTING_SOURCES=none`. Direct Cursor SDK startup logs are suppressed so setting/skill loading messages do not pollute the TUI.
251
+ - **Cursor setting sources default to all.** The extension passes `local.settingSources: ["all"]` by default so configured Cursor MCP servers, plugin tools, project/user settings, and related Cursor-native capabilities are available like they are in Cursor. To narrow loading, set a comma-separated list such as `PI_CURSOR_SETTING_SOURCES=project,user,plugins`. To disable ambient setting sources, set `PI_CURSOR_SETTING_SOURCES=none`. Direct Cursor SDK bootstrap logs (settings, skills, hook-load compatibility warnings, and similar) are suppressed so they do not pollute the TUI.
252
252
  - **Max Mode is not a manual pi variant.** Cursor's SDK may enable Max Mode automatically for models that require it. This extension only advertises exact context-window variants that the SDK catalog exposes and otherwise uses conservative SDK-derived default/non-Max context windows.
253
253
  - **Output token limits are conservative.** Cursor SDK model metadata does not currently expose output token limits directly.
254
254
  - **Token usage is approximate in pi.** Cursor SDK usage events include cumulative internal agent/tool/cache work, so raw Cursor SDK counters are not copied into pi usage. The extension reports approximate pi session activity in `input`/`output`, including split-run tool calls and consumed tool results, while `totalTokens` tracks the replayable Cursor prompt/context estimate used for context display and compaction.
@@ -2,7 +2,7 @@
2
2
 
3
3
  ## Purpose
4
4
 
5
- Use this manual checklist before releasing Cursor provider/runtime changes. Unit tests and mocks are necessary, but they are not enough for this extension. Always assume every runtime surface is in scope. A release is not ready until every live check below has been observed with `cursor/composer-2.5` through the local working tree.
5
+ Use this manual checklist before releasing Cursor provider/runtime changes. Unit tests and mocks are necessary, but they are not enough for this extension. See [Cursor testing lessons](./cursor-testing-lessons.md) for auth/isolated-harness pitfalls and the plan-mode replay regression that motivated recent hardening. Always assume every runtime surface is in scope. A release is not ready until every live check below has been observed with `cursor/composer-2.5` through the local working tree.
6
6
 
7
7
  ## Release rule
8
8
 
@@ -22,11 +22,36 @@ mkdir -p "$SMOKE_DIR"
22
22
  pi -e . --list-models cursor
23
23
  ```
24
24
 
25
+ Live pi runs resolve provider auth from **`~/.pi/agent/auth.json`**, not only shell env. Isolated smoke copies that file into a clean temporary `HOME`. Ensure `auth.json` includes a `cursor` provider entry, or export `CURSOR_API_KEY` as a fallback.
26
+
27
+ The repo also ships partial automation for the prerequisite/basic/default-settings/non-interactive math/TUI output polling/steering/diagnostic/JSONL subset:
28
+
29
+ ```bash
30
+ npm run smoke:live
31
+ ```
32
+
33
+ For native replay regression checks (packed install, plan-strip resync, JSONL replay-error scan), use the isolated helper:
34
+
35
+ ```bash
36
+ npm run smoke:isolated
37
+ # unit tests + pack only (no live Cursor):
38
+ SKIP_LIVE=1 npm run smoke:isolated
39
+ ```
40
+
41
+ Scan persisted sessions for native replay tool failures:
42
+
43
+ ```bash
44
+ node scripts/validate-smoke-jsonl.mjs --replay-errors "$SMOKE_DIR"
45
+ node scripts/validate-smoke-jsonl.mjs --replay-errors-only "$SMOKE_DIR/session-subdir"
46
+ ```
47
+
48
+ The script is a helper only; it polls the section 3 TUI for answer/footer evidence and then cleans up the tmux session, but it does not replace manual visual review of the full TUI checklist. Release readiness still requires the manual checks below for detailed TUI behavior, bridge, standalone native replay, abort/cancel, packaging, cleanup, and any touched runtime surface not covered by the helper.
49
+
25
50
  Pass criteria:
26
51
 
27
52
  - `cursor/composer-2.5` appears in the model list.
28
53
  - No Cursor key or auth token is printed.
29
- - If `CURSOR_API_KEY` is unavailable and `/login` is not configured, stop and report the live smoke as blocked.
54
+ - If neither `~/.pi/agent/auth.json` cursor auth nor `CURSOR_API_KEY` is available, stop and report the live smoke as blocked.
30
55
 
31
56
  ## 1. Basic provider reality check
32
57
 
@@ -155,13 +180,25 @@ Forbidden fields:
155
180
  Run a forbidden-material scan over smoke stderr/captures:
156
181
 
157
182
  ```bash
158
- find "$SMOKE_DIR" -type f \( -name '*stderr.txt' -o -name 'capture*.txt' \) -print0 |
159
- xargs -0 grep -E 'CURSOR_API_KEY|Bearer [A-Za-z0-9._-]+|/cursor-pi-tool-bridge/[^ ]+/mcp|127\.0\.0\.1:[0-9]+/cursor-pi-tool-bridge|apiKey|cookie|session-cookie|secret-token'
183
+ forbidden_files="$(find "$SMOKE_DIR" -type f \( -name '*stderr.txt' -o -name '*capture*.txt' \) -print0 |
184
+ xargs -0 grep -IlE 'CURSOR_API_KEY|Bearer [A-Za-z0-9._-]+|/cursor-pi-tool-bridge/[^ ]+/mcp|127\.0\.0\.1:[0-9]+/cursor-pi-tool-bridge|apiKey|cookie|session-cookie|secret-token' || true)"
185
+ if [[ -n "$forbidden_files" ]]; then
186
+ printf 'Forbidden material matched in smoke files; inspect locally without pasting matched lines.\n' >&2
187
+ while IFS= read -r file; do
188
+ [[ -z "$file" ]] && continue
189
+ if [[ "$file" == "$SMOKE_DIR/"* ]]; then
190
+ printf ' %s\n' "${file#"$SMOKE_DIR/"}" >&2
191
+ else
192
+ printf ' %s\n' "$file" >&2
193
+ fi
194
+ done <<<"$forbidden_files"
195
+ exit 1
196
+ fi
160
197
  ```
161
198
 
162
199
  Pass criteria:
163
200
 
164
- - The grep returns no matches except deliberately planted test strings that are asserted not to appear in serialized diagnostics.
201
+ - The scan returns no matching files except deliberately planted test strings that are asserted not to appear in serialized diagnostics, and it does not print matched secret-bearing lines.
165
202
  - If tool names themselves are considered sensitive for a release target, do not enable `PI_CURSOR_PI_TOOL_BRIDGE_DEBUG=1` for shared logs. The diagnostics contract intentionally allows tool names.
166
203
 
167
204
  ## 7. Long-running bridge and abort/cancel
@@ -190,45 +227,21 @@ Pass criteria:
190
227
  After all live runs, scan JSONL structurally instead of reading raw content into a report:
191
228
 
192
229
  ```bash
193
- node <<'NODE'
194
- const fs = require('fs');
195
- const path = require('path');
196
- const root = process.env.SMOKE_DIR;
197
- const files = [];
198
- function walk(dir) {
199
- for (const name of fs.readdirSync(dir)) {
200
- const p = path.join(dir, name);
201
- const st = fs.statSync(p);
202
- if (st.isDirectory()) walk(p);
203
- else if (p.endsWith('.jsonl')) files.push(p);
204
- }
205
- }
206
- walk(root);
207
- let failures = 0;
208
- for (const file of files.sort()) {
209
- const records = fs.readFileSync(file, 'utf8').trim().split(/\n+/).filter(Boolean).map(JSON.parse);
210
- const messages = records.filter((record) => record.type === 'message').map((record) => record.message);
211
- const assistants = messages.filter((message) => message.role === 'assistant');
212
- const usage = assistants.map((message) => message.usage).filter(Boolean);
213
- const badUsage = usage.filter((u) =>
214
- typeof u.input !== 'number' || u.input < 0 ||
215
- typeof u.output !== 'number' || u.output < 0 ||
216
- typeof u.totalTokens !== 'number' || u.totalTokens < 0 ||
217
- u.cacheRead !== 0 || u.cacheWrite !== 0
218
- );
219
- if (usage.length !== assistants.length || badUsage.length > 0) failures += 1;
220
- console.log(JSON.stringify({ file: path.relative(root, file), assistantCount: assistants.length, usageCount: usage.length, badUsageCount: badUsage.length }));
221
- }
222
- process.exit(failures === 0 ? 0 : 1);
223
- NODE
230
+ node scripts/validate-smoke-jsonl.mjs "$SMOKE_DIR"
224
231
  ```
225
232
 
226
- Pass criteria:
233
+ Script-enforced pass criteria:
234
+
235
+ - Every scanned JSONL file is parseable and non-empty.
236
+ - Every scanned JSONL file contains at least one assistant message.
237
+ - Every assistant message has usage metadata.
238
+ - Assistant usage `input`, `output`, and `totalTokens` are non-negative numbers.
239
+ - Assistant usage `cacheRead` and `cacheWrite` are exactly `0`.
240
+
241
+ Additional manual usage checks for provider/accounting changes:
227
242
 
228
- - Every assistant message has valid usage.
229
- - Cache fields remain `0`.
230
- - Tool-heavy runs show nonzero output for visible assistant/tool-call activity.
231
- - Split runs count consumed tool-result input once on the following assistant turn.
243
+ - Tool-heavy runs should show nonzero output for visible assistant/tool-call activity.
244
+ - Split runs should count consumed tool-result input once on the following assistant turn.
232
245
 
233
246
  ## 9. Standard local gates
234
247
 
@@ -16,7 +16,7 @@ Current implementation notes:
16
16
  - Image payload forwarding sends images only from the latest user message. If the latest user turn is plain text after an earlier image turn, the transcript keeps an `[image omitted from transcript]` placeholder but no image bytes are sent to Cursor. The prompt explicitly tells Cursor that prior image bytes are unavailable and to ask the user to reattach or describe a prior image when needed. Carrying images forward across turns remains a future product decision because it affects token cost, privacy, stale visual context, and expected multimodal follow-up behavior.
17
17
  - `@cursor/sdk` is a package dependency of this extension; users should not need a global SDK install.
18
18
  - Cursor auth uses pi-native API-key resolution for provider `cursor`: CLI `--api-key`, stored `~/.pi/agent/auth.json` API key from `/login`, then `CURSOR_API_KEY`. The extension config file stores only non-secret Cursor-only state such as fast defaults.
19
- - Local agents pass `settingSources: ["all"]` by default so Cursor MCP servers, plugin tools, project/user settings, and related Cursor-native capabilities are available. Users can narrow loading with a comma-separated list such as `PI_CURSOR_SETTING_SOURCES=project,user,plugins`, or disable ambient setting sources with `PI_CURSOR_SETTING_SOURCES=none`. The provider suppresses direct Cursor SDK startup writes around agent creation so setting/skill loading logs do not pollute pi's TUI.
19
+ - Local agents pass `settingSources: ["all"]` by default so Cursor MCP servers, plugin tools, project/user settings, and related Cursor-native capabilities are available. Users can narrow loading with a comma-separated list such as `PI_CURSOR_SETTING_SOURCES=project,user,plugins`, or disable ambient setting sources with `PI_CURSOR_SETTING_SOURCES=none`. The provider suppresses direct Cursor SDK bootstrap stdout/stderr/console noise (including late first-send workspace loading such as hook compatibility warnings) so it does not pollute pi's TUI.
20
20
  - Cursor SDK models are treated as thinking-capable even when pi reports `thinking=no`; that pi column only means the SDK did not expose a pi-controllable thinking parameter for that model.
21
21
  - Cursor-side thinking remains visible through pi's native thinking rendering when the Cursor SDK emits thinking or summary deltas.
22
22
  - Local Cursor agents get two tool surfaces. First, Cursor keeps the Cursor SDK local-agent tool surface plus configured Cursor settings, plugins, and Cursor MCP servers. Second, pi-cursor-sdk exposes active pi tools through a default-on, tokenized loopback MCP bridge when bridgeable tools exist.
@@ -27,16 +27,17 @@ Current implementation notes:
27
27
  - Cursor SDK MCP tool calls use a guarded timeout override because installed `@cursor/sdk` 1.0.13 has a 60-second MCP request default with no public per-server timeout option. The extension extends that Cursor SDK MCP `callTool` timeout path to 3600 seconds by default. Users can override it with `PI_CURSOR_MCP_TOOL_TIMEOUT_MS` or `PI_CURSOR_MCP_TOOL_TIMEOUT_SECONDS`.
28
28
  - Bridge diagnostics are opt-in only: `PI_CURSOR_PI_TOOL_BRIDGE_DEBUG=1` writes typed, allowlisted, scrubbed single-line JSONL records to `process.stderr` with prefix `[pi-cursor-sdk:bridge]`. Diagnostics are scrubbed operational logs, not anonymous telemetry. They intentionally include tool names, safe correlation IDs, run lifecycle, exposed pi↔MCP name pairs, queued requests, result resolution, rejection, cancellation, and pending counts. Correlation IDs are generated independently from the tokenized endpoint path, and Cursor MCP call IDs are hashed before serialization. Diagnostics must not include endpoint paths/URLs/path components/tokens, API keys, bearer tokens, cookies, session credentials, raw args/results, stdout/stderr payloads, file contents, Cursor settings output, or local private session paths in tracked docs, and they must not call pi UI status, notification, or footer APIs. If tool names themselves are unacceptable for a release target, bridge debug diagnostics are not safe for shared logs under the current contract.
29
29
  - This repo does not provide a generic desktop-automation, browser-driver, or CDP recipe. Provider docs should describe pi-cursor-sdk's Cursor provider/bridge contract only.
30
- - Cursor internal tool activity is recorded from SDK events and scrubbed. In interactive TTY sessions, supported completed `read`, `bash`, `grep`, `find`, `ls`, `edit`, `write`, diagnostics, delete, todo/plan, task, image generation, and MCP activity is replayed through pi's native tool-call rendering path with recorded Cursor results, so the TUI can show native-looking cards without rerunning Cursor's reads/shell commands/file edits. Cursor `glob` activity is replayed through native `find` cards. Cursor write activity is replayed through native-looking `write` cards, and Cursor StrReplace/edit activity uses native-looking `edit` only when recorded arguments truthfully satisfy pi's `edit` schema; path-only Cursor edit and notebook edit replay falls back to neutral Cursor activity before pi validation. Diagnostics, delete, todos/plans, task, image, and MCP activity use neutral Cursor activity cards with pi's default success/error shell. Neutral Cursor activity calls include `activityTitle` and, when available, `activitySummary` so partial/collapsed cards preserve identity such as `Cursor plan`, `Cursor todos`, `Cursor MCP`, or `Cursor edit`. Replay-only tools display recorded Cursor results, normalize workspace-local paths/diff headers for display, use pi diff colors for edit previews and path-inferred syntax highlighting for write previews, and fail closed if called without a recorded result. Native replay wrappers are registered only for tool names not already owned by another extension; conflicting tools use the bounded scrubbed transcript fallback. Cursor workflow tools such as `SwitchMode` and Cursor todo state are not pi workflow controls; reported todo/plan events are displayed as Cursor activity only. Plan/todo replay cards can be followed by Cursor's final plan text, selected from `run.wait().result` when Cursor provides one and trimmed against already-emitted text. Started Cursor SDK tool calls that never receive a completion event are discarded without synthetic replay errors; explicit failures remain visible when Cursor reports them through completed tool calls or step results. `PI_CURSOR_NATIVE_TOOL_DISPLAY=0` disables native replay, and `PI_CURSOR_REGISTER_NATIVE_TOOLS=0` is a registration-only opt-out that keeps the transcript fallback without shadowing pi tool names. When bridge or native replay cards are emitted, the provider mirrors Codex's turn shape as Cursor SDK activity arrives: assistant `toolUse`, pi `toolResult`s, live post-tool Cursor thinking/text, any later tool batches as further `toolUse` turns, then Cursor's final assistant answer. For shell replay, completed `stdout` / `stderr` are primary; unambiguous `shell-output-delta` data is used only as display-only fallback for empty successful shell completions, and overlapping shell calls drop ambiguous deltas instead of guessing. Non-interactive runs keep bounded scrubbed transcript output instead, preserving `pi -p` assistant text output. Cursor text deltas stream live when no live-run turn split is active.
30
+ - Cursor internal tool activity is recorded from SDK events and scrubbed. In interactive TTY sessions, supported completed `read`, `bash`, `grep`, `find`, `ls`, `edit`, `write`, diagnostics, delete, todo/plan, task, image generation, and MCP activity is replayed through pi's native tool-call rendering path with recorded Cursor results, so the TUI can show native-looking cards without rerunning Cursor's reads/shell commands/file edits. Cursor `glob` activity is replayed through native `find` cards. Cursor write activity is replayed through native-looking `write` cards, and Cursor StrReplace/edit activity uses native-looking `edit` only when recorded arguments truthfully satisfy pi's `edit` schema; path-only Cursor edit and notebook edit replay falls back to neutral Cursor activity before pi validation. Diagnostics, delete, todos/plans, task, image, and MCP activity use neutral Cursor activity cards with pi's default success/error shell. Neutral Cursor activity calls include `activityTitle` and, when available, `activitySummary` so partial/collapsed cards preserve identity such as `Cursor plan`, `Cursor todos`, `Cursor MCP`, or `Cursor edit`. When the Cursor SDK emits a running `task` tool call with a description, the provider surfaces one low-noise in-progress line such as `Cursor task: Explore AI/automation projects` from SDK args only; it does not emit generic heartbeat text or per-tool start cards for ordinary `read`, `bash`, or `grep` activity. Replay-only tools display recorded Cursor results, normalize workspace-local paths/diff headers for display, use pi diff colors for edit previews and path-inferred syntax highlighting for write previews, and fail closed if called without a recorded result. Native replay wrappers are registered only for tool names not already owned by another extension; conflicting tools use the bounded scrubbed transcript fallback. Cursor workflow tools such as `SwitchMode` and Cursor todo state are not pi workflow controls; reported todo/plan events are displayed as Cursor activity only. Plan/todo replay cards can be followed by Cursor's final plan text, selected from `run.wait().result` when Cursor provides one and trimmed against already-emitted text. Started Cursor SDK tool calls that never receive a completion event are discarded without synthetic replay errors; explicit failures remain visible when Cursor reports them through completed tool calls or step results. `PI_CURSOR_NATIVE_TOOL_DISPLAY=0` disables native replay, and `PI_CURSOR_REGISTER_NATIVE_TOOLS=0` is a registration-only opt-out that keeps the transcript fallback without shadowing pi tool names. When bridge or native replay cards are emitted, the provider mirrors Codex's turn shape as Cursor SDK activity arrives: assistant `toolUse`, pi `toolResult`s, live post-tool Cursor thinking/text, any later tool batches as further `toolUse` turns, then Cursor's final assistant answer. For shell replay, completed `stdout` / `stderr` are primary; unambiguous `shell-output-delta` data is used only as display-only fallback for empty successful shell completions, and overlapping shell calls drop ambiguous deltas instead of guessing. Non-interactive runs keep bounded scrubbed transcript output instead, preserving `pi -p` assistant text output. Cursor text deltas stream live when no live-run turn split is active.
31
31
  - Synthetic replay names are internal compatibility details. New model-facing prompt text and user-visible cards use native tool names when renderer-compatible, or neutral Cursor activity labels when not. Legacy sessions containing old internal replay names are sanitized before prompt/display. Bridge MCP names such as `pi__sem_reindex` are MCP-only; pi session output uses real pi tool names.
32
32
  - Cursor SDK usage events report cumulative internal agent/tool/cache work, not the replayable pi prompt context. The extension does not copy raw Cursor SDK usage into pi usage or compaction. For Cursor assistant messages, `usage.input`/`usage.output` are approximate pi session activity components: initial Cursor prompt input is counted once, consumed split-run tool results are counted as deduped input on the following assistant turn, and assistant output includes visible text/thinking/tool-call content. `usage.totalTokens` is the replayable Cursor prompt/context estimate derived from the same `buildCursorPrompt()` path used for `Agent.send`; it may differ from `input + output` and is the context-safe value for display/compaction. `src/cursor-usage-accounting.ts` owns this usage policy, and `src/cursor-live-run-accounting.ts` owns prompt-once and consumed-tool-result accounting so provider usage and bridge result resolution share the same matched tool-result boundary.
33
33
  - Audit observation, 2026-05-19, superseded by the 2026-05-21 replay pass: a missing-file read with Composer 2.5 emitted `tool-call-started` for Cursor `read`, then streamed final text `Error: File not found`, but did not emit `tool-call-completed` or an `onStep` `toolCall` error result. Leftover started calls are now discarded at run completion instead of becoming synthetic replay errors. Cursor-reported completed/step errors remain visible.
34
34
  - Maintainer visual verification for replay-card changes should follow [Cursor Native Tool Visual Audit Workflow](./cursor-native-tool-visual-audit.md): offscreen PTY-driven pi run, xterm.js/Playwright screenshot rendering, and JSONL inspection before accepting commits or PRs.
35
- - Cursor provider/runtime releases should follow [Cursor Live Smoke Checklist](./cursor-live-smoke-checklist.md) with real `pi -e . --cursor-no-fast --model cursor/composer-2.5` invocations, manual observation, temporary session dirs, diagnostics scans, and persisted JSONL inspection. Assume every runtime surface is in scope. A release is not ready when any live check is optional, deferred, mostly passing, or unobserved.
35
+ - Cursor provider/runtime releases should follow [Cursor Live Smoke Checklist](./cursor-live-smoke-checklist.md) with real `pi -e . --cursor-no-fast --model cursor/composer-2.5` invocations, manual observation, temporary session dirs, diagnostics scans, and persisted JSONL inspection. See [Cursor testing lessons](./cursor-testing-lessons.md) for auth.json seeding, isolated smoke harnesses, and replay JSONL scans. Assume every runtime surface is in scope. A release is not ready when any live check is optional, deferred, mostly passing, or unobserved.
36
36
  - For models without a catalog `context` parameter, context windows are not hardcoded. The extension ships a bundled SDK-derived default/non-Max cache generated from `createAgentPlatform().checkpointStore.loadLatest(agentId).tokenDetails.maxTokens`. Successful runs can update a local override cache, but model discovery does not probe models at startup.
37
37
  - Max Mode context windows are distinct from default/non-Max context windows. `@cursor/sdk` 1.0.13 documentation says the SDK may enable Max Mode automatically when a selected model requires it, but the public local-agent `ModelSelection` path still does not expose a manual Max Mode selector. Do not advertise Max Mode context windows unless the SDK catalog exposes an exact parameter/variant or the SDK public API adds a Max Mode selector that the extension actually sends.
38
38
  - `@cursor/sdk` 1.0.13 adds latest-style `ModelListItem.aliases`. The extension registers only unambiguous aliases as pi model IDs (with the same context suffixes when applicable) and sends the alias back in `ModelSelection.id`, while sharing Cursor-only state such as fast defaults with the underlying catalog `id`. Aliases shared by multiple base models, such as generic family aliases, are skipped because the pi row metadata would otherwise imply one base model while Cursor may resolve the alias to another.
39
39
  - Session-scoped Cursor SDK agent pooling reuses one live `@cursor/sdk` agent across compatible follow-up turns within the same pi session scope. `computeCursorContextFingerprint()` and `shouldBootstrapCursorSend()` decide whether the next turn sends a full bootstrap prompt or an incremental follow-up. The pool recreates the agent when context diverges, when branch or compaction summaries appear after `/tree` navigation or compaction, when the API key identity changes, after send errors, on `session_shutdown`, and when `session_before_tree` / `session_tree` invalidate the active branch. Incremental sends omit the full Cursor SDK tool boundary block because the session agent retains prior bootstrap context.
40
+ - Pi steering/follow-up delivery can arrive while a split live Cursor SDK run is still active. The provider resolves pending live runs by scanning trailing `toolResult` messages while skipping trailing `user` messages, tracks the active live run per session scope, and resumes the in-flight run instead of calling `Agent.send()` again. When the context ends with steering user text after tool results, the provider releases the prior live run and chains an incremental `Agent.send()` for the latest user message in the same provider turn; if the prior run emits more text or tool requests after steering arrives, that stale activity is cancelled instead of surfacing another old-run tool turn and losing the new user input. A pre-send guard waits for or resumes any still-active scoped live run before starting a fresh send so `@cursor/sdk` `AgentBusyError` (`already has active run`) does not surface to pi users.
40
41
 
41
42
  ## Goal
42
43
 
@@ -0,0 +1,199 @@
1
+ # Cursor Testing Lessons
2
+
3
+ ## Purpose
4
+
5
+ This document records maintainer testing lessons for `pi-cursor-sdk`. It complements unit tests and the [Cursor live smoke checklist](./cursor-live-smoke-checklist.md). Use it when adding regression coverage, debugging false-green releases, or building isolated smoke harnesses.
6
+
7
+ ## Core lesson: integration-shaped bugs beat unit mocks
8
+
9
+ The native replay `Tool grep not found` failure was integration-shaped, not unit-shaped:
10
+
11
+ 1. **Plan mode** calls `setActiveTools(["read", "bash", "edit", "write"])` when execution starts.
12
+ 2. **pi-cursor-sdk** only re-synced native replay wrappers on `session_start` / `model_select`, not every turn.
13
+ 3. **The provider** still emitted native replay `toolUse` for `grep` / `cursor`.
14
+ 4. **pi's agent loop** looked up tools in `context.tools` and failed with `Tool grep not found`.
15
+
16
+ Passing hundreds of unit tests did not prove that chain was safe. Regression coverage now includes:
17
+
18
+ - `test/index.test.ts` — `before_agent_start` and `turn_start` resync after plan-style strip
19
+ - `test/cursor-native-replay-stress.test.ts` — plan strip → resync → grep replay; inactive-tool trace fallbacks
20
+ - `test/cursor-provider-replay-live-run.test.ts` — inactive replay tools emit trace instead of broken `toolUse`
21
+ - `test/cursor-native-replay-trace.test.ts` — shared inactive replay trace formatting
22
+ - `test/cursor-native-replay-routing.test.ts` — `resolveNativeReplayDisposition` and `partitionNativeToolsByActiveContext`
23
+
24
+ When changing provider/runtime behavior, ask whether the bug spans **pi extension lifecycle**, **active tool state**, **provider streaming**, and **persisted JSONL**. If yes, add an integration-style unit test or live smoke coverage for that chain.
25
+
26
+ ## Dual-check invariant: `context.tools` vs pi active tools
27
+
28
+ Native replay routing intentionally uses two layers:
29
+
30
+ 1. **Extension resync** (`before_agent_start`, `turn_start`) updates pi's active tool set via `syncRegisteredNativeCursorToolsForModel`. This fixes the common case where plan-mode execute strips `grep`/`find`/`cursor` before the next turn.
31
+ 2. **Provider routing** uses the **`context.tools` snapshot** captured when `streamCursor()` starts (`getActiveContextToolNames` in `src/cursor-context-tools.ts`). It does not read live `pi.getActiveTools()` mid-stream.
32
+
33
+ `src/cursor-native-replay-routing.ts` centralizes provider-side routing against the same `context.tools` snapshot:
34
+
35
+ - **Turn coordinator** calls `resolveNativeReplayDisposition()` per completed SDK tool → `queue_replay` (queue native `toolUse`), `inactive_trace` (`formatInactiveCursorReplayTrace()`), or `transcript_trace`.
36
+ - **Live-run drain** calls `partitionNativeToolsByActiveContext()` on already-queued native tool batches → active tools become `toolUse`; inactive tools get trace only and the batch returns `"handled"` without `toolUse`.
37
+
38
+ Disposition outcomes:
39
+
40
+ - `queue_replay` — tool is in `context.tools` and a live run exists
41
+ - `inactive_trace` — native replay tool missing from `context.tools`
42
+ - `transcript_trace` — native replay off or non-native tool
43
+
44
+ If resync runs but `context.tools` is still stale (e.g. only `read` listed), the provider must **not** emit `toolUse` for inactive tools. `test/cursor-native-replay-stress.test.ts` covers that stale-snapshot path.
45
+
46
+ ## Auth: use `auth.json`, not only env
47
+
48
+ pi resolves Cursor auth in this order:
49
+
50
+ 1. pi `--api-key`
51
+ 2. stored `cursor` key in `~/.pi/agent/auth.json` from `/login`
52
+ 3. `CURSOR_API_KEY`
53
+
54
+ For live smoke and isolated harnesses:
55
+
56
+ - **Do not assume** `CURSOR_API_KEY` or `~/.secrets` alone is enough.
57
+ - **Do assume** pi reads auth from the active `HOME`, usually `~/.pi/agent/auth.json`.
58
+ - Isolated runs with `env -i HOME=/tmp/...` must **copy** `auth.json` into that temporary home before calling `pi`.
59
+
60
+ Example seed step used by `scripts/isolated-cursor-smoke.sh`:
61
+
62
+ ```bash
63
+ mkdir -p "$HOME/.pi/agent"
64
+ cp "$REAL_HOME/.pi/agent/auth.json" "$HOME/.pi/agent/auth.json"
65
+ chmod 600 "$HOME/.pi/agent/auth.json"
66
+ ```
67
+
68
+ Fallback when `auth.json` lacks a `cursor` provider entry:
69
+
70
+ ```bash
71
+ export CURSOR_API_KEY="your-key"
72
+ ```
73
+
74
+ Never commit, log, or paste `auth.json` contents, API keys, or session JSONL with secrets.
75
+
76
+ ## Isolated directories: why and how
77
+
78
+ Use isolated `/tmp` trees when validating:
79
+
80
+ - packed tarball install (`npm pack` → extract → `pi install -l`)
81
+ - clean `HOME` with no inherited shell profile state
82
+ - plan-mode-style tool stripping via a shim extension
83
+ - JSONL replay-error scans independent of stdout
84
+
85
+ Recommended layout:
86
+
87
+ ```text
88
+ /tmp/pi-cursor-sdk-isolated-<timestamp>/
89
+ home/ # seeded ~/.pi/agent/auth.json
90
+ pack/ # npm pack output (*.tgz)
91
+ extract/package/ # unpacked extension
92
+ project/ # empty pi project for install -l
93
+ sessions/
94
+ basic/
95
+ native-replay/
96
+ plan-strip/
97
+ ```
98
+
99
+ Commands:
100
+
101
+ ```bash
102
+ # full isolated smoke (unit preflight + pack + live pi)
103
+ npm run smoke:isolated
104
+
105
+ # pack/unit only, no live Cursor calls
106
+ SKIP_LIVE=1 npm run smoke:isolated
107
+
108
+ # custom artifact root
109
+ ISOLATED=/tmp/pi-cursor-sdk-isolated-manual npm run smoke:isolated
110
+ ```
111
+
112
+ Every live check should use its own `--session-dir` under the isolated tree. Do not reuse session dirs across scenarios.
113
+
114
+ ## Harness traps we hit repeatedly
115
+
116
+ | Trap | What went wrong | Fix |
117
+ | --- | --- | --- |
118
+ | Clean `HOME` without auth | `pi` could not authenticate Cursor in isolated runs | Copy `~/.pi/agent/auth.json` into isolated `HOME` |
119
+ | `npm pack \| tail -1` | Captured npm notice text, not tarball path | Use `ls -t "$PACK_DIR"/*.tgz \| head -1` |
120
+ | Packed extension, no install | Provider never loaded in isolated project | Run `npm install --omit=dev` inside extracted package |
121
+ | Inherited shell env | mise/profile hooks hung or polluted runs | Use `env -i ... MISE_DISABLE=1` for isolated pi calls |
122
+ | No per-check timeout | One stuck prompt blocked entire harness | Wrap each live check with timeout/watchdog |
123
+ | stdout-only assertions | Missed replay failures persisted only in JSONL | Scan JSONL for `Tool grep/cursor/find/ls not found` |
124
+ | Plan strip only on first turn | Under-tested multi-turn resync | Shim strips on every `turn_start`; stress multi-turn separately |
125
+ | Assuming env auth equals pi auth | False "blocked" or false "pass" in CI-like shells | Check `auth.json` provider keys explicitly when needed |
126
+
127
+ ## JSONL is the source of truth for replay regressions
128
+
129
+ Stdout can look fine while persisted tool results contain errors. Prefer structural JSONL scans over grepping terminal output.
130
+
131
+ Replay failure scan:
132
+
133
+ ```bash
134
+ node scripts/validate-smoke-jsonl.mjs --replay-errors-only "$SESSION_DIR"
135
+ ```
136
+
137
+ Combined usage + replay scan after broader smoke:
138
+
139
+ ```bash
140
+ node scripts/validate-smoke-jsonl.mjs --replay-errors "$SMOKE_DIR"
141
+ ```
142
+
143
+ The replay scan fails on records containing:
144
+
145
+ - `Tool grep not found`
146
+ - `Tool cursor not found`
147
+ - `Tool find not found`
148
+ - `Tool ls not found`
149
+
150
+ ## Plan-mode regression scenario
151
+
152
+ Simulate plan-mode execute stripping with the repo fixture:
153
+
154
+ - `scripts/fixtures/plan-strip-shim/index.ts`
155
+
156
+ It sets active tools to `read`, `bash`, `edit`, `write` on each `turn_start`. Run pi with:
157
+
158
+ ```bash
159
+ pi -e scripts/fixtures/plan-strip-shim --cursor-no-fast --model cursor/composer-2.5 \
160
+ --session-dir "$SMOKE_DIR/plan-strip" \
161
+ -p 'After reset, read README.md and answer PLAN_STRIP_OK=yes.'
162
+ ```
163
+
164
+ Pass criteria:
165
+
166
+ - No replay `Tool * not found` entries in JSONL
167
+ - Native replay tools (`grep`, `find`, `read`, etc.) succeed after `turn_start` resync
168
+ - On non-Cursor model switch, native replay wrappers are removed except core pi tools
169
+
170
+ ## Local validation ladder
171
+
172
+ Run in order before claiming release-ready for provider/runtime changes:
173
+
174
+ ```bash
175
+ npm test
176
+ npm run typecheck
177
+ npm pack --dry-run
178
+ SKIP_LIVE=1 npm run smoke:isolated
179
+ npm run smoke:isolated # requires auth.json or CURSOR_API_KEY
180
+ npm run smoke:live # partial tmux checklist subset
181
+ ```
182
+
183
+ Then follow the full manual [Cursor live smoke checklist](./cursor-live-smoke-checklist.md) for surfaces the scripts do not cover (bridge MCP, abort/cancel, full TUI observation, packaging review, cleanup).
184
+
185
+ ## What belongs in CI vs manual smoke
186
+
187
+ - **CI / default `npm test`:** mocked provider tests, extension lifecycle tests, JSONL validator tests, script syntax/help checks. No live Cursor calls.
188
+ - **Manual / pre-release:** `npm run smoke:isolated`, `npm run smoke:live`, and the full checklist. Requires real Cursor auth and observes TUI/runtime behavior mocks cannot reproduce.
189
+
190
+ If live smoke auth is unavailable, report the release as **blocked**, not skipped-ready.
191
+
192
+ ## Related docs and scripts
193
+
194
+ - [Cursor live smoke checklist](./cursor-live-smoke-checklist.md)
195
+ - [Cursor native tool replay](./cursor-native-tool-replay.md)
196
+ - `scripts/isolated-cursor-smoke.sh`
197
+ - `scripts/tmux-live-smoke.sh`
198
+ - `scripts/validate-smoke-jsonl.mjs`
199
+ - `test/helpers/cursor-provider-harness.ts` — controllable native replay pi mock (`createNativeToolDisplayPiForTest`)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-cursor-sdk",
3
- "version": "0.1.16",
3
+ "version": "0.1.18",
4
4
  "description": "pi provider extension backed by @cursor/sdk local agents",
5
5
  "author": "Mitch Fultz (https://github.com/fitchmultz)",
6
6
  "license": "MIT",
@@ -24,9 +24,14 @@
24
24
  "files": [
25
25
  "src",
26
26
  "scripts/refresh-cursor-model-snapshots.mjs",
27
+ "scripts/steering-rpc-smoke.mjs",
28
+ "scripts/tmux-live-smoke.sh",
29
+ "scripts/isolated-cursor-smoke.sh",
30
+ "scripts/validate-smoke-jsonl.mjs",
27
31
  "README.md",
28
32
  "docs/cursor-model-ux-spec.md",
29
33
  "docs/cursor-live-smoke-checklist.md",
34
+ "docs/cursor-testing-lessons.md",
30
35
  "docs/cursor-native-tool-replay.md",
31
36
  "docs/cursor-native-tool-visual-audit.md",
32
37
  "LICENSE",
@@ -40,7 +45,11 @@
40
45
  "typecheck": "tsc --noEmit",
41
46
  "test": "vitest run",
42
47
  "test:watch": "vitest",
43
- "refresh:cursor-snapshots": "node scripts/refresh-cursor-model-snapshots.mjs"
48
+ "refresh:cursor-snapshots": "node scripts/refresh-cursor-model-snapshots.mjs",
49
+ "smoke:live": "scripts/tmux-live-smoke.sh",
50
+ "smoke:isolated": "scripts/isolated-cursor-smoke.sh",
51
+ "smoke:steering": "node scripts/steering-rpc-smoke.mjs",
52
+ "smoke:jsonl": "node scripts/validate-smoke-jsonl.mjs"
44
53
  },
45
54
  "dependencies": {
46
55
  "@cursor/sdk": "^1.0.13",
@@ -53,9 +62,9 @@
53
62
  "typebox": "*"
54
63
  },
55
64
  "devDependencies": {
56
- "@earendil-works/pi-ai": "^0.75.3",
57
- "@earendil-works/pi-coding-agent": "^0.75.3",
58
- "@earendil-works/pi-tui": "^0.75.3",
65
+ "@earendil-works/pi-ai": "^0.75.5",
66
+ "@earendil-works/pi-coding-agent": "^0.75.5",
67
+ "@earendil-works/pi-tui": "^0.75.5",
59
68
  "typebox": "^1.1.38",
60
69
  "typescript": "^6.0.3",
61
70
  "vitest": "^4.1.6"