@oh-my-pi/pi-coding-agent 11.14.2 → 11.14.3
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.
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
2
|
+
"name": "pi-extension-with-deps",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"omp": {
|
|
6
|
+
"extensions": [
|
|
7
|
+
"./index.ts"
|
|
8
|
+
]
|
|
9
|
+
},
|
|
10
|
+
"dependencies": {
|
|
11
|
+
"ms": "^2.1.3"
|
|
12
|
+
},
|
|
13
|
+
"devDependencies": {
|
|
14
|
+
"@types/ms": "^2.1.0"
|
|
15
|
+
}
|
|
16
16
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oh-my-pi/pi-coding-agent",
|
|
3
|
-
"version": "11.14.
|
|
3
|
+
"version": "11.14.3",
|
|
4
4
|
"description": "Coding agent CLI with read, bash, edit, write tools and session management",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"ompConfig": {
|
|
@@ -84,12 +84,12 @@
|
|
|
84
84
|
},
|
|
85
85
|
"dependencies": {
|
|
86
86
|
"@mozilla/readability": "0.6.0",
|
|
87
|
-
"@oh-my-pi/omp-stats": "11.14.
|
|
88
|
-
"@oh-my-pi/pi-agent-core": "11.14.
|
|
89
|
-
"@oh-my-pi/pi-ai": "11.14.
|
|
90
|
-
"@oh-my-pi/pi-natives": "11.14.
|
|
91
|
-
"@oh-my-pi/pi-tui": "11.14.
|
|
92
|
-
"@oh-my-pi/pi-utils": "11.14.
|
|
87
|
+
"@oh-my-pi/omp-stats": "11.14.3",
|
|
88
|
+
"@oh-my-pi/pi-agent-core": "11.14.3",
|
|
89
|
+
"@oh-my-pi/pi-ai": "11.14.3",
|
|
90
|
+
"@oh-my-pi/pi-natives": "11.14.3",
|
|
91
|
+
"@oh-my-pi/pi-tui": "11.14.3",
|
|
92
|
+
"@oh-my-pi/pi-utils": "11.14.3",
|
|
93
93
|
"@sinclair/typebox": "^0.34.48",
|
|
94
94
|
"@xterm/headless": "^6.0.0",
|
|
95
95
|
"ajv": "^8.17.1",
|
package/src/index.ts
CHANGED
|
@@ -236,6 +236,9 @@ export {
|
|
|
236
236
|
type SessionMessageEntry,
|
|
237
237
|
type ThinkingLevelChangeEntry,
|
|
238
238
|
} from "./session/session-manager";
|
|
239
|
+
export { runSubprocess } from "./task/executor";
|
|
240
|
+
|
|
241
|
+
export type { AgentDefinition, AgentProgress, AgentSource, SingleResult, TaskParams } from "./task/types";
|
|
239
242
|
// Tools (detail types and utilities)
|
|
240
243
|
export {
|
|
241
244
|
type BashToolDetails,
|