tuna-agent 0.1.18 → 0.1.19

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/mcp/setup.js CHANGED
@@ -54,7 +54,7 @@ export async function callMem0AddMemory(text, agentName) {
54
54
  resolved = true;
55
55
  proc.kill();
56
56
  reject(new Error('Mem0 call timed out'));
57
- } }, 15000);
57
+ } }, 30000);
58
58
  proc.stderr.on('data', () => { }); // ignore stderr
59
59
  const initMsg = JSON.stringify({ jsonrpc: '2.0', id: 1, method: 'initialize', params: { protocolVersion: '2024-11-05', capabilities: {}, clientInfo: { name: 'tuna-agent', version: '1.0' } } });
60
60
  const notifyMsg = JSON.stringify({ jsonrpc: '2.0', method: 'notifications/initialized' });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tuna-agent",
3
- "version": "0.1.18",
3
+ "version": "0.1.19",
4
4
  "description": "Tuna Agent - Run AI coding tasks on your machine",
5
5
  "bin": {
6
6
  "tuna-agent": "dist/cli/index.js"