@bacnh85/pi-subagent 0.12.3 → 0.12.4
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/CHANGELOG.md +6 -0
- package/extensions/runner.ts +3 -1
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
package/extensions/runner.ts
CHANGED
|
@@ -112,7 +112,9 @@ export async function runSubAgent(options: {
|
|
|
112
112
|
getExtensions: () => ({ extensions: [], errors: [], runtime: createExtensionRuntime() }),
|
|
113
113
|
getSkills: () => ({ skills: [], diagnostics: [] }), getPrompts: () => ({ prompts: [], diagnostics: [] }),
|
|
114
114
|
getThemes: () => ({ themes: [], diagnostics: [] }), getAgentsFiles: () => ({ agentsFiles: [] }),
|
|
115
|
-
getSystemPrompt: () => systemPrompt,
|
|
115
|
+
getSystemPrompt: () => systemPrompt, getSystemPromptSource: () => undefined,
|
|
116
|
+
getAppendSystemPrompt: () => [], getAppendSystemPromptSources: () => [],
|
|
117
|
+
extendResources: () => {}, reload: async () => {},
|
|
116
118
|
};
|
|
117
119
|
const settingsManager = SettingsManager.inMemory({ compaction: { enabled: false }, retry: { enabled: true, maxRetries: 1 } });
|
|
118
120
|
const startedAt = Date.now();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bacnh85/pi-subagent",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.4",
|
|
4
4
|
"description": "In-process subagents for Pi with isolated SDK sessions, parallel and chained delegation, and inspectable threads.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -56,17 +56,17 @@
|
|
|
56
56
|
"check": "npm run typecheck && npm test"
|
|
57
57
|
},
|
|
58
58
|
"peerDependencies": {
|
|
59
|
-
"@earendil-works/pi-coding-agent": ">=0.80.0 <0.
|
|
60
|
-
"@earendil-works/pi-ai": ">=0.80.0 <0.
|
|
61
|
-
"@earendil-works/pi-agent-core": ">=0.80.0 <0.
|
|
62
|
-
"@earendil-works/pi-tui": ">=0.80.0 <0.
|
|
59
|
+
"@earendil-works/pi-coding-agent": ">=0.80.0 <0.84.0",
|
|
60
|
+
"@earendil-works/pi-ai": ">=0.80.0 <0.84.0",
|
|
61
|
+
"@earendil-works/pi-agent-core": ">=0.80.0 <0.84.0",
|
|
62
|
+
"@earendil-works/pi-tui": ">=0.80.0 <0.84.0",
|
|
63
63
|
"typebox": ">=1.3.0 <2.0.0"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
|
-
"@earendil-works/pi-agent-core": "^0.
|
|
67
|
-
"@earendil-works/pi-ai": "^0.
|
|
68
|
-
"@earendil-works/pi-coding-agent": "^0.
|
|
69
|
-
"@earendil-works/pi-tui": "^0.
|
|
66
|
+
"@earendil-works/pi-agent-core": "^0.83.0",
|
|
67
|
+
"@earendil-works/pi-ai": "^0.83.0",
|
|
68
|
+
"@earendil-works/pi-coding-agent": "^0.83.0",
|
|
69
|
+
"@earendil-works/pi-tui": "^0.83.0",
|
|
70
70
|
"@types/mocha": "^10.0.10",
|
|
71
71
|
"@types/node": "^20.19.43",
|
|
72
72
|
"mocha": "^10.8.2",
|