Package Details: claudia 0.1.0-1

Git Clone URL: https://aur.archlinux.org/claudia.git (read-only, click to copy)
Package Base: claudia
Description: A powerful GUI app and Toolkit for Claude Code
Upstream URL: https://github.com/getAsterisk/claudia
Licenses: MIT
Submitter: asermax
Maintainer: dbirks
Last Packager: asermax
Votes: 2
Popularity: 0.085054
First Submitted: 2025-06-21 01:15 (UTC)
Last Updated: 2025-06-21 01:15 (UTC)

Latest Comments

emaballarin commented on 2025-08-26 10:45 (UTC)

The project has been renamed to "Gooey". The following patch updates package files to the new naming scheme. This comment is a copy of the out-of-date flagging message, hopefully formatted correctly.

diff --git i/.SRCINFO w/.SRCINFO
index dbfa32b..0753e44 100644
--- i/.SRCINFO
+++ w/.SRCINFO
@@ -1,8 +1,8 @@
-pkgbase = claudia
+pkgbase = gooey
    pkgdesc = A powerful GUI app and Toolkit for Claude Code
    pkgver = 0.1.0
    pkgrel = 1
-   url = https://github.com/getAsterisk/claudia
+   url = https://github.com/getAsterisk/gooey
    arch = x86_64
    license = MIT
    makedepends = rust
@@ -16,7 +16,7 @@ pkgbase = claudia
    depends = libayatana-appindicator
    depends = librsvg
    depends = sqlite
-   source = git+https://github.com/getAsterisk/claudia.git
+   source = git+https://github.com/getAsterisk/gooey.git
    sha256sums = SKIP

-pkgname = claudia
+pkgname = gooey
diff --git i/.gitignore w/.gitignore
index c889e2e..de8aadb 100644
--- i/.gitignore
+++ w/.gitignore
@@ -1,4 +1,4 @@
 pkg
 src
-claudia
+gooey
 *.pkg.tar.zst
diff --git i/PKGBUILD w/PKGBUILD
index 4158246..226dcbc 100644
--- i/PKGBUILD
+++ w/PKGBUILD
@@ -1,15 +1,15 @@
 # Maintainer: Agustin Carrasco <asermax@gmail.com>

-pkgname=claudia
+pkgname=gooey
 pkgver=0.1.0
 pkgrel=1
 pkgdesc="A powerful GUI app and Toolkit for Claude Code"
 arch=('x86_64')
-url="https://github.com/getAsterisk/claudia"
+url="https://github.com/getAsterisk/gooey"
 license=('MIT')
 depends=('claude-code' 'webkit2gtk-4.1' 'gtk3' 'libayatana-appindicator' 'librsvg' 'sqlite')
 makedepends=('rust' 'bun-bin' 'git' 'pkg-config' 'xdo')
-source=("git+https://github.com/getAsterisk/claudia.git")
+source=("git+https://github.com/getAsterisk/gooey.git")
 sha256sums=('SKIP')

 prepare() {
@@ -41,13 +41,13 @@ package() {
 [Desktop Entry]
 Type=Application
 Version=${pkgver}
-Name=Claudia
+Name=Gooey
 Comment=A powerful GUI app and Toolkit for Claude Code
 Exec=/usr/bin/$pkgname
 Icon=$pkgname
 Terminal=false
 Categories=Development;Utility;
-StartupWMClass=claudia
+StartupWMClass=gooey
 EOF

     # Install icon (if available)

Lulzagna commented on 2025-08-20 16:37 (UTC) (edited on 2025-08-20 16:41 (UTC) by Lulzagna)

Getting this error: Error: Cannot find module @rollup/rollup-linux-x64-gnu when building - seems like the linux rollup binary isn't being installed. I ran npm install -D rollup to force it and then ran into another missing dependency for Lightning CSS.

Seems like an issue with the Claudia repo, but I was able to build the project with this:

diff --git a/PKGBUILD b/PKGBUILD
index 4158246..b22737a 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -16,6 +16,7 @@ prepare() {
     cd "$srcdir/$pkgname"

     # Install frontend dependencies
+    npm install -D rollup lightningcss
     bun install
 }

ll931217 commented on 2025-07-02 01:48 (UTC) (edited on 2025-07-02 01:48 (UTC) by ll931217)

I had an issue with this installation:

Failed to create GBM buffer of size 800x600: Invalid argument

Was able to fix it with the solution provided from this issue:

sudo nvim /usr/share/applications/claudia.desktop

# Update the Exec entry
Exec=env WEBKIT_DISABLE_COMPOSITING_MODE=1 GDK_BACKEND=x11 /usr/bin/claudia