feat(devin): add devin integration for autonomous coding sessions#3352
Merged
waleedlatif1 merged 6 commits intostagingfrom Feb 26, 2026
Merged
feat(devin): add devin integration for autonomous coding sessions#3352waleedlatif1 merged 6 commits intostagingfrom
waleedlatif1 merged 6 commits intostagingfrom
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub. |
5189d24 to
3b80072
Compare
Contributor
Greptile SummaryAdded Devin integration enabling autonomous AI coding sessions through 4 operations: create session, get session, list sessions, and send message. All tools use Devin v3 API with Bearer token authentication, and the organization is auto-resolved from the credential. Key implementation details:
Minor optimization opportunity:
Confidence Score: 5/5
Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[User creates Devin block] --> B[DevinBlock config]
B --> C{Operation selected}
C -->|create_session| D[devin_create_session tool]
C -->|get_session| E[devin_get_session tool]
C -->|list_sessions| F[devin_list_sessions tool]
C -->|send_message| G[devin_send_message tool]
D --> H[POST /v3/organizations/sessions]
E --> I[GET /v3/organizations/sessions/:id]
F --> J[GET /v3/organizations/sessions?first=N]
G --> K[POST /v3/organizations/sessions/:id/messages]
H --> L[Return session details]
I --> L
K --> L
F --> M[Return sessions array]
B --> N{wandConfig enabled?}
N -->|Yes| O[AI-assisted prompt generation]
O --> D
style D fill:#2A6DCE
style E fill:#1DC19C
style F fill:#1DC19C
style G fill:#1796E2
style B fill:#12141A
Last reviewed commit: ef296c4 |
Collaborator
Author
|
@greptile |
Collaborator
Author
|
@cursor review |
royceP2
pushed a commit
to arenadeveloper02/p2-sim
that referenced
this pull request
Mar 3, 2026
…mstudioai#3352) * feat(devin): add devin integration for autonomous coding sessions * lint * improvement(devin): update tool names and add manual docs description * improvement(devin): rename tool files to snake_case and regenerate docs * regen docs * fix(devin): remove redundant Number() conversions in tool request bodies
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