Align workspace pi SDK dependencies with the ModelRuntime API required by the engine. - Pin pi AI and coding-agent packages to 0.80.10 across workspace consumers. - Keep session option typing compatible with the updated SDK contract. - Add a patch changeset and regenerate the dependency lockfile. Files changed: .changeset/fn-8179-pi-sdk-align.md | 7 + packages/cli/package.json | 4 +- packages/core/package.json | 2 +- packages/dashboard/package.json | 2 +- packages/engine/package.json | 4 +- packages/engine/src/pi.ts | 8 +- packages/pi-claude-cli/package.json | 8 +- .../src/thinking-config.ts | 9 +- pnpm-lock.yaml | 947 +++++++++++---------- pnpm-workspace.yaml | 5 + 10 files changed, 520 insertions(+), 476 deletions(-) Fusion-Task-Id: FN-8179 Fusion-Task-Lineage: aef45c2e-f353-4014-93de-44be91f43293 Co-authored-by: Fusion (runfusion.ai) <noreply@runfusion.ai>
41 lines
1.0 KiB
JSON
41 lines
1.0 KiB
JSON
{
|
|
"name": "@fusion/pi-claude-cli",
|
|
"version": "0.60.0",
|
|
"description": "Fusion vendored fork: pi coding-agent extension that routes LLM calls through the Claude Code CLI. Forked from rchern/pi-claude-cli (MIT). See UPSTREAM.md.",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"type": "module",
|
|
"main": "index.ts",
|
|
"keywords": [
|
|
"pi-package"
|
|
],
|
|
"pi": {
|
|
"extensions": [
|
|
"index.ts"
|
|
]
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Runfusion/Fusion",
|
|
"directory": "packages/pi-claude-cli"
|
|
},
|
|
"dependencies": {
|
|
"@agentclientprotocol/sdk": "0.24.0"
|
|
},
|
|
"peerDependencies": {
|
|
"@earendil-works/pi-ai": "^0.80.10",
|
|
"@earendil-works/pi-coding-agent": "^0.80.10"
|
|
},
|
|
"devDependencies": {
|
|
"@earendil-works/pi-ai": "^0.80.10",
|
|
"@earendil-works/pi-coding-agent": "^0.80.10",
|
|
"@types/node": "^22.0.0",
|
|
"typescript": "^5.7.0",
|
|
"vitest": "^4.1.0"
|
|
},
|
|
"scripts": {
|
|
"test": "vitest run --reporter=dot",
|
|
"typecheck": "tsc --noEmit"
|
|
}
|
|
}
|