@sandagent/runner-cli 0.9.3 → 0.9.4
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/bundle.mjs +6 -1
- package/package.json +4 -4
package/dist/bundle.mjs
CHANGED
|
@@ -1460,7 +1460,12 @@ function createPiRunner(options = {}) {
|
|
|
1460
1460
|
resourceLoader
|
|
1461
1461
|
});
|
|
1462
1462
|
if (options.systemPrompt != null && options.systemPrompt !== "") {
|
|
1463
|
-
session.agent.
|
|
1463
|
+
const existing = session.agent.state.systemPrompt ?? "";
|
|
1464
|
+
session.agent.setSystemPrompt(existing ? `${existing}
|
|
1465
|
+
|
|
1466
|
+
---
|
|
1467
|
+
|
|
1468
|
+
${options.systemPrompt}` : options.systemPrompt);
|
|
1464
1469
|
}
|
|
1465
1470
|
const eventQueue = [];
|
|
1466
1471
|
let isComplete = false;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sandagent/runner-cli",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.4",
|
|
4
4
|
"description": "SandAgent Runner CLI - Like gemini-cli or claude-code, runs in your local terminal with AI SDK UI streaming",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -53,11 +53,11 @@
|
|
|
53
53
|
"esbuild": "^0.27.2",
|
|
54
54
|
"typescript": "^5.3.0",
|
|
55
55
|
"vitest": "^1.6.1",
|
|
56
|
-
"@sandagent/runner-core": "0.1.0",
|
|
57
56
|
"@sandagent/runner-claude": "0.6.2",
|
|
58
|
-
"@sandagent/runner-gemini": "0.6.2",
|
|
59
|
-
"@sandagent/runner-opencode": "0.6.2",
|
|
60
57
|
"@sandagent/runner-codex": "0.6.2",
|
|
58
|
+
"@sandagent/runner-core": "0.1.0",
|
|
59
|
+
"@sandagent/runner-opencode": "0.6.2",
|
|
60
|
+
"@sandagent/runner-gemini": "0.6.2",
|
|
61
61
|
"@sandagent/runner-pi": "0.6.3"
|
|
62
62
|
},
|
|
63
63
|
"scripts": {
|