@nextclaw/nextclaw-ncp-runtime-stdio-client 0.1.10 → 0.1.11

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.
@@ -18,7 +18,8 @@ async function probeStdioRuntime(config) {
18
18
  "pipe",
19
19
  "pipe",
20
20
  "pipe"
21
- ]
21
+ ],
22
+ windowsHide: true
22
23
  });
23
24
  const spawnErrorPromise = new Promise((_, reject) => {
24
25
  child.once("error", (error) => {
@@ -178,7 +178,8 @@ var StdioRuntimeSession = class {
178
178
  "pipe",
179
179
  "pipe",
180
180
  "pipe"
181
- ]
181
+ ],
182
+ windowsHide: true
182
183
  });
183
184
  const spawnErrorPromise = new Promise((_, reject) => {
184
185
  this.child?.once("error", (error) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nextclaw/nextclaw-ncp-runtime-stdio-client",
3
- "version": "0.1.10",
3
+ "version": "0.1.11",
4
4
  "private": false,
5
5
  "description": "Optional NCP runtime adapter backed by a protocol-aware stdio agent command.",
6
6
  "type": "module",
@@ -17,7 +17,7 @@
17
17
  ],
18
18
  "dependencies": {
19
19
  "@agentclientprotocol/sdk": "^0.19.0",
20
- "@nextclaw/ncp": "0.5.10"
20
+ "@nextclaw/ncp": "0.5.11"
21
21
  },
22
22
  "devDependencies": {
23
23
  "@types/node": "^20.17.6",