agenttool
maintainer aditya_an1l
· 0 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The package builds from a source tarball hosted on the project's own GitHub repository, which is normal for AUR packages; the only concerns are the skipped checksum and low votes, but it installs only its own declared Python dependencies and a local script, with no remote code execution or obfuscation.
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 90%): The package builds from a source tarball hosted on the project's own GitHub repository, which is normal for AUR packages; the only concerns are the skipped checksum and low votes, but it installs only its own declared Python dependencies and a local script, with no remote code execution or obfuscation.
PKGBUILD
1
# Maintainer: Aditya Anil <aditya.anil.productions@gmail.com>
2
pkgname=agenttool
3
pkgver=0.2.0
4
pkgrel=1
5
pkgdesc="Terminal-based agentic coding assistant powered by local LLMs"
6
arch=('any')
7
url="https://github.com/aditya-an1l/AgentTool"
8
license=('Apache-2.0')
9
depends=(
10
'python>=3.10'
11
'python-openai'
12
'python-ddgs'
13
'python-rich'
14
'python-prompt_toolkit'
15
'python-requests'
16
)
17
makedepends=(
18
'python-build'
19
'python-installer'
20
'python-setuptools'
21
'python-wheel'
22
)
23
source=("${url}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz")
24
sha256sums=('SKIP')
25
26
build() {
27
cd "${srcdir}/${pkgname}-${pkgver}"
28
python -m build --wheel --no-isolation
29
}
30
31
package() {
32
cd "${srcdir}/${pkgname}-${pkgver}"
33
34
# Install the wheel
35
python -m installer --destdir="${pkgdir}" dist/*.whl
36
37
# Install agent.py as agenttool
38
install -Dm755 agent.py "${pkgdir}/usr/bin/agenttool"
39
40
# Install license
41
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
42
}
43
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-03 00:08:14 | LOW | 2 |
| 2026-08-02 00:16:08 | LOW | 2 |
| 2026-08-01 00:11:18 | LOW | 2 |
| 2026-07-31 00:14:10 | LOW | 2 |
| 2026-07-30 00:17:23 | LOW | 2 |
| 2026-07-29 00:25:53 | LOW | 2 |
| 2026-07-28 00:07:28 | LOW | 2 |
| 2026-07-27 00:24:32 | LOW | 2 |
| 2026-07-26 00:07:32 | LOW | 2 |
| 2026-07-25 00:13:44 | LOW | 2 |
| 2026-07-24 00:02:28 | LOW | 2 |
| 2026-07-23 00:14:47 | LOW | 2 |
| 2026-07-22 00:29:32 | LOW | 2 |
| 2026-07-21 15:17:04 | LOW | 2 |