qodercli-bin

LOW
maintainer Huipeng 0 votes scanned 2026-09-17 00:27:14.276658
View on AUR
Why flagged

The package downloads prebuilt binaries from Alibaba's official OSS domain, which is plausibly the project's own infrastructure; while checksums for completions are skipped, the binary hashes are verified and the source host is legitimate, limiting risk to typical supply-chain concerns of any binary package.

Triggered rules

Low AI review downgraded a static finding llm_review

The static rules flagged this MEDIUM, but an AI model (qwen/qwen3-235b-a22b-2507) reviewed the full PKGBUILD and judged it LOW (confidence 95%): The package downloads prebuilt binaries from Alibaba's official OSS domain, which is plausibly the project's own infrastructure; while checksums for completions are skipped, the binary hashes are verified and the source host is legitimate, limiting risk to typical supply-chain concerns of any binary package.

1 higher static finding superseded - not the current verdict (shown for transparency)
Medium source=() URL on a non-standard host source_untrusted_domain

One or more source=() URLs point to a host outside the trusted allowlist (github.com, gitlab.com, codeberg.org, pypi.org, …).

  • PKGBUILD:25 "qodercli_1.1.54_linux_amd64.tar.gz::https://qoder-ide.oss-accelerate.aliyuncs.com/qodercli/releases/1.1.54/qodercli-linux-x64.tar.gz"

PKGBUILD

1 offending line(s) highlighted
1# Maintainer: Huipeng <cheng.huipeng@outlook.com>
2pkgname=qodercli-bin
3pkgver=1.1.54
4pkgrel=1
5pkgdesc="Qoder Agentic CLI - Advanced AI coding agent from Alibaba"
6arch=('x86_64' 'aarch64')
7url="https://qoder.com/cli"
8license=('LicenseRef-Qoder-Product-Service')
9options=('!strip' '!debug')
10provides=('qoderclibin')
11conflicts=('qoder-cli')
12
13# Common sources (LICENSE and shell completions)
14source=(
15 "LICENSE"
16 "qodercli.bash"
17 "qodercli.zsh"
18 "qodercli.fish"
19)
20
21# Binary tarballs from manifest
22# https://download.qoder.com/qodercli/channels/manifest.json
23# We include a local LICENSE file (from https://qoder.com/product-service)
24source_x86_64=(
25 "qodercli_1.1.54_linux_amd64.tar.gz::https://qoder-ide.oss-accelerate.aliyuncs.com/qodercli/releases/1.1.54/qodercli-linux-x64.tar.gz"
26)
27source_aarch64=(
28 "qodercli_1.1.54_linux_arm64.tar.gz::https://qoder-ide.oss-accelerate.aliyuncs.com/qodercli/releases/1.1.54/qodercli-linux-arm64.tar.gz"
29)
30
31sha256sums=('c903bdab6b0279aa4b3d1735e423f0fec30c8ed931a111eb268f162d9ddade18'
32 'SKIP'
33 'SKIP'
34 'SKIP')
35sha256sums_x86_64=('4485d584ee4ac88137c525c557d03dd1413586fd51b89d9757244e94cb7c464a')
36sha256sums_aarch64=('5daaf9007b3067d453b943706d698b2aba8247f042589369078f324d57d71c50')
37
38package() {
39 # Find the extracted qodercli binary and install
40 local bin
41 bin="$(find "$srcdir" -type f -name qodercli -print -quit)"
42 install -Dm755 "$bin" "$pkgdir/usr/bin/qodercli"
43
44 # Install the LICENSE we downloaded
45 install -Dm644 "$srcdir/LICENSE" \
46 "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
47
48 # Install shell completions
49 install -Dm644 "$srcdir/qodercli.bash" \
50 "$pkgdir/usr/share/bash-completion/completions/qodercli"
51 install -Dm644 "$srcdir/qodercli.zsh" \
52 "$pkgdir/usr/share/zsh/site-functions/_qodercli"
53 install -Dm644 "$srcdir/qodercli.fish" \
54 "$pkgdir/usr/share/fish/vendor_completions.d/qodercli.fish"
55}
56

Changes since previous scan

--- PKGBUILD @ 2026-09-16 00:03
+++ PKGBUILD @ 2026-09-17 00:27
@@ -1,6 +1,6 @@
# Maintainer: Huipeng <cheng.huipeng@outlook.com>
pkgname=qodercli-bin
-pkgver=1.1.53
+pkgver=1.1.54
pkgrel=1
pkgdesc="Qoder Agentic CLI - Advanced AI coding agent from Alibaba"
arch=('x86_64' 'aarch64')
@@ -22,18 +22,18 @@
# https://download.qoder.com/qodercli/channels/manifest.json
# We include a local LICENSE file (from https://qoder.com/product-service)
source_x86_64=(
- "qodercli_1.1.53_linux_amd64.tar.gz::https://qoder-ide.oss-accelerate.aliyuncs.com/qodercli/releases/1.1.53/qodercli-linux-x64.tar.gz"
+ "qodercli_1.1.54_linux_amd64.tar.gz::https://qoder-ide.oss-accelerate.aliyuncs.com/qodercli/releases/1.1.54/qodercli-linux-x64.tar.gz"
)
source_aarch64=(
- "qodercli_1.1.53_linux_arm64.tar.gz::https://qoder-ide.oss-accelerate.aliyuncs.com/qodercli/releases/1.1.53/qodercli-linux-arm64.tar.gz"
+ "qodercli_1.1.54_linux_arm64.tar.gz::https://qoder-ide.oss-accelerate.aliyuncs.com/qodercli/releases/1.1.54/qodercli-linux-arm64.tar.gz"
)
-sha256sums=('1bfef6bdc432396965239fb6e16f296a3318add1eb2d2dddcafa7ab664591882'
+sha256sums=('c903bdab6b0279aa4b3d1735e423f0fec30c8ed931a111eb268f162d9ddade18'
'SKIP'
'SKIP'
'SKIP')
-sha256sums_x86_64=('c8b9b40e505661fa101225f2a6a0e1620503895ca2a5d9d1a629c76e362c91e5')
-sha256sums_aarch64=('7c280760cca65f1d798c14d42442a85865664566c37a18d06f1373401f3b37f5')
+sha256sums_x86_64=('4485d584ee4ac88137c525c557d03dd1413586fd51b89d9757244e94cb7c464a')
+sha256sums_aarch64=('5daaf9007b3067d453b943706d698b2aba8247f042589369078f324d57d71c50')
package() {
# Find the extracted qodercli binary and install

Scan history

Scanned at (UTC)SeverityRules
2026-09-17 00:27:14 Low 2
2026-09-16 21:23:45 Medium 1
2026-09-16 00:03:17 Medium 2
2026-09-15 21:20:38 Medium 2
2026-09-15 00:25:31 Low 2
2026-09-14 21:18:01 Medium 1
2026-09-14 00:27:57 Low 2
2026-09-13 00:19:54 Low 2
2026-09-12 21:12:39 Medium 1
2026-09-12 00:25:17 Low 2
2026-09-11 21:24:02 Medium 1
2026-09-11 00:19:22 Medium 2
2026-09-10 21:21:21 Medium 2
2026-09-10 00:22:44 Medium 2
2026-09-09 21:20:09 Medium 2
2026-09-09 00:04:09 Low 2
2026-09-08 21:18:22 Medium 1
2026-09-08 00:18:08 Medium 2
2026-09-07 21:15:20 Medium 2
2026-09-07 00:30:15 Medium 2

Report a package

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

0 / 4000
Your suggestion