getyaak-bin

LOW
maintainer hanneshapke 0 votes scanned 2026-09-12 19:12:35.548512
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 only concern is low votes and recent upload, but the source is verifiable and no malicious behavior is present.

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 only concern is low votes and recent upload, but the source is verifiable and no malicious behavior is present.

PKGBUILD

1# Maintainer: Hannes Hapke <hannes.hapke@gmail.com>
2pkgname=getyaak-bin
3_pkgname=yaak
4pkgver=0.2.2
5pkgrel=1
6pkgdesc="Translate natural language to bash commands using any OpenAI-compatible LLM (prebuilt binary)"
7arch=('x86_64')
8url="https://github.com/hanneshapke/yaak"
9license=('Apache-2.0')
10provides=('getyaak')
11conflicts=('getyaak' 'yaak-cli')
12depends=('gcc-libs')
13source=("$_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")
14# Regenerate with `updpkgsums` after bumping pkgver.
15sha256sums=('30f3af237580161c1e4417a6fbfe2cfa80593d0ee21263c63748a7f12532a3a6')
16
17package() {
18 cd "$srcdir/$_pkgname-v$pkgver-x86_64-unknown-linux-gnu"
19 install -Dm755 "$_pkgname" "$pkgdir/usr/bin/$_pkgname"
20
21 # License and docs (best-effort; upstream tarball may not contain them).
22 if [ -f LICENSE ]; then
23 install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$_pkgname/LICENSE"
24 fi
25 if [ -f README.md ]; then
26 install -Dm644 README.md "$pkgdir/usr/share/doc/$_pkgname/README.md"
27 fi
28
29 # Shell completions generated at runtime by the yaak binary itself.
30 "$pkgdir/usr/bin/$_pkgname" --completions bash | install -Dm644 /dev/stdin \
31 "$pkgdir/usr/share/bash-completion/completions/$_pkgname"
32 "$pkgdir/usr/bin/$_pkgname" --completions zsh | install -Dm644 /dev/stdin \
33 "$pkgdir/usr/share/zsh/site-functions/_$_pkgname"
34 "$pkgdir/usr/bin/$_pkgname" --completions fish | install -Dm644 /dev/stdin \
35 "$pkgdir/usr/share/fish/vendor_completions.d/$_pkgname.fish"
36}
37

Scan history

Scanned at (UTC)SeverityRules
2026-09-12 19:12:35 Low 2

Report a package

Reports go to the AURWatch maintainer (one person) and are read by hand. No login required.

0 / 4000
Your suggestion