@pasko70/pibo 3.2.6 → 3.3.0
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/dist/agent-runtime/history.js +5 -16
- package/dist/agent-runtimes/codex-native/adapter.js +44 -14
- package/dist/agent-runtimes/codex-native/process.js +1 -1
- package/dist/agent-runtimes/codex-native/protocol-version.js +6 -6
- package/dist/agent-runtimes/omp/process.js +23 -3
- package/dist/agent-runtimes/omp/protocol-version.js +2 -0
- package/dist/agent-runtimes/pi/adapter.js +1 -1
- package/dist/agent-runtimes/pi/model-catalog.js +2 -2
- package/dist/agent-runtimes/pi/runtime.js +6 -3
- package/dist/apps/chat/chat-api-routes.js +1 -1
- package/dist/apps/chat/chat-request-normalizers.js +7 -2
- package/dist/apps/chat/data/read-state-service.js +13 -11
- package/dist/apps/chat/session-metadata.js +30 -0
- package/dist/apps/chat/trace.js +15 -2
- package/dist/apps/chat/web-app.js +125 -17
- package/dist/apps/chat-ui/assets/{dist-CLxh9uSM.js → dist-BbCjOLiw.js} +1 -1
- package/dist/apps/chat-ui/assets/{dist-B9gnHZqL.js → dist-Bd9gWCbk.js} +1 -1
- package/dist/apps/chat-ui/assets/{dist-CR75V9VE.js → dist-C9a0_446.js} +1 -1
- package/dist/apps/chat-ui/assets/{dist-BUupvbV9.js → dist-CcAkJ8iv.js} +1 -1
- package/dist/apps/chat-ui/assets/{dist-DXdSiTyu.js → dist-Kc3zbvQi.js} +1 -1
- package/dist/apps/chat-ui/assets/index-DWJnUye8.css +1 -0
- package/dist/apps/chat-ui/assets/index-exohEOUE.js +228 -0
- package/dist/apps/chat-ui/index.html +2 -2
- package/dist/core/session-router.js +12 -6
- package/dist/debug/agents.js +9 -3
- package/dist/plugins/builtin.js +2 -0
- package/dist/plugins/registry.js +1 -0
- package/dist/providers/openai-gpt56.js +41 -3
- package/dist/subagents/context.js +2 -2
- package/dist/subagents/observation-query.js +49 -6
- package/dist/subagents/observation-text-regex.js +124 -0
- package/dist/subagents/tool.js +3 -2
- package/dist/tools/hashline.js +64 -0
- package/npm-shrinkwrap.json +781 -280
- package/package.json +6 -5
- package/dist/apps/chat-ui/assets/index-BMkUGVRS.js +0 -228
- package/dist/apps/chat-ui/assets/index-BwT5grLv.css +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pasko70/pibo",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.3.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -79,10 +79,11 @@
|
|
|
79
79
|
},
|
|
80
80
|
"dependencies": {
|
|
81
81
|
"@balena/dockerignore": "1.0.2",
|
|
82
|
-
"@earendil-works/pi-agent-core": "0.
|
|
83
|
-
"@earendil-works/pi-ai": "0.
|
|
84
|
-
"@earendil-works/pi-coding-agent": "0.
|
|
85
|
-
"@earendil-works/pi-
|
|
82
|
+
"@earendil-works/pi-agent-core": "0.85.0",
|
|
83
|
+
"@earendil-works/pi-ai": "0.85.0",
|
|
84
|
+
"@earendil-works/pi-coding-agent": "0.85.0",
|
|
85
|
+
"@earendil-works/pi-server": "0.85.0",
|
|
86
|
+
"@earendil-works/pi-tui": "0.85.0",
|
|
86
87
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
87
88
|
"@tailwindcss/vite": "^4.2.4",
|
|
88
89
|
"@tanstack/react-query": "^5.100.7",
|