Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(amazonq): configuration support for vscode #882

Draft
wants to merge 53 commits into
base: feature/qflare
Choose a base branch
from

Conversation

zixlin7
Copy link
Contributor

@zixlin7 zixlin7 commented Mar 26, 2025

Problem

merging main branch changes into the feature branch, the only new commit is: a1d43e4 and 08426ad

  1. VS Code currently use a different section for configurations
  2. the client name in ideCategory matching logic doesn't match the actual VS Code client name
  3. Import currently doesn't take into consideration user settings

Solution

  1. update the logic to accommodate VSC configurations in language server
  2. fix the client name for VS Code
  3. respect user's import settings

License

By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.

dependabot bot and others added 30 commits March 13, 2025 00:38
Bumps [@types/vscode](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/vscode) from 1.97.0 to 1.98.0.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/vscode)

---
updated-dependencies:
- dependency-name: "@types/vscode"
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…#833)

* feat: add IAM webworker bundling in codewhisperer-runtimes

---------

Co-authored-by: Francesco Piccoli <[email protected]>
Follow up PRs will enable it for use in the identity server.

Flow:
- Shows a user code ack to client
  - can be cancelled
- Then opens the url and a progress bar on the client with the user code as a message on it
- Periodically polls for the user to complete login or the client to cancel the auth flow

