pi-agent-desktop-bin
maintainer duanluan
· 0 votes
· scanned 2026-08-18 00:03:42.021799
LOW
View on AUR ↗
Why flagged
The package installs a prebuilt binary from the project's official GitHub releases, which is a normal distribution method; the source is verifiable and the build process is transparent, posing no inherent security risk despite the binary origin.
Triggered rules
LOW
Few votes, recently uploaded
zero_votes_recent
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
LOW
AI review
llm_review
An AI model (qwen/qwen3-235b-a22b-2507) reviewed this and agrees it is LOW (confidence 95%): The package installs a prebuilt binary from the project's official GitHub releases, which is a normal distribution method; the source is verifiable and the build process is transparent, posing no inherent security risk despite the binary origin.
PKGBUILD
1
# Maintainer: duanluan <duanluan@outlook.com>
2
3
pkgname=pi-agent-desktop-bin
4
_pkgname=pi-agent-desktop
5
_appname='Pi Agent'
6
pkgver=0.3.2
7
pkgrel=2
8
pkgdesc='Desktop UI for browsing sessions and working with the pi coding agent (prebuilt binary)'
9
arch=('x86_64')
10
url='https://github.com/abcwyc/pi-agent-desktop'
11
license=('MIT')
12
depends=('gtk3' 'libayatana-appindicator' 'webkit2gtk-4.1')
13
provides=("${_pkgname}")
14
conflicts=("${_pkgname}")
15
options=('!strip')
16
source=("${_appname// /_}_${pkgver}_amd64.deb::https://github.com/abcwyc/pi-agent-desktop/releases/download/v${pkgver}/Pi.Agent_${pkgver}_amd64.deb"
17
'LICENSE')
18
sha256sums=('396d76065721ff91a8f94a7748a66254144e484682cade0535c74eb03a18c47d'
19
'19cee3b1b8fd9b42f9515366bc1a7dfaaf22fcb006234ebb85ff2f6f8c52eb2b')
20
21
package() {
22
local extract_dir="${srcdir}/deb-extract"
23
24
rm -rf "${extract_dir}"
25
install -dm755 "${extract_dir}"
26
bsdtar -C "${extract_dir}" -xf "${srcdir}/${_appname// /_}_${pkgver}_amd64.deb"
27
bsdtar -C "${pkgdir}" -xf "${extract_dir}/data.tar.gz"
28
29
mv "${pkgdir}/usr/bin/${_pkgname}" \
30
"${pkgdir}/usr/lib/${_appname}/${_pkgname}"
31
install -Dm755 /dev/stdin "${pkgdir}/usr/bin/${_pkgname}" <<'SCRIPT'
32
#!/bin/sh
33
export WEBKIT_DISABLE_DMABUF_RENDERER="${WEBKIT_DISABLE_DMABUF_RENDERER:-1}"
34
exec '/usr/lib/Pi Agent/pi-agent-desktop' "$@"
35
SCRIPT
36
37
install -Dm644 "${srcdir}/LICENSE" \
38
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
39
}
40
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-18 00:03:42 | LOW | 2 |
| 2026-08-17 00:18:29 | LOW | 2 |
| 2026-08-16 21:33:47 | LOW | 2 |