@caupulican/pi-agent-core 0.85.4 → 0.86.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 +92 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@caupulican/pi-agent-core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.86.1",
|
|
4
4
|
"description": "General-purpose agent with transport abstraction, state management, and attachment support",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -8,16 +8,104 @@
|
|
|
8
8
|
"exports": {
|
|
9
9
|
".": {
|
|
10
10
|
"types": "./dist/index.d.ts",
|
|
11
|
+
"pi-source": "./src/index.ts",
|
|
11
12
|
"import": "./dist/index.js"
|
|
12
13
|
},
|
|
13
14
|
"./node": {
|
|
14
15
|
"types": "./dist/node.d.ts",
|
|
16
|
+
"pi-source": "./src/node.ts",
|
|
15
17
|
"import": "./dist/node.js"
|
|
16
18
|
},
|
|
19
|
+
"./agent": {
|
|
20
|
+
"types": "./dist/agent.d.ts",
|
|
21
|
+
"pi-source": "./src/agent.ts",
|
|
22
|
+
"import": "./dist/agent.js"
|
|
23
|
+
},
|
|
24
|
+
"./agent-loop": {
|
|
25
|
+
"types": "./dist/agent-loop.d.ts",
|
|
26
|
+
"pi-source": "./src/agent-loop.ts",
|
|
27
|
+
"import": "./dist/agent-loop.js"
|
|
28
|
+
},
|
|
29
|
+
"./compaction": {
|
|
30
|
+
"types": "./dist/compaction/index.d.ts",
|
|
31
|
+
"pi-source": "./src/compaction/index.ts",
|
|
32
|
+
"import": "./dist/compaction/index.js"
|
|
33
|
+
},
|
|
34
|
+
"./compaction/branch-summarization": {
|
|
35
|
+
"types": "./dist/compaction/branch-summarization.d.ts",
|
|
36
|
+
"pi-source": "./src/compaction/branch-summarization.ts",
|
|
37
|
+
"import": "./dist/compaction/branch-summarization.js"
|
|
38
|
+
},
|
|
39
|
+
"./compaction/compaction": {
|
|
40
|
+
"types": "./dist/compaction/compaction.d.ts",
|
|
41
|
+
"pi-source": "./src/compaction/compaction.ts",
|
|
42
|
+
"import": "./dist/compaction/compaction.js"
|
|
43
|
+
},
|
|
44
|
+
"./compaction/loop": {
|
|
45
|
+
"types": "./dist/compaction/loop.d.ts",
|
|
46
|
+
"pi-source": "./src/compaction/loop.ts",
|
|
47
|
+
"import": "./dist/compaction/loop.js"
|
|
48
|
+
},
|
|
49
|
+
"./compaction/token-budget": {
|
|
50
|
+
"types": "./dist/compaction/token-budget.d.ts",
|
|
51
|
+
"pi-source": "./src/compaction/token-budget.ts",
|
|
52
|
+
"import": "./dist/compaction/token-budget.js"
|
|
53
|
+
},
|
|
54
|
+
"./message-retention": {
|
|
55
|
+
"types": "./dist/session/message-retention.d.ts",
|
|
56
|
+
"pi-source": "./src/session/message-retention.ts",
|
|
57
|
+
"import": "./dist/session/message-retention.js"
|
|
58
|
+
},
|
|
59
|
+
"./messages": {
|
|
60
|
+
"types": "./dist/messages.d.ts",
|
|
61
|
+
"pi-source": "./src/messages.ts",
|
|
62
|
+
"import": "./dist/messages.js"
|
|
63
|
+
},
|
|
17
64
|
"./paths": {
|
|
18
65
|
"types": "./dist/utils/paths.d.ts",
|
|
66
|
+
"pi-source": "./src/utils/paths.ts",
|
|
19
67
|
"import": "./dist/utils/paths.js"
|
|
20
68
|
},
|
|
69
|
+
"./process-tree": {
|
|
70
|
+
"types": "./dist/reliability/process-tree.d.ts",
|
|
71
|
+
"pi-source": "./src/reliability/process-tree.ts",
|
|
72
|
+
"import": "./dist/reliability/process-tree.js"
|
|
73
|
+
},
|
|
74
|
+
"./reliability": {
|
|
75
|
+
"types": "./dist/reliability/index.d.ts",
|
|
76
|
+
"pi-source": "./src/reliability/index.ts",
|
|
77
|
+
"import": "./dist/reliability/index.js"
|
|
78
|
+
},
|
|
79
|
+
"./session": {
|
|
80
|
+
"types": "./dist/session/session-manager.d.ts",
|
|
81
|
+
"pi-source": "./src/session/session-manager.ts",
|
|
82
|
+
"import": "./dist/session/session-manager.js"
|
|
83
|
+
},
|
|
84
|
+
"./shell-output": {
|
|
85
|
+
"types": "./dist/utils/shell-output.d.ts",
|
|
86
|
+
"pi-source": "./src/utils/shell-output.ts",
|
|
87
|
+
"import": "./dist/utils/shell-output.js"
|
|
88
|
+
},
|
|
89
|
+
"./tool-failure-memory": {
|
|
90
|
+
"types": "./dist/tool-failure-memory.d.ts",
|
|
91
|
+
"pi-source": "./src/tool-failure-memory.ts",
|
|
92
|
+
"import": "./dist/tool-failure-memory.js"
|
|
93
|
+
},
|
|
94
|
+
"./truncate": {
|
|
95
|
+
"types": "./dist/utils/truncate.d.ts",
|
|
96
|
+
"pi-source": "./src/utils/truncate.ts",
|
|
97
|
+
"import": "./dist/utils/truncate.js"
|
|
98
|
+
},
|
|
99
|
+
"./types": {
|
|
100
|
+
"types": "./dist/types.d.ts",
|
|
101
|
+
"pi-source": "./src/types.ts",
|
|
102
|
+
"import": "./dist/types.js"
|
|
103
|
+
},
|
|
104
|
+
"./usage": {
|
|
105
|
+
"types": "./dist/usage.d.ts",
|
|
106
|
+
"pi-source": "./src/usage.ts",
|
|
107
|
+
"import": "./dist/usage.js"
|
|
108
|
+
},
|
|
21
109
|
"./package.json": "./package.json"
|
|
22
110
|
},
|
|
23
111
|
"files": [
|
|
@@ -33,7 +121,7 @@
|
|
|
33
121
|
"prepublishOnly": "npm run clean && npm run build"
|
|
34
122
|
},
|
|
35
123
|
"dependencies": {
|
|
36
|
-
"@caupulican/pi-ai": "^0.
|
|
124
|
+
"@caupulican/pi-ai": "^0.86.1",
|
|
37
125
|
"ignore": "7.0.5",
|
|
38
126
|
"typebox": "1.1.38",
|
|
39
127
|
"yaml": "2.9.0"
|
|
@@ -57,8 +145,8 @@
|
|
|
57
145
|
},
|
|
58
146
|
"devDependencies": {
|
|
59
147
|
"@types/node": "24.12.4",
|
|
60
|
-
"@vitest/coverage-v8": "
|
|
148
|
+
"@vitest/coverage-v8": "4.1.10",
|
|
61
149
|
"typescript": "7.0.2",
|
|
62
|
-
"vitest": "
|
|
150
|
+
"vitest": "4.1.10"
|
|
63
151
|
}
|
|
64
152
|
}
|