agent-session-status
LOW
maintainer dcaixinha
0 votes
scanned 2026-08-22 11:17:02.700618
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: Daniel Caixinha <2683004+dcaixinha@users.noreply.github.com>
2
pkgname=agent-session-status
3
pkgver=0.1.0
4
pkgrel=1
5
pkgdesc='Show coding-agent session status in desktop status bars'
6
arch=('x86_64')
7
url='https://github.com/dcaixinha/agent-session-status'
8
license=('MIT' 'CC0-1.0')
9
depends=('glibc' 'libgcc')
10
makedepends=('cargo')
11
options=('!debug')
12
optdepends=(
13
'waybar: Waybar status bar integration'
14
'ironbar: Ironbar status bar integration'
15
'otf-font-awesome: default status glyphs'
16
'libnotify: desktop idle notifications'
17
'pipewire-audio: idle sound playback through pw-play'
18
'libpulse: fallback idle sound playback through paplay'
19
'hyprland: workspace association through hyprctl'
20
'opencode: local OpenCode session events'
21
'claude-code: local Claude Code session events'
22
'openai-codex-bin: local Codex session events'
23
)
24
source=("$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/v$pkgver.tar.gz")
25
sha256sums=('b055a92257747575214869b533cbf2d96fcdb3fc996d6bc59d93600282c045ea')
26
27
prepare() {
28
cd "$pkgname-$pkgver"
29
export RUSTUP_TOOLCHAIN=stable
30
cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
31
}
32
33
build() {
34
cd "$pkgname-$pkgver"
35
export RUSTUP_TOOLCHAIN=stable
36
export CARGO_TARGET_DIR=target
37
cargo build --frozen --release --all-features
38
}
39
40
check() {
41
cd "$pkgname-$pkgver"
42
export RUSTUP_TOOLCHAIN=stable
43
export CARGO_TARGET_DIR=target
44
cargo test --frozen --all-features
45
}
46
47
package() {
48
cd "$pkgname-$pkgver"
49
50
install -Dm0755 target/release/agent-session-status \
51
"$pkgdir/usr/bin/agent-session-status"
52
53
install -Dm0644 -t "$pkgdir/usr/share/$pkgname/" \
54
assets/opencode-logo-light-square.svg \
55
assets/opencode-logo-dark-square.svg \
56
assets/agent-complete.wav \
57
assets/LICENSE.OpenCode
58
59
install -Dm0644 integrations/opencode/agent-session-status.ts \
60
"$pkgdir/usr/share/$pkgname/integrations/opencode/agent-session-status.ts"
61
install -Dm0644 integrations/claude/settings.json \
62
"$pkgdir/usr/share/$pkgname/integrations/claude/settings.json"
63
install -Dm0644 integrations/codex/hooks.json \
64
"$pkgdir/usr/share/$pkgname/integrations/codex/hooks.json"
65
66
install -Dm0644 -t "$pkgdir/usr/share/doc/$pkgname/examples/" examples/*
67
install -Dm0644 -t "$pkgdir/usr/share/doc/$pkgname/" \
68
CHANGELOG.md \
69
README.md \
70
THIRD_PARTY_NOTICES.md
71
install -Dm0644 assets/README.md \
72
"$pkgdir/usr/share/doc/$pkgname/ASSETS.md"
73
74
install -Dm0644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
75
install -Dm0644 assets/LICENSE.OpenCode \
76
"$pkgdir/usr/share/licenses/$pkgname/LICENSE.OpenCode"
77
}
78
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-22 11:17:02 | Low | 1 |