@cmetech/otto 1.3.0 → 1.3.2
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/resources/.managed-resources-content-hash +1 -1
- package/dist/resources/extensions/otto/commands/release-notes/_data.js +18 -2
- package/node_modules/xlsx/CHANGELOG.md +361 -0
- package/node_modules/xlsx/LICENSE +201 -0
- package/node_modules/xlsx/README.md +41 -0
- package/node_modules/xlsx/bin/xlsx.njs +310 -0
- package/node_modules/xlsx/bower.json +22 -0
- package/node_modules/xlsx/dist/LICENSE +201 -0
- package/node_modules/xlsx/dist/cpexcel.d.ts +39 -0
- package/node_modules/xlsx/dist/cpexcel.full.mjs +1502 -0
- package/node_modules/xlsx/dist/cpexcel.js +1506 -0
- package/node_modules/xlsx/dist/shim.min.js +2 -0
- package/node_modules/xlsx/dist/xlsx.core.min.js +18 -0
- package/node_modules/xlsx/dist/xlsx.core.min.map +1 -0
- package/node_modules/xlsx/dist/xlsx.extendscript.js +28259 -0
- package/node_modules/xlsx/dist/xlsx.full.min.js +24 -0
- package/node_modules/xlsx/dist/xlsx.full.min.map +1 -0
- package/node_modules/xlsx/dist/xlsx.mini.min.js +10 -0
- package/node_modules/xlsx/dist/xlsx.mini.min.map +1 -0
- package/node_modules/xlsx/dist/xlsx.zahl.js +4 -0
- package/node_modules/xlsx/dist/xlsx.zahl.mjs +2 -0
- package/node_modules/xlsx/dist/zahl.d.ts +4 -0
- package/node_modules/xlsx/package.json +183 -0
- package/node_modules/xlsx/types/index.d.ts +1065 -0
- package/node_modules/xlsx/types/tsconfig.json +15 -0
- package/node_modules/xlsx/xlsx.js +28103 -0
- package/node_modules/xlsx/xlsx.mjs +28228 -0
- package/node_modules/xlsx/xlsxworker.js +14 -0
- package/package.json +9 -6
- package/packages/contracts/package.json +1 -1
- package/packages/daemon/package.json +3 -3
- package/packages/mcp-server/package.json +3 -3
- package/packages/native/package.json +1 -1
- package/packages/pi-agent-core/package.json +1 -1
- package/packages/pi-ai/package.json +1 -1
- package/packages/pi-coding-agent/package.json +2 -2
- package/packages/pi-coding-agent/tsconfig.tsbuildinfo +1 -1
- package/packages/pi-tui/dist/tui.d.ts +1 -0
- package/packages/pi-tui/dist/tui.d.ts.map +1 -1
- package/packages/pi-tui/dist/tui.js +24 -1
- package/packages/pi-tui/dist/tui.js.map +1 -1
- package/packages/pi-tui/package.json +1 -1
- package/packages/pi-tui/src/tui.ts +26 -2
- package/packages/pi-tui/tsconfig.tsbuildinfo +1 -1
- package/packages/rpc-client/package.json +2 -2
- package/pkg/package.json +1 -1
- package/src/resources/extensions/otto/commands/release-notes/_data.ts +18 -2
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* xlsx.js (C) 2013-present SheetJS -- http://sheetjs.com */
|
|
2
|
+
importScripts('dist/shim.min.js');
|
|
3
|
+
/* uncomment the next line for encoding support */
|
|
4
|
+
importScripts('dist/cpexcel.js');
|
|
5
|
+
importScripts('xlsx.js');
|
|
6
|
+
postMessage({t:"ready"});
|
|
7
|
+
|
|
8
|
+
onmessage = function (evt) {
|
|
9
|
+
var v;
|
|
10
|
+
try {
|
|
11
|
+
v = XLSX.read(evt.data.d, {type: evt.data.b, codepage: evt.data.c});
|
|
12
|
+
postMessage({t:"xlsx", d:JSON.stringify(v)});
|
|
13
|
+
} catch(e) { postMessage({t:"e",d:e.stack||e}); }
|
|
14
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cmetech/otto",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.2",
|
|
4
4
|
"description": "Terminal-based developer chat assistant. Permanent hard fork of gsd-pi with LangFlow flow triggers, a flow builder, and optional gateway routing for compliance environments.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -30,6 +30,9 @@
|
|
|
30
30
|
"bin": {
|
|
31
31
|
"otto": "dist/loader.js"
|
|
32
32
|
},
|
|
33
|
+
"bundleDependencies": [
|
|
34
|
+
"xlsx"
|
|
35
|
+
],
|
|
33
36
|
"files": [
|
|
34
37
|
"dist",
|
|
35
38
|
"packages",
|
|
@@ -199,11 +202,11 @@
|
|
|
199
202
|
},
|
|
200
203
|
"optionalDependencies": {
|
|
201
204
|
"@anthropic-ai/claude-agent-sdk": "0.2.83",
|
|
202
|
-
"@cmetech/otto-engine-darwin-arm64": "1.3.
|
|
203
|
-
"@cmetech/otto-engine-darwin-x64": "1.3.
|
|
204
|
-
"@cmetech/otto-engine-linux-arm64-gnu": "1.3.
|
|
205
|
-
"@cmetech/otto-engine-linux-x64-gnu": "1.3.
|
|
206
|
-
"@cmetech/otto-engine-win32-x64-msvc": "1.3.
|
|
205
|
+
"@cmetech/otto-engine-darwin-arm64": "1.3.2",
|
|
206
|
+
"@cmetech/otto-engine-darwin-x64": "1.3.2",
|
|
207
|
+
"@cmetech/otto-engine-linux-arm64-gnu": "1.3.2",
|
|
208
|
+
"@cmetech/otto-engine-linux-x64-gnu": "1.3.2",
|
|
209
|
+
"@cmetech/otto-engine-win32-x64-msvc": "1.3.2",
|
|
207
210
|
"fsevents": "~2.3.3",
|
|
208
211
|
"koffi": "^2.9.0"
|
|
209
212
|
},
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@otto-build/daemon",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.2",
|
|
4
4
|
"description": "OTTO daemon — background process for project monitoring and Discord integration",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@anthropic-ai/sdk": "^0.52.0",
|
|
32
|
-
"@otto-build/contracts": "^1.3.
|
|
33
|
-
"@otto-build/rpc-client": "^1.3.
|
|
32
|
+
"@otto-build/contracts": "^1.3.2",
|
|
33
|
+
"@otto-build/rpc-client": "^1.3.2",
|
|
34
34
|
"discord.js": "^14.25.1",
|
|
35
35
|
"yaml": "^2.8.0",
|
|
36
36
|
"zod": "^3.24.0"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@otto-build/mcp-server",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.2",
|
|
4
4
|
"description": "MCP server exposing OTTO orchestration tools for compatible clients",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"otto": {
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
"test": "npm run build:test && node --test dist/mcp-server.test.js dist/remote-questions.test.js"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@otto-build/contracts": "^1.3.
|
|
38
|
-
"@otto-build/rpc-client": "^1.3.
|
|
37
|
+
"@otto-build/contracts": "^1.3.2",
|
|
38
|
+
"@otto-build/rpc-client": "^1.3.2",
|
|
39
39
|
"@modelcontextprotocol/sdk": "^1.27.1",
|
|
40
40
|
"zod": "^4.0.0"
|
|
41
41
|
},
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@otto/pi-coding-agent",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.2",
|
|
4
4
|
"description": "Coding agent CLI (vendored from pi-mono)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"otto": {
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"copy-assets": "node scripts/copy-assets.cjs"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@otto-build/contracts": "^1.3.
|
|
31
|
+
"@otto-build/contracts": "^1.3.2",
|
|
32
32
|
"@mariozechner/jiti": "^2.6.2",
|
|
33
33
|
"@silvia-odwyer/photon-node": "^0.3.4",
|
|
34
34
|
"chalk": "^5.5.0",
|