feat(plugin): native Fireworks AI login - #46223
Open
Darren-A11att wants to merge 1 commit into
Open
Conversation
Adds a built-in auth plugin for the fireworks-ai provider so opencode auth login (CLI) and /connect (TUI) offer a browser-based 'Log in with Fireworks Connect' flow: PKCE localhost-callback sign-in against the Fireworks SSO, then gateway key minting, stored as a native credential. An API-key paste method remains as fallback. The sign-in protocol is ported from the MIT-licensed fw-ai/fireconnect CLI (Cognito PKCE flow + gRPC-web gateway calls). Includes 23 unit tests covering the helpers and the full flow with dependency-injected fetch.
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.
Issue for this PR
Closes #46222
Type of change
What does this PR do?
Adds a built-in auth plugin for
fireworks-aisoauth loginand/connectoffer "Log in with Fireworks Connect": browser sign-in (PKCE + localhost callback against the Fireworks SSO), then automatic API-key minting via the Fireworks gateway, stored as a native credential. An API-key paste method remains as fallback. Protocol matches Fireworks' open-source fireconnect CLI (MIT).Two files changed (
plugin/index.tsregistration,providers.tspriority), one new plugin file, one new test file.How did you verify your code works?
auth listshows Fireworks AI connected, andopencode run --model fireworks-ai/accounts/fireworks/models/glm-5p3completed successfully.bun typecheckshows only 2 pre-existing errors in packages/core on Bun 1.4, unrelated to this change.Screenshots / recordings
No UI changes beyond a new auth-method entry in the existing connect dialog.
Checklist