v0.5.79: longer MCP tools timeout, optimize loop/parallel regeneration, enrich.so integration#3104
Merged
waleedlatif1 merged 4 commits intomainfrom Feb 1, 2026
Merged
v0.5.79: longer MCP tools timeout, optimize loop/parallel regeneration, enrich.so integration#3104waleedlatif1 merged 4 commits intomainfrom
waleedlatif1 merged 4 commits intomainfrom
Conversation
Collaborator
waleedlatif1
commented
Feb 1, 2026
- improvement(ratelimits, sockets): increase across all plans, reconnecting notif for sockets (improvement(ratelimits, sockets): increase across all plans, reconnecting notif for sockets #3096)
- fix(mcp): pass timeout to SDK callTool to override 60s default (fix(mcp): pass timeout to SDK callTool to override 60s default #3101)
- fix(workflow): optimize loop/parallel regeneration and prevent duplicate agent tools (fix(workflow): optimize loop/parallel regeneration and prevent duplicate agent tools #3100)
- feat(tools): added enrich so (feat(tools): added enrich so #3103)
…ting notif for sockets (#3096) * improvement(rate-limits): increase across all plans * improve sockets with reconnecting * address bugbot comment * fix typing
…ate agent tools (#3100) * fix(workflow): optimize loop/parallel regeneration and prevent duplicate agent tools * refactor(workflow): remove addBlock in favor of batchAddBlocks - Migrated undo-redo to use batchAddBlocks instead of addBlock loop - Removed addBlock method from workflow store (now unused) - Updated tests to use helper function wrapping batchAddBlocks - This fixes the cursor bot comments about inconsistent parent checking
* feat(tools): added enrich so * updated docs and types
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Contributor
Greptile OverviewGreptile SummaryThis PR bundles four separate improvements into version 0.5.79: Enrich.so Integration (#3103)
MCP Timeout Fix (#3101)
Workflow Performance Optimization (#3100)
Rate Limits & Socket Improvements (#3096)
Confidence Score: 5/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant Client as Frontend Client
participant Socket as Socket Provider
participant Handler as Socket Handler
participant Store as Workflow Store
participant DB as Database
Note over Client,DB: Subblock/Variable Update Flow (with workflowId validation)
Client->>Socket: emitSubblockUpdate(blockId, subblockId, value, operationId, workflowId)
Socket->>Handler: socket.emit('subblock-update', {workflowId, blockId, ...})
Handler->>Handler: Validate sessionWorkflowId vs payloadWorkflowId
alt Workflow ID mismatch
Handler->>Socket: emit('operation-failed', {operationId, error})
Socket->>Client: Operation failed notification
else Valid workflow ID
Handler->>Handler: Queue update for coalescing
Handler->>DB: Flush batched update
DB-->>Handler: Update success
Handler->>Socket: emit('operation-confirmed', {operationId})
Handler->>Client: Broadcast update (except sender)
end
Note over Store: Loop/Parallel Optimization
Client->>Store: batchAddBlocks(blocks, edges)
Store->>Store: Check if blocks affect loop/parallel structure
alt Affects structure (loop/parallel container or child)
Store->>Store: generateLoopBlocks() / generateParallelBlocks()
else Only edges or unrelated blocks
Store->>Store: Skip regeneration (reuse existing)
end
Store-->>Client: State updated
Note over Client,Handler: MCP Tool Execution
Client->>Handler: Execute MCP tool
Handler->>Handler: client.callTool(params, undefined, {timeout: 600000})
Note right of Handler: 10 min timeout instead of 60s default
Handler-->>Client: Tool result
|
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 2 potential issues.
Bugbot Autofix is OFF. To automatically fix reported issues with Cloud Agents, enable Autofix in the Cursor dashboard.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.