@oh-my-pi/pi-coding-agent 8.8.8 → 8.10.11
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 +7 -7
- package/src/task/executor.ts +1 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oh-my-pi/pi-coding-agent",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.10.11",
|
|
4
4
|
"description": "Coding agent CLI with read, bash, edit, write tools and session management",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"ompConfig": {
|
|
@@ -83,11 +83,11 @@
|
|
|
83
83
|
"test": "bun test"
|
|
84
84
|
},
|
|
85
85
|
"dependencies": {
|
|
86
|
-
"@oh-my-pi/omp-stats": "8.
|
|
87
|
-
"@oh-my-pi/pi-agent-core": "8.
|
|
88
|
-
"@oh-my-pi/pi-ai": "8.
|
|
89
|
-
"@oh-my-pi/pi-tui": "8.
|
|
90
|
-
"@oh-my-pi/pi-utils": "8.
|
|
86
|
+
"@oh-my-pi/omp-stats": "8.10.11",
|
|
87
|
+
"@oh-my-pi/pi-agent-core": "8.10.11",
|
|
88
|
+
"@oh-my-pi/pi-ai": "8.10.11",
|
|
89
|
+
"@oh-my-pi/pi-tui": "8.10.11",
|
|
90
|
+
"@oh-my-pi/pi-utils": "8.10.11",
|
|
91
91
|
"@openai/agents": "^0.4.3",
|
|
92
92
|
"@sinclair/typebox": "^0.34.46",
|
|
93
93
|
"ajv": "^8.17.1",
|
|
@@ -127,6 +127,6 @@
|
|
|
127
127
|
"directory": "packages/coding-agent"
|
|
128
128
|
},
|
|
129
129
|
"engines": {
|
|
130
|
-
"bun": ">=1.
|
|
130
|
+
"bun": ">=1.3.7"
|
|
131
131
|
}
|
|
132
132
|
}
|
package/src/task/executor.ts
CHANGED
|
@@ -14,9 +14,6 @@ import type { CustomTool } from "@oh-my-pi/pi-coding-agent/extensibility/custom-
|
|
|
14
14
|
import type { Skill } from "@oh-my-pi/pi-coding-agent/extensibility/skills";
|
|
15
15
|
import { callTool } from "@oh-my-pi/pi-coding-agent/mcp/client";
|
|
16
16
|
import type { MCPManager } from "@oh-my-pi/pi-coding-agent/mcp/manager";
|
|
17
|
-
import subagentSystemPromptTemplate from "@oh-my-pi/pi-coding-agent/prompts/system/subagent-system-prompt.md" with {
|
|
18
|
-
type: "text",
|
|
19
|
-
};
|
|
20
17
|
import { createAgentSession, discoverAuthStorage, discoverModels } from "@oh-my-pi/pi-coding-agent/sdk";
|
|
21
18
|
import type { AgentSession, AgentSessionEvent } from "@oh-my-pi/pi-coding-agent/session/agent-session";
|
|
22
19
|
import type { AuthStorage } from "@oh-my-pi/pi-coding-agent/session/auth-storage";
|
|
@@ -28,6 +25,7 @@ import type { EventBus } from "@oh-my-pi/pi-coding-agent/utils/event-bus";
|
|
|
28
25
|
import { logger, untilAborted } from "@oh-my-pi/pi-utils";
|
|
29
26
|
import type { TSchema } from "@sinclair/typebox";
|
|
30
27
|
import Ajv, { type ValidateFunction } from "ajv";
|
|
28
|
+
import subagentSystemPromptTemplate from "../prompts/system/subagent-system-prompt.md" with { type: "text" };
|
|
31
29
|
import { subprocessToolRegistry } from "./subprocess-tool-registry";
|
|
32
30
|
import {
|
|
33
31
|
type AgentDefinition,
|