qodercli-bin
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
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)
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# Maintainer: Huipeng <cheng.huipeng@outlook.com>
pkgname=qodercli-bin
pkgver=1.1.54
pkgrel=1
pkgdesc="Qoder Agentic CLI - Advanced AI coding agent from Alibaba"
arch=('x86_64' 'aarch64')
url="https://qoder.com/cli"
license=('LicenseRef-Qoder-Product-Service')
options=('!strip' '!debug')
provides=('qoderclibin')
conflicts=('qoder-cli')
# Common sources (LICENSE and shell completions)
source=(
"LICENSE"
"qodercli.bash"
"qodercli.zsh"
"qodercli.fish"
)
# Binary tarballs from manifest
# 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.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.54_linux_arm64.tar.gz::https://qoder-ide.oss-accelerate.aliyuncs.com/qodercli/releases/1.1.54/qodercli-linux-arm64.tar.gz"
)
sha256sums=('c903bdab6b0279aa4b3d1735e423f0fec30c8ed931a111eb268f162d9ddade18'
'SKIP'
'SKIP'
'SKIP')
sha256sums_x86_64=('4485d584ee4ac88137c525c557d03dd1413586fd51b89d9757244e94cb7c464a')
sha256sums_aarch64=('5daaf9007b3067d453b943706d698b2aba8247f042589369078f324d57d71c50')
package() {
# Find the extracted qodercli binary and install
local bin
bin="$(find "$srcdir" -type f -name qodercli -print -quit)"
install -Dm755 "$bin" "$pkgdir/usr/bin/qodercli"
# Install the LICENSE we downloaded
install -Dm644 "$srcdir/LICENSE" \
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
# Install shell completions
install -Dm644 "$srcdir/qodercli.bash" \
"$pkgdir/usr/share/bash-completion/completions/qodercli"
install -Dm644 "$srcdir/qodercli.zsh" \
"$pkgdir/usr/share/zsh/site-functions/_qodercli"
install -Dm644 "$srcdir/qodercli.fish" \
"$pkgdir/usr/share/fish/vendor_completions.d/qodercli.fish"
}
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 installScan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 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 |