@zhushanwen/pi-agent-ext 1.1.0 → 1.1.1
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/package.json
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zhushanwen/pi-agent-ext",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "xyz-agent extension for Pi — session tree navigation and internal reload command",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.ts",
|
|
7
|
+
"xyz-agent": {
|
|
8
|
+
"role": "taiji"
|
|
9
|
+
},
|
|
7
10
|
"pi": {
|
|
8
11
|
"extensions": [
|
|
9
12
|
"./index.ts"
|
|
@@ -22,10 +25,11 @@
|
|
|
22
25
|
"index.ts"
|
|
23
26
|
],
|
|
24
27
|
"peerDependencies": {
|
|
25
|
-
"@earendil-works/pi-coding-agent": "
|
|
28
|
+
"@earendil-works/pi-coding-agent": "^0.84.1"
|
|
26
29
|
},
|
|
27
30
|
"devDependencies": {
|
|
28
31
|
"@types/node": "^24.0.0",
|
|
32
|
+
"@vitest/coverage-v8": "^4.1.9",
|
|
29
33
|
"vitest": "^4.1.8"
|
|
30
34
|
},
|
|
31
35
|
"scripts": {
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
* - __xyz_get_system_prompt__(Trace 视图「现取当前值」通道)→ pi.appendEntry
|
|
16
16
|
* 写 xyz:current-system-prompt custom entry(fullText/charCount/fetchedAt 形状)
|
|
17
17
|
*
|
|
18
|
-
* 运行:cd extensions/agent-ext && npx vitest run
|
|
18
|
+
* 运行:cd extensions/taiji/agent-ext && npx vitest run
|
|
19
19
|
*/
|
|
20
20
|
import { describe, it, expect, vi } from "vitest";
|
|
21
21
|
|