@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 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) {
@@ -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,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dalmasonto/taskflow-mcp",
3
- "version": "1.0.15",
3
+ "version": "1.0.16",
4
4
  "description": "MCP server for TaskFlow — manage projects, tasks, timers, analytics via AI agents",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",