terminator-mcp-agent 0.5.6 → 0.5.8

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.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/index.js +2 -2
  3. package/package.json +5 -5
package/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  [<img alt="Install in VS Code" src="https://img.shields.io/badge/VS_Code-VS_Code?style=flat-square&label=Install%20Server&color=0098FF">](https://insiders.vscode.dev/redirect?url=vscode%3Amcp%2Finstall%3F%257B%2522terminator-mcp-agent%2522%253A%257B%2522command%2522%253A%2522npx%2522%252C%2522args%2522%253A%255B%2522-y%2522%252C%2522terminator-mcp-agent%2522%255D%257D%257D)
6
6
  [<img alt="Install in VS Code Insiders" src="https://img.shields.io/badge/VS_Code_Insiders-VS_Code_Insiders?style=flat-square&label=Install%20Server&color=24bfa5">](https://insiders.vscode.dev/redirect?url=vscode-insiders%3Amcp%2Finstall%3F%257B%2522terminator-mcp-agent%2522%253A%257B%2522command%2522%253A%2522npx%2522%252C%2522args%2522%253A%255B%2522-y%2522%252C%2522terminator-mcp-agent%2522%255D%257D%257D)
7
- [<img alt="Install in Cursor" src="https://img.shields.io/badge/Cursor-Cursor?style=flat-square&label=Install%20Server&color=22272e">](https://cursor.com/install-mcp?name=terminator-mcp-agent&config=eyJ0ZXJtaW5hdG9yLW1jcC1hZ2VudCI6eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsInRlcm1pbmF0b3ItbWNwLWFnZW50Il19fQ%3D%3D)
7
+ [<img alt="Install in Cursor" src="https://img.shields.io/badge/Cursor-Cursor?style=flat-square&label=Install%20Server&color=22272e">](https://cursor.com/install-mcp?name=terminator-mcp-agent&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsInRlcm1pbmF0b3ItbWNwLWFnZW50Il19)
8
8
 
9
9
  <!-- BADGES:END -->
10
10
 
package/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
 
3
- const { spawn, execSync, existsSync } = require("child_process");
3
+ const { spawn, execSync } = require("child_process");
4
4
  const path = require("path");
5
5
  const fs = require("fs");
6
6
  const os = require("os");
@@ -317,7 +317,7 @@ if (argv.length === 0 || argv.includes("--start")) {
317
317
  }
318
318
  }
319
319
 
320
- const child = spawn(binary, [], { stdio: ["pipe", "pipe", "inherit"] });
320
+ const child = spawn(binary, [], { stdio: ["pipe", "pipe", "pipe"], shell: true });
321
321
 
322
322
  process.stdin.pipe(child.stdin);
323
323
  child.stdout.pipe(process.stdout);
package/package.json CHANGED
@@ -11,10 +11,10 @@
11
11
  ],
12
12
  "name": "terminator-mcp-agent",
13
13
  "optionalDependencies": {
14
- "terminator-mcp-darwin-arm64": "0.5.6",
15
- "terminator-mcp-darwin-x64": "0.5.6",
16
- "terminator-mcp-linux-x64-gnu": "0.5.6",
17
- "terminator-mcp-win32-x64-msvc": "0.5.6"
14
+ "terminator-mcp-darwin-arm64": "0.5.8",
15
+ "terminator-mcp-darwin-x64": "0.5.8",
16
+ "terminator-mcp-linux-x64-gnu": "0.5.8",
17
+ "terminator-mcp-win32-x64-msvc": "0.5.8"
18
18
  },
19
19
  "repository": {
20
20
  "type": "git",
@@ -26,5 +26,5 @@
26
26
  "sync-version": "node ./utils/sync-version.js",
27
27
  "update-badges": "node ./utils/update-badges.js"
28
28
  },
29
- "version": "0.5.6"
29
+ "version": "0.5.8"
30
30
  }