-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Sync desktop_prompt with UI #6898
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
Conversation
Updated the instructions for adding extensions to reflect the new location in the sidebar and updated the URL for browsing 3rd party extensions.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This PR updates the desktop_prompt.md file to reflect recent UI changes in the goose desktop application, specifically updating the location and documentation for how users can add extensions.
Changes:
- Updated the location for adding extensions from the "Settings" page (top right menu) to the "Extensions" page (sidebar on the left)
- Updated the URL for browsing 3rd party extensions from
https://block.github.io/goose/v1/extensions/tohttps://block.github.io/goose/extensions/
|
|
||
| Some extensions are builtin, such as Developer and Memory, while | ||
| 3rd party extensions can be browsed at https://block.github.io/goose/v1/extensions/. No newline at end of file | ||
| 3rd party extensions can be browsed at https://block.github.io/goose/extensions/. |
Copilot
AI
Feb 2, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The URL for browsing 3rd party extensions has been updated from https://block.github.io/goose/v1/extensions/ to https://block.github.io/goose/extensions/. However, the UI code still references the old URL. The ExtensionsView.tsx (line 127) and ExtensionsSection.tsx (line 206) files still use https://block.github.io/goose/v1/extensions/ in their "Browse extensions" button click handlers. This creates an inconsistency where the prompt file mentions one URL but the actual UI opens a different URL. Either this file should use the same URL as the UI, or the UI should be updated to match this change.
| 3rd party extensions can be browsed at https://block.github.io/goose/extensions/. | |
| 3rd party extensions can be browsed at https://block.github.io/goose/v1/extensions/. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Don't think this matters? The /v1 path in the UI is redirected to /extensions
…ntext * 'main' of github.com:block/goose: refactor(providers): extract ProviderDef trait and OpenAiCompatibleProvider (#6832) feat: ask ai discord bot (#6842) chore(maintenance): make GitHub repo configurable for auto-updater and publisher (#6828) fix: make apps work in built copies of goose (#6901) Remove dependency on goose-mcp from goose crate (#6637) Clean up build canonical warnings (#6880) Sync desktop_prompt with UI (#6898)
Signed-off-by: Harrison <[email protected]>
Summary
Updated the instructions for adding extensions to reflect the new location in the sidebar and updated the URL for browsing 3rd party extensions to avoid the redirect
Type of Change
AI Assistance
Testing
None