getyaak-bin
The package installs a prebuilt binary from the project's official GitHub releases, which is a normal distribution method; the only concern is low votes and recent upload, but the source is verifiable and no malicious behavior is present.
Triggered rules
zero_votes_recent
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
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 only concern is low votes and recent upload, but the source is verifiable and no malicious behavior is present.
PKGBUILD
# Maintainer: Hannes Hapke <hannes.hapke@gmail.com>
pkgname=getyaak-bin
_pkgname=yaak
pkgver=0.2.2
pkgrel=1
pkgdesc="Translate natural language to bash commands using any OpenAI-compatible LLM (prebuilt binary)"
arch=('x86_64')
url="https://github.com/hanneshapke/yaak"
license=('Apache-2.0')
provides=('getyaak')
conflicts=('getyaak' 'yaak-cli')
depends=('gcc-libs')
source=("$_pkgname-$pkgver-x86_64.tar.gz::https://github.com/hanneshapke/yaak/releases/download/v$pkgver/yaak-v$pkgver-x86_64-unknown-linux-gnu.tar.gz")
# Regenerate with `updpkgsums` after bumping pkgver.
sha256sums=('30f3af237580161c1e4417a6fbfe2cfa80593d0ee21263c63748a7f12532a3a6')
package() {
cd "$srcdir/$_pkgname-v$pkgver-x86_64-unknown-linux-gnu"
install -Dm755 "$_pkgname" "$pkgdir/usr/bin/$_pkgname"
# License and docs (best-effort; upstream tarball may not contain them).
if [ -f LICENSE ]; then
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$_pkgname/LICENSE"
fi
if [ -f README.md ]; then
install -Dm644 README.md "$pkgdir/usr/share/doc/$_pkgname/README.md"
fi
# Shell completions generated at runtime by the yaak binary itself.
"$pkgdir/usr/bin/$_pkgname" --completions bash | install -Dm644 /dev/stdin \
"$pkgdir/usr/share/bash-completion/completions/$_pkgname"
"$pkgdir/usr/bin/$_pkgname" --completions zsh | install -Dm644 /dev/stdin \
"$pkgdir/usr/share/zsh/site-functions/_$_pkgname"
"$pkgdir/usr/bin/$_pkgname" --completions fish | install -Dm644 /dev/stdin \
"$pkgdir/usr/share/fish/vendor_completions.d/$_pkgname.fish"
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-12 19:12:35 | Low | 2 |