Misc:
- modify eslint rule to support a common idiom
- move util function to lsp core (it was unused where it was)
…re (aws#834)

## Problem
- Common utils that will be used by other amazon q agents + potentially other lsps are buried in the codewhisperer package

## Solution
- pull out those utils into lsp-core
- add resolve fallbacks for stream, crypto and set vm, fs to be false so that the codewhisperer web runtime could be built when using `@aws/lsp-core`
    - See [vscode toolkit webpack](https://github.com/aws/aws-toolkit-vscode/blob/master/packages/webpack.web.config.js#L56)
- Add device code as selectable auth flow
- Refactor PKCE flow to use params structure
- Add IdentityServer to cw lsp activation and update version
- Add example message handlers in the sample vscode app
* chore(release): release packages from branch main

* fix: add missing dependency version updates

* fix: update package-lock.json

* fix: update test workflow with all released packages

* chore: update runtimes dependency

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Natalia Durlik <[email protected]>
…pport for Q Developer profiles (aws#814)

* Added support for Amazon Q Developer Profile API
* Added CodeWhisperer Service connection manager
* Added AmazonQTokenServiceManager to provide centralized access to regionalized CodeWhisperer Service client object, based on current SSO connection type and Developer profile selection.
* Added support for configuration option in LSP InitializeParams to toggle Q Developer Profiles support logic for backwards compatibility
* Integrate AmazonQTokenServiceManager with CodeWhisperer InlineCompletions handler
…nvoked (aws#848)

* feat(amazonq): listed on amazon.q configuration pushed from client and support Q Profiles feature

* feat(amazonq): extend global SDK service lifecycle management and handle profile changes

* feat: throw LSP response errors from Codewhisperer server instead of return

* feat: added base class for AmazonQService manager

* feat: complete login and profile state transitions

* feat: handle LSP configuration changes in QServiceManager

* feat(amazonq): put IDC profiles behing feature flag

* chore(amazonq): maintain formatting in codeWhispererServer

* feat: allow to set userAgent of QService manager

* chore: docs and styling

* chore: docs and removed unused errors

* feat(amazonq): adding tests for AmazonQTokenServiceManager

* feat(amazonq): clean up state handling

* test(amazonq): update unit test

* docs(amazonq): docs for AmazonQTokenServiceManager

* feat(amazonq): added more logs and use shared listProfiles handler

* chore: delete empty file

* feat(amazonq): fix usage of AmazonQTokenServiceManager configurations handler

* fix(amazonq): fix default profile selection

* feat: abort all inflight requests when resetCodewhispererService is invoked

* fix(amazonq): update initialization flow for AmazonQTokenServiceManager

* fix(amazonq): block Q service usage when PENDING_Q_PROFILE_UPDATE

* feat: refactoring of types and removing the error event handler to track complete request

---------

Co-authored-by: Viktor Shcherba <[email protected]>
Co-authored-by: Paras <[email protected]>
…of bearer token signout (aws#842)

* feat(amazonq): listed on amazon.q configuration pushed from client and support Q Profiles feature

* feat(amazonq): extend global SDK service lifecycle management and handle profile changes

* feat: throw LSP response errors from Codewhisperer server instead of return

* feat: added base class for AmazonQService manager

* feat: complete login and profile state transitions

* feat: handle LSP configuration changes in QServiceManager

* feat(amazonq): put IDC profiles behing feature flag

* chore(amazonq): maintain formatting in codeWhispererServer

* feat: allow to set userAgent of QService manager

* chore: docs and styling

* chore: docs and removed unused errors

* feat(amazonq): adding tests for AmazonQTokenServiceManager

* feat(amazonq): clean up state handling

* test(amazonq): update unit test

* docs(amazonq): docs for AmazonQTokenServiceManager

* feat(amazonq): added more logs and use shared listProfiles handler

* chore: delete empty file

* feat(amazonq): fix usage of AmazonQTokenServiceManager configurations handler

* chore: added auth listener to reset the service manager state in case of bearer token signout

* chore: update to attach a handler with credentialsProvider

* refactor: remove unused execute command capability: bearerCredentialsDeleteCommand

* chore: remove unused import

* chore: update to use new credentials handler

* chore: reset the state to pending connection

* fix(amazonq): fix default profile selection

* chore: fix failing tests

* fix(amazonq): update initialization flow for AmazonQTokenServiceManager

* fix(amazonq): block Q service usage when PENDING_Q_PROFILE_UPDATE

* feat: update the version of runtimes to be able to use credential deletion event handler

* feat: add unit tests and call to reserCodeWhispererService

---------

Co-authored-by: Viktor Shcherba <[email protected]>
Co-authored-by: Paras <[email protected]>
…ws#853)

Update AmazonQTokenServiceManager to expose factory to create CodeWhisperer Streaming client.
Use streaming client factory from manager in Q Chat Server.
…ws#859)

* feat(amazonq): add regionalization support to security scan server

* refactor(amazonq): improve region discovery logging
* feat: cancel inflight update profile requests

* feat: added respective test case for cancelling inflight update request

* feat: refactor the changes to restore the old state for cancellation

---------

Co-authored-by: Paras <[email protected]>
Emit expired errors instead of returning undefined so that
the client can more easily understand what is going on.
…scans (aws#858)

## Problem
Q developer scans were failing to execute due to a couple of issues. This change adds fixes to address them.
## Solution
Changes included:
* Scans were timing out due to a lower timeout limit. It has now been updated to 15mins matching other IDE's timeout limits for project scans. 
* Missing parameters specifying the scope of the scan has now been added to the `UploadToS3` call and the `CreateScanJob` call of the scan process. At this time only `PROJECT` scope is supported. Support for file auto scans is out of scope. 
* A bug related to the presence of kms key in the upload call has been fixed.  
   * The null and undefined check for kmsKey always returned a true, that has now been fixed as an AND conditional check
   * The `CreateUploadUrlResponse` 's requestHeaders is defaulted  first to pick the request Headers.
@zixlin7 zixlin7 marked this pull request as ready for review March 26, 2025 23:23
@zixlin7 zixlin7 requested a review from a team as a code owner March 26, 2025 23:23
@zixlin7 zixlin7 marked this pull request as draft March 28, 2025 17:08
@zixlin7 zixlin7 marked this pull request as ready for review March 28, 2025 18:13
@jpinkney-aws
Copy link
Contributor

@zixlin7 is there any specific files you've changed that we need to take a look at for the merge?

@zixlin7
Copy link
Contributor Author

zixlin7 commented Apr 1, 2025

I think just reviewing the new commits should be sufficient for now. In case of unexpected merge error, there probably would be test failure and we should be able to catch it when we merge this feature branch back to main.

@zixlin7 is there any specific files you've changed that we need to take a look at for the merge?

@viktorsaws
Copy link
Contributor

It would be much easier to review, If actual functional changes would be in separate PR from rebases.


public async handleDidChangeConfiguration(ideCategory?: string, params?: DidChangeConfigurationParams) {
try {
if (ideCategory === 'VSCODE') {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd prefer not to add custom client-specific handling to Language Server, and delegate it to client to respond with expected configuration and read from client-specific configuration store. Adding more modes make it harder to test and manage language server logic.

VsCode extension could register custom handler on ConfigurationRequest method on LanguageClient and respond with what server expects following existing API.

    client.onRequest(ConfigurationRequest.method, (section) => {
        // Get configuration from VSCode and return
    })

@@ -47,7 +47,7 @@ export const getUserAgent = (initializeParams: InitializeParams, serverInfo?: Se
}

const IDE_CATEGORY_MAP: { [key: string]: IdeCategory } = {
'AmazonQ-For-VSCode': 'VSCODE',
'AWS IDE Extensions for VSCode': 'VSCODE',
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This value should not be changed, because this format was specifically requested. Was there a change in the requirements from BI?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you help me understand how does this affect BI if we are just mapping client name to 'VSCODE'? I don't see a reverse mapping where we send AmazonQ-For-VSCode to telemetry.
I can instead change the VS Code extension name to match this one.

@zixlin7
Copy link
Contributor Author

zixlin7 commented Apr 3, 2025

It would be much easier to review, If actual functional changes would be in separate PR from rebases.

Is there any reason that we cannot have auto merge to feature branches, similar to all toolkits repos? I think it adds unnecessary work to create manual merge PRs just to rebase on top of feature changes. Or are feature flags preferred?

@zixlin7 zixlin7 marked this pull request as draft April 4, 2025 02:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.