Add Chat API Support to AWS LSP CodeWhisperer Transform Handler#2635
Open
pranav-firake wants to merge 1 commit intomainfrom
Open
Add Chat API Support to AWS LSP CodeWhisperer Transform Handler#2635pranav-firake wants to merge 1 commit intomainfrom
pranav-firake wants to merge 1 commit intomainfrom
Conversation
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #2635 +/- ##
==========================================
- Coverage 60.27% 59.66% -0.62%
==========================================
Files 279 279
Lines 65885 66079 +194
Branches 4164 4085 -79
==========================================
- Hits 39713 39426 -287
- Misses 26090 26571 +481
Partials 82 82
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
tomar-gunjan
approved these changes
Feb 27, 2026
Rajanna-Karthik
approved these changes
Feb 27, 2026
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.
Add Chat API Support to AWS LSP CodeWhisperer Transform Handler
Summary
Extends AWS LSP CodeWhisperer with chat capabilities to enable IDE → LSP → Gumby Front End Service (FES) communication for AWS Transform operations.
Changes
Core Implementation
atxTransformHandler.ts
atxNetTransformServer.ts
Testing
tests/atxTransformHandler.test.ts (new)
Test Scripts
test-chat-axios.js (new)
chat-interactive.js (new)
Technical Details
Authentication
Uses existing bearer token pattern via addAuthToCommand() middleware
API Protocol
Response Format
typescript
{
success: true,
data: {
sentMessage: { messageId: string },
response: {
messageId: string,
text: string,
messageType: 'FINAL_RESPONSE',
interactions: Array<{ actionType, data }>,
createdAt: string
}
}
}
Testing
bash
npm run compile # No TypeScript errors
npx ts-mocha "src/language-server/netTransform/tests/atxTransformHandler.test.ts" # 12 passing
Files Modified
Next Steps
IDE integration can now invoke LSP chat commands to communicate with AWS Transform service.