@docyrus/docyrus 0.0.21 → 0.0.22
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/main.js +5 -2
- package/main.js.map +2 -2
- package/package.json +5 -2
- package/resources/pi-agent/extensions/pi-bash-live-view/LICENSE +21 -0
- package/resources/pi-agent/extensions/pi-bash-live-view/README.md +19 -0
- package/resources/pi-agent/extensions/pi-bash-live-view/index.ts +52 -0
- package/resources/pi-agent/extensions/pi-bash-live-view/package.json +61 -0
- package/resources/pi-agent/extensions/pi-bash-live-view/pty-execute.ts +97 -0
- package/resources/pi-agent/extensions/pi-bash-live-view/pty-kill.ts +25 -0
- package/resources/pi-agent/extensions/pi-bash-live-view/pty-session.ts +143 -0
- package/resources/pi-agent/extensions/pi-bash-live-view/spawn-helper.ts +31 -0
- package/resources/pi-agent/extensions/pi-bash-live-view/terminal-emulator.ts +439 -0
- package/resources/pi-agent/extensions/pi-bash-live-view/truncate.ts +68 -0
- package/resources/pi-agent/extensions/pi-bash-live-view/widget.ts +114 -0
package/main.js
CHANGED
|
@@ -124678,7 +124678,7 @@ function buildInputSchema(args, env2, options2) {
|
|
|
124678
124678
|
// package.json
|
|
124679
124679
|
var package_default = {
|
|
124680
124680
|
name: "@docyrus/docyrus",
|
|
124681
|
-
version: "0.0.
|
|
124681
|
+
version: "0.0.22",
|
|
124682
124682
|
private: false,
|
|
124683
124683
|
description: "Docyrus API CLI",
|
|
124684
124684
|
main: "./main.js",
|
|
@@ -124691,18 +124691,21 @@ var package_default = {
|
|
|
124691
124691
|
"@modelcontextprotocol/ext-apps": "^1.2.2",
|
|
124692
124692
|
"@modelcontextprotocol/sdk": "^1.25.1",
|
|
124693
124693
|
"@mariozechner/pi-ai": "0.61.0",
|
|
124694
|
-
"@mariozechner/pi-coding-agent": "0.61.
|
|
124694
|
+
"@mariozechner/pi-coding-agent": "0.61.1",
|
|
124695
124695
|
"@opentui/core": "^0.1.85",
|
|
124696
124696
|
"@opentui/react": "^0.1.85",
|
|
124697
|
+
"@xterm/headless": "^5.5.0",
|
|
124697
124698
|
cheerio: "^1.1.2",
|
|
124698
124699
|
diff: "^8.0.2",
|
|
124699
124700
|
incur: "^0.1.6",
|
|
124700
124701
|
jsdom: "^27.0.1",
|
|
124701
124702
|
marked: "^15.0.12",
|
|
124702
124703
|
"marked-terminal": "^7.3.0",
|
|
124704
|
+
"node-pty": "^1.0.0",
|
|
124703
124705
|
picocolors: "^1.1.1",
|
|
124704
124706
|
"puppeteer-core": "^24.31.0",
|
|
124705
124707
|
react: "^19.1.1",
|
|
124708
|
+
"strip-ansi": "^7.1.0",
|
|
124706
124709
|
turndown: "^7.2.2",
|
|
124707
124710
|
"turndown-plugin-gfm": "^1.0.2",
|
|
124708
124711
|
undici: "^7.16.0",
|