fix: extension loading, syncs platform/builtin configs when new install#6568
Merged
michaelneale merged 1 commit intomainfrom Jan 19, 2026
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR attempts to fix regressions in extension loading by modifying how bundled extensions are detected and initialized. The changes span both the TypeScript frontend (ConfigContext) and Rust backend (extensions config).
Changes:
- Modified frontend to detect absence of bundled extensions and trigger sync from bundled-extensions.json on initial load
- Changed Rust backend to unconditionally inject platform extensions instead of only when extensions map is non-empty
- Added logic to reload extensions after syncing bundled extensions
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| ui/desktop/src/components/ConfigContext.tsx | Adds bundled extension detection and sync logic during initial config load |
| crates/goose/src/config/extensions.rs | Removes conditional check so platform extensions are always injected |
lifeizhou-ap
approved these changes
Jan 19, 2026
The-Best-Codes
approved these changes
Jan 19, 2026
michaelneale
added a commit
that referenced
this pull request
Jan 19, 2026
fbalicchia
pushed a commit
to fbalicchia/goose
that referenced
this pull request
Jan 23, 2026
…lock#6568) Signed-off-by: fbalicchia <fbalicchia@cuebiq.com>
raj-subhankar
pushed a commit
to raj-subhankar/goose
that referenced
this pull request
Feb 14, 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.
trying this approach - fixes #6554
thanks to #6567 from @The-Best-Codes
fixes: #6554