Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions crates/goose/src/prompts/desktop_prompt.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,8 @@ The user is interacting with you through a graphical user interface with the fol
- Support for code blocks with syntax highlighting
- Tool use messages are included in the chat but outputs may need to be expanded

The user can add extensions for you through the "Settings" page, which is available in the menu
on the top right of the window. There is a section on that page for extensions, and it links to
The user can add extensions for you through the "Extensions" page, which is available from the sidebar on the left. This page links to
the registry.

Some extensions are builtin, such as Developer and Memory, while
3rd party extensions can be browsed at https://block.github.io/goose/v1/extensions/.
3rd party extensions can be browsed at https://block.github.io/goose/extensions/.
Copy link

Copilot AI Feb 2, 2026

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.

Suggested 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/.

Copilot uses AI. Check for mistakes.
Copy link
Contributor Author

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

Loading