feat(circleback): add API tools, expanded block, and knowledge base connector - #7331
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub. |
Contributor
There was a problem hiding this comment.
All reported issues were addressed
Heads up: you’re close to your included review allowance. Set a flex budget so reviews don’t pause.
Re-trigger cubic
…ssignee validation, and connector indexing
Collaborator
Author
Contributor
Greptile SummaryThe PR expands Circleback from webhook-only triggers into a complete tools integration and knowledge-base connector.
Confidence Score: 5/5The PR appears safe to merge. No blocking failure remains.
|
| Filename | Overview |
|---|---|
| apps/sim/connectors/circleback/circleback.ts | Implements Circleback synchronization, deferred document hydration, transcript-aware invalidation, pagination, cap validation, and safe reconciliation behavior. |
| apps/sim/connectors/circleback/circleback.test.ts | Covers connector hashing, cap validation, pagination, response mapping, and listing-completeness behavior. |
| apps/sim/blocks/blocks/circleback.ts | Converts Circleback into a dual tool-and-trigger block with operation-specific inputs, parameter mappings, canvas sentences, and heterogeneous outputs. |
| apps/sim/tools/circleback/types.ts | Defines shared Circleback request, response, and output contracts across the newly exposed operations. |
| apps/sim/tools/circleback/utils.ts | Provides shared request shaping and pagination-response utilities for Circleback tools. |
| apps/sim/tools/registry.ts | Registers the new Circleback tools for workflow and agent execution. |
| apps/sim/connectors/registry.ts | Registers the Circleback knowledge-base connector. |
| apps/docs/content/docs/integrations/circleback.mdx | Documents the expanded Circleback actions, inputs, outputs, and existing triggers. |
Sequence Diagram
sequenceDiagram
participant U as User
participant B as Circleback Block
participant T as Circleback Tool
participant API as Circleback API
participant C as Knowledge Connector
participant K as Knowledge Base
U->>B: Configure operation and API key
B->>T: Map operation-specific parameters
T->>API: Invoke REST operation
API-->>T: Return Circleback resource
T-->>B: Return typed workflow output
C->>API: List meetings with cursor pagination
API-->>C: Meeting stubs and next cursor
C->>API: Fetch changed meeting content
C->>API: Fetch transcript when enabled
C->>K: Reconcile indexed documents
Reviews (5): Last reviewed commit: "fix(circleback): reject a zero sync cap ..." | Re-trigger Greptile
…block id output type
Collaborator
Author
Collaborator
Author
Collaborator
Author
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.
Summary
Type of Change
Testing
Checklist