Package Details: goose-desktop 1.0.35-2

Git Clone URL: https://aur.archlinux.org/goose-desktop.git (read-only, click to copy)
Package Base: goose-desktop
Description: An open-source, extensible AI agent that goes beyond code suggestions (with UI)
Upstream URL: https://github.com/block/goose
Licenses: Apache-2.0
Conflicts: codename-goose, codename-goose-bin
Submitter: dbirks
Maintainer: dbirks
Last Packager: dbirks
Votes: 4
Popularity: 1.65
First Submitted: 2025-04-16 04:56 (UTC)
Last Updated: 2025-07-08 05:22 (UTC)

Latest Comments

aalaniz commented on 2025-07-13 00:13 (UTC) (edited on 2025-07-13 00:14 (UTC) by aalaniz)

Great project, thanks! I have been trying to support deep links and the following patch seems to at least launch goose-desktop when opening a goose deep link from chrome, but I am not actually able to get a goose recipe to pass through. Thought I would comment in case it's helpful. Thanks again!

diff --git a/goose-desktop.desktop b/goose-desktop.desktop
index 4b4452f..8d364d2 100644
--- a/goose-desktop.desktop
+++ b/goose-desktop.desktop
@@ -2,7 +2,8 @@
 Type=Application
 Name=Goose
 Comment=An open-source, extensible AI agent that goes beyond code suggestions
-Exec=/usr/bin/goose-desktop
+Exec=/usr/bin/goose-desktop %U
+MimeType=x-scheme-handler/goose;
 Icon=goose-desktop
 Terminal=false
 Categories=Development;Utility;

rageltman commented on 2025-05-24 00:16 (UTC)

Had to add the following for the build to succeed:

diff --git i/PKGBUILD w/PKGBUILD
index 357c924..2202f20 100644
--- i/PKGBUILD
+++ w/PKGBUILD
@@ -17,6 +17,8 @@ makedepends=(
   "nodejs"
   "just"
   "oniguruma"
+  "libxml2"
+  "libxcb"
 )