pi-cursor-sdk 0.1.10 → 0.1.11
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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.11 - 2026-05-18
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
- Updated the local pi package baseline to `@earendil-works/*` `0.75.3`, including the Node.js `>=22.19.0` runtime floor and refreshed npm lockfile.
|
|
7
|
+
- Added prompt metadata for the non-mutating Cursor replay tools so pi can describe `cursor_edit` and `cursor_write` more clearly in tool guidance.
|
|
8
|
+
- Removed tracked CueLoop runtime state from the repository and ignored local `.cueloop/` artifacts.
|
|
9
|
+
|
|
10
|
+
|
|
3
11
|
## 0.1.10 - 2026-05-15
|
|
4
12
|
|
|
5
13
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-cursor-sdk",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.11",
|
|
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",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
],
|
|
32
32
|
"type": "module",
|
|
33
33
|
"engines": {
|
|
34
|
-
"node": ">=
|
|
34
|
+
"node": ">=22.19.0"
|
|
35
35
|
},
|
|
36
36
|
"scripts": {
|
|
37
37
|
"typecheck": "tsc --noEmit",
|
|
@@ -44,11 +44,15 @@
|
|
|
44
44
|
},
|
|
45
45
|
"peerDependencies": {
|
|
46
46
|
"@earendil-works/pi-ai": "*",
|
|
47
|
-
"@earendil-works/pi-coding-agent": "*"
|
|
47
|
+
"@earendil-works/pi-coding-agent": "*",
|
|
48
|
+
"@earendil-works/pi-tui": "*",
|
|
49
|
+
"typebox": "*"
|
|
48
50
|
},
|
|
49
51
|
"devDependencies": {
|
|
50
|
-
"@earendil-works/pi-ai": "^0.
|
|
51
|
-
"@earendil-works/pi-coding-agent": "^0.
|
|
52
|
+
"@earendil-works/pi-ai": "^0.75.3",
|
|
53
|
+
"@earendil-works/pi-coding-agent": "^0.75.3",
|
|
54
|
+
"@earendil-works/pi-tui": "^0.75.3",
|
|
55
|
+
"typebox": "^1.1.38",
|
|
52
56
|
"typescript": "^6.0.3",
|
|
53
57
|
"vitest": "^4.1.6"
|
|
54
58
|
},
|
|
@@ -220,6 +220,10 @@ function createCursorReplayOnlyToolDefinition(toolName: "cursor_edit" | "cursor_
|
|
|
220
220
|
name: toolName,
|
|
221
221
|
label: `Cursor ${cursorToolName}`,
|
|
222
222
|
description: `Replay display for a Cursor SDK ${cursorToolName} operation. This tool only returns recorded Cursor results and never mutates files directly.`,
|
|
223
|
+
promptSnippet: `Render a recorded Cursor SDK ${cursorToolName} operation without mutating files.`,
|
|
224
|
+
promptGuidelines: [
|
|
225
|
+
`Use ${toolName} only for replaying Cursor SDK ${cursorToolName} results that were already produced by Cursor; ${toolName} does not perform file mutations.`,
|
|
226
|
+
],
|
|
223
227
|
parameters: cursorReplayToolSchema,
|
|
224
228
|
renderShell: "self",
|
|
225
229
|
async execute() {
|