ragpilot
LOW
maintainer alikaya
0 votes
scanned 2026-09-14 09:16:46.306722
Why flagged
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
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.
PKGBUILD
1
# Maintainer: Ali Kaya <alikayaa@gmail.com>
2
pkgname=ragpilot
3
pkgver=0.9.0
4
pkgrel=1
5
pkgdesc="Token-efficient, local-first code intelligence layer for AI coding agents over MCP"
6
arch=('x86_64')
7
url="https://github.com/alikaya/ragpilot"
8
license=('MIT')
9
depends=('glibc' 'libgcc' 'libstdc++' 'openssl')
10
makedepends=('cargo')
11
# makepkg's default LTO compiles ring's C sources to GCC LTO bitcode, which
12
# rust-lld cannot link: the ort-sys build script fails with undefined
13
# ring_core_* symbols.
14
options=('!lto' '!debug')
15
optdepends=('qdrant: vector database the index is stored in (or run qdrant in Docker)'
16
'claude-code: compiler engine for the second brain')
17
source=("$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/v$pkgver.tar.gz")
18
# Filled in by `updpkgsums` once the v$pkgver tag is on GitHub.
19
sha256sums=('d51f636e570bca3be924d95e9a3fda9819214e417f297424087a1b156c7aca67')
20
21
prepare() {
22
cd "$pkgname-$pkgver"
23
export RUSTUP_TOOLCHAIN=stable
24
cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"
25
}
26
27
build() {
28
cd "$pkgname-$pkgver"
29
export RUSTUP_TOOLCHAIN=stable
30
export CARGO_TARGET_DIR=target
31
# The fastembed/ort build script downloads the ONNX Runtime it links
32
# statically, so this step needs network access even with --frozen.
33
cargo build --frozen --release
34
}
35
36
package() {
37
cd "$pkgname-$pkgver"
38
install -Dm755 "target/release/$pkgname" "$pkgdir/usr/bin/$pkgname"
39
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
40
install -Dm644 README.md "$pkgdir/usr/share/doc/$pkgname/README.md"
41
}
42
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-14 09:16:46 | Low | 1 |