feat(google-tasks): add Google Tasks integration#3342
Merged
waleedlatif1 merged 7 commits intostagingfrom Feb 26, 2026
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub. |
Contributor
Greptile SummaryAdds a full Google Tasks integration with OAuth support, covering 6 operations: create, list, get, update, delete tasks, and list task lists. The implementation follows the established integration pattern (tools + block + icon + OAuth config + docs) and is consistent with existing Google integrations like Google Calendar and Google Sheets.
Confidence Score: 4/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant U as User/Workflow
participant B as Google Tasks Block
participant T as Tool (create/list/get/update/delete)
participant API as Google Tasks API v1
U->>B: Select operation + fill fields
B->>B: tools.config.tool(params) → select tool
B->>B: tools.config.params(params) → coerce types
B->>T: Execute with resolved params
T->>T: Build URL, headers, body
T->>API: HTTP request (POST/GET/PATCH/DELETE)
API-->>T: JSON response
T->>T: transformResponse → structured output
T-->>B: { success, output }
B-->>U: Block output (id, title, status, etc.)
Last reviewed commit: a1ead79 |
51cfe53 to
a1ead79
Compare
Collaborator
Author
|
@greptile |
Collaborator
Author
|
@cursor review |
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.
e7fb137 to
9220205
Compare
9220205 to
40e5a74
Compare
2605c3b to
3961cea
Compare
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
Tested manually
Checklist