@pasko70/pibo 1.4.3 → 1.4.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.
@@ -7,7 +7,7 @@ export const GLM_5_2_MODEL = {
7
7
  id: "GLM-5.2",
8
8
  name: "GLM 5.2",
9
9
  reasoning: false,
10
- contextWindow: 200000,
10
+ contextWindow: 1_000_000,
11
11
  maxTokens: 8192,
12
12
  cost: { input: 0, output: 0, cacheRead: 0, cacheWrite: 0 },
13
13
  input: ["text"],
package/package.json CHANGED
@@ -1,93 +1,93 @@
1
- {
2
- "name": "@pasko70/pibo",
3
- "version": "1.4.3",
4
- "type": "module",
5
- "imports": {
6
- "vscode": "./src/apps/chat-vscode/extension/src/vscode-shim.js"
7
- },
8
- "description": "Minimal TypeScript wrapper around Pi Coding Agent.",
9
- "files": [
10
- "dist",
11
- "context",
12
- "skills/builtin/**",
13
- "docs/ops/**",
14
- "README.md",
15
- "src/mcp/LICENSE.mcp-cli"
16
- ],
17
- "bin": {
18
- "pibo": "dist/bin/pibo.js",
19
- "rg": "dist/bin/rg.js"
20
- },
21
- "engines": {
22
- "node": ">=24"
23
- },
24
- "scripts": {
25
- "dev": "tsx src/bin/pibo.ts",
26
- "profile": "tsx src/bin/pibo.ts profile",
27
- "tui": "tsx src/bin/pibo.ts tui",
28
- "tui:routed": "tsx src/bin/pibo.ts tui:routed",
29
- "tui:gateway": "tsx src/bin/pibo.ts tui gateway-producer",
30
- "gateway": "tsx src/bin/pibo.ts gateway",
31
- "gateway:web": "npm run web-ui:build && tsx src/bin/pibo.ts gateway:web",
32
- "client": "tsx src/bin/pibo.ts client",
33
- "chat-ui:build": "vite build --config src/apps/chat-ui/vite.config.ts",
34
- "chat-ui:typecheck": "tsc -p src/apps/chat-ui/tsconfig.json --noEmit",
35
- "context-files-ui:build": "vite build --config src/apps/context-files-ui/vite.config.ts",
36
- "context-files-ui:typecheck": "tsc -p src/apps/context-files-ui/tsconfig.json --noEmit",
37
- "web-ui:build": "npm run chat-ui:build && npm run context-files-ui:build",
38
- "vscode:typecheck": "tsc -p src/apps/chat-vscode/extension/tsconfig.json --noEmit && tsc -p src/apps/chat-vscode/extension/webview/tsconfig.json --noEmit",
39
- "vscode:webview:build": "vite build --config src/apps/chat-vscode/extension/webview/vite.config.ts",
40
- "vscode:extension:build": "esbuild src/apps/chat-vscode/extension/src/extension.ts --bundle --platform=node --target=node24 --format=cjs --outfile=src/apps/chat-vscode/dist/extension/extension.cjs --external:vscode --sourcemap=inline",
41
- "vscode:package": "node scripts/vscode-package.mjs",
42
- "release": "node scripts/release.mjs",
43
- "release:github": "node scripts/create-github-release.mjs",
44
- "build": "tsc -p tsconfig.json && npm run web-ui:build && npm run vscode:webview:build && node scripts/ensure-bin-executable.mjs",
45
- "start": "node dist/bin/pibo.js",
46
- "test": "npm run build && node --test test/*.test.mjs test/chat-vscode/*.test.mjs",
47
- "check:product-vocab": "node scripts/legacy-product-vocabulary-gate.mjs",
48
- "validate:ink-web-derived": "node scripts/ink-cli-web-derived-parity-validate.mjs",
49
- "compute:limited-worker-smoke": "node scripts/compute-limited-worker-smoke.mjs",
50
- "typecheck": "tsc -p tsconfig.json --noEmit && npm run chat-ui:typecheck && npm run context-files-ui:typecheck && npm run vscode:typecheck",
51
- "clean": "node -e \"fs.rmSync('dist', { recursive: true, force: true })\"",
52
- "prepack": "npm run build"
53
- },
54
- "dependencies": {
55
- "@mariozechner/pi-ai": "^0.73.1",
56
- "@mariozechner/pi-coding-agent": "^0.73.1",
57
- "@mdxeditor/editor": "^3.55.0",
58
- "@modelcontextprotocol/sdk": "^1.29.0",
59
- "@tailwindcss/vite": "^4.2.4",
60
- "@tanstack/react-query": "^5.100.7",
61
- "@tanstack/react-router": "^1.168.25",
62
- "@tanstack/react-start": "^1.167.50",
63
- "@uiw/react-json-view": "^2.0.0-alpha.41",
64
- "@vscode/ripgrep": "^1.18.0",
65
- "@xyflow/react": "12.10.2",
66
- "better-auth": "^1.6.9",
67
- "commander": "^14.0.3",
68
- "ink": "^7.0.3",
69
- "lexical": "^0.35.0",
70
- "lucide-react": "^0.545.0",
71
- "prismjs": "^1.30.0",
72
- "react": "^19.2.5",
73
- "react-dom": "^19.2.5",
74
- "react-markdown": "^10.1.0",
75
- "react-virtuoso": "^4.18.6",
76
- "remark-gfm": "^4.0.1",
77
- "tailwindcss": "^4.2.4"
78
- },
79
- "devDependencies": {
80
- "@tanstack/router-plugin": "^1.167.28",
81
- "@types/node": "^25.6.0",
82
- "@types/prismjs": "^1.26.6",
83
- "@types/react": "^19.2.14",
84
- "@types/react-dom": "^19.2.3",
85
- "@vitejs/plugin-react": "^6.0.1",
86
- "@vscode/vsce": "^3.6.0",
87
- "esbuild": "^0.27.7",
88
- "tsx": "^4.21.0",
89
- "typescript": "^6.0.3",
90
- "vite": "^8.0.10",
91
- "vite-tsconfig-paths": "^5.1.4"
92
- }
93
- }
1
+ {
2
+ "name": "@pasko70/pibo",
3
+ "version": "1.4.4",
4
+ "type": "module",
5
+ "imports": {
6
+ "vscode": "./src/apps/chat-vscode/extension/src/vscode-shim.js"
7
+ },
8
+ "description": "Minimal TypeScript wrapper around Pi Coding Agent.",
9
+ "files": [
10
+ "dist",
11
+ "context",
12
+ "skills/builtin/**",
13
+ "docs/ops/**",
14
+ "README.md",
15
+ "src/mcp/LICENSE.mcp-cli"
16
+ ],
17
+ "bin": {
18
+ "pibo": "dist/bin/pibo.js",
19
+ "rg": "dist/bin/rg.js"
20
+ },
21
+ "engines": {
22
+ "node": ">=24"
23
+ },
24
+ "scripts": {
25
+ "dev": "tsx src/bin/pibo.ts",
26
+ "profile": "tsx src/bin/pibo.ts profile",
27
+ "tui": "tsx src/bin/pibo.ts tui",
28
+ "tui:routed": "tsx src/bin/pibo.ts tui:routed",
29
+ "tui:gateway": "tsx src/bin/pibo.ts tui gateway-producer",
30
+ "gateway": "tsx src/bin/pibo.ts gateway",
31
+ "gateway:web": "npm run web-ui:build && tsx src/bin/pibo.ts gateway:web",
32
+ "client": "tsx src/bin/pibo.ts client",
33
+ "chat-ui:build": "vite build --config src/apps/chat-ui/vite.config.ts",
34
+ "chat-ui:typecheck": "tsc -p src/apps/chat-ui/tsconfig.json --noEmit",
35
+ "context-files-ui:build": "vite build --config src/apps/context-files-ui/vite.config.ts",
36
+ "context-files-ui:typecheck": "tsc -p src/apps/context-files-ui/tsconfig.json --noEmit",
37
+ "web-ui:build": "npm run chat-ui:build && npm run context-files-ui:build",
38
+ "vscode:typecheck": "tsc -p src/apps/chat-vscode/extension/tsconfig.json --noEmit && tsc -p src/apps/chat-vscode/extension/webview/tsconfig.json --noEmit",
39
+ "vscode:webview:build": "vite build --config src/apps/chat-vscode/extension/webview/vite.config.ts",
40
+ "vscode:extension:build": "esbuild src/apps/chat-vscode/extension/src/extension.ts --bundle --platform=node --target=node24 --format=cjs --outfile=src/apps/chat-vscode/dist/extension/extension.cjs --external:vscode --sourcemap=inline",
41
+ "vscode:package": "node scripts/vscode-package.mjs",
42
+ "release": "node scripts/release.mjs",
43
+ "release:github": "node scripts/create-github-release.mjs",
44
+ "build": "tsc -p tsconfig.json && npm run web-ui:build && npm run vscode:webview:build && node scripts/ensure-bin-executable.mjs",
45
+ "start": "node dist/bin/pibo.js",
46
+ "test": "npm run build && node --test test/*.test.mjs test/chat-vscode/*.test.mjs",
47
+ "check:product-vocab": "node scripts/legacy-product-vocabulary-gate.mjs",
48
+ "validate:ink-web-derived": "node scripts/ink-cli-web-derived-parity-validate.mjs",
49
+ "compute:limited-worker-smoke": "node scripts/compute-limited-worker-smoke.mjs",
50
+ "typecheck": "tsc -p tsconfig.json --noEmit && npm run chat-ui:typecheck && npm run context-files-ui:typecheck && npm run vscode:typecheck",
51
+ "clean": "node -e \"fs.rmSync('dist', { recursive: true, force: true })\"",
52
+ "prepack": "npm run build"
53
+ },
54
+ "dependencies": {
55
+ "@mariozechner/pi-ai": "^0.73.1",
56
+ "@mariozechner/pi-coding-agent": "^0.73.1",
57
+ "@mdxeditor/editor": "^3.55.0",
58
+ "@modelcontextprotocol/sdk": "^1.29.0",
59
+ "@tailwindcss/vite": "^4.2.4",
60
+ "@tanstack/react-query": "^5.100.7",
61
+ "@tanstack/react-router": "^1.168.25",
62
+ "@tanstack/react-start": "^1.167.50",
63
+ "@uiw/react-json-view": "^2.0.0-alpha.41",
64
+ "@vscode/ripgrep": "^1.18.0",
65
+ "@xyflow/react": "12.10.2",
66
+ "better-auth": "^1.6.9",
67
+ "commander": "^14.0.3",
68
+ "ink": "^7.0.3",
69
+ "lexical": "^0.35.0",
70
+ "lucide-react": "^0.545.0",
71
+ "prismjs": "^1.30.0",
72
+ "react": "^19.2.5",
73
+ "react-dom": "^19.2.5",
74
+ "react-markdown": "^10.1.0",
75
+ "react-virtuoso": "^4.18.6",
76
+ "remark-gfm": "^4.0.1",
77
+ "tailwindcss": "^4.2.4"
78
+ },
79
+ "devDependencies": {
80
+ "@tanstack/router-plugin": "^1.167.28",
81
+ "@types/node": "^25.6.0",
82
+ "@types/prismjs": "^1.26.6",
83
+ "@types/react": "^19.2.14",
84
+ "@types/react-dom": "^19.2.3",
85
+ "@vitejs/plugin-react": "^6.0.1",
86
+ "@vscode/vsce": "^3.6.0",
87
+ "esbuild": "^0.27.7",
88
+ "tsx": "^4.21.0",
89
+ "typescript": "^6.0.3",
90
+ "vite": "^8.0.10",
91
+ "vite-tsconfig-paths": "^5.1.4"
92
+ }
93
+ }