@dalmasonto/taskflow-mcp 1.0.15 → 1.0.16
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/sse.js +1 -1
- package/dist/tools/terminal.js +1 -1
- package/package.json +1 -1
package/dist/sse.js
CHANGED
|
@@ -362,7 +362,7 @@ export async function startSSEServer() {
|
|
|
362
362
|
return;
|
|
363
363
|
}
|
|
364
364
|
try {
|
|
365
|
-
const output = execFileSync('tmux', ['capture-pane', '-p', '-t', agent.tmux_pane], { timeout: 5000 }).toString();
|
|
365
|
+
const output = execFileSync('tmux', ['capture-pane', '-p', '-S', '-', '-t', agent.tmux_pane], { timeout: 5000 }).toString();
|
|
366
366
|
jsonResponse(res, 200, { agent: agentName, pane: agent.tmux_pane, content: output });
|
|
367
367
|
}
|
|
368
368
|
catch (err) {
|
package/dist/tools/terminal.js
CHANGED
|
@@ -19,7 +19,7 @@ export function registerTerminalTools(server) {
|
|
|
19
19
|
if (result.error)
|
|
20
20
|
return result.error;
|
|
21
21
|
try {
|
|
22
|
-
const output = execFileSync('tmux', ['capture-pane', '-p', '-t', result.agent.tmux_pane], { timeout: 5000 }).toString();
|
|
22
|
+
const output = execFileSync('tmux', ['capture-pane', '-p', '-S', '-', '-t', result.agent.tmux_pane], { timeout: 5000 }).toString();
|
|
23
23
|
return successResponse({
|
|
24
24
|
agent: params.agent_name,
|
|
25
25
|
pane: result.agent.tmux_pane,
|