SlopScore
00 crowd

ltop (github.com/girving/ltop)

Minimal process monitor similar to top
Rust · ★ 4 · 0 forks · BSD-2-Clause · paperwork by the Cap'mmostly ai (inferred)light human (inferred)works-on-my-machine (inferred)other
listed 2 hours ago by girving · last checked 2 hours ago
The owner didn't write this. This repo never submitted itself. The Cap'm found it on a truffle trawl and wrote its paperwork from what GitHub already shows. Picked by hand by the Cap'm on 2026-09-11: ltop, a minimal tree-style process monitor in Rust with per-process GPU usage, whose README says "All code was written by Claude Opus 4.6 through 4.8". 4 stars; BSD-2-Clause license. The owner did not submit this. Votes count; awards don't until the owner claims it.

I'm not calling your project slop! Geeze, it's a joke... Do you own this repo?

Log in with GitHub as girving. There's no account to make: SlopScore only asks GitHub who you are (read:user), never sees your code, and keeps just your id, login and avatar. Then you can:

  • Keep it, on your terms. Commit your own slopscore.md (spec) and press Refresh. Your paperwork replaces the Cap'm's, and you can submit it for Slop of the Day.
  • Take it down. One click on Remove. It stays gone; the trawl never brings it back.

Log in with GitHub

Can't log in as the owner? Request a takedown. No login needed, and a trawled listing comes down right away.

GitHub says
Minimal process monitor similar to top
created
2026-06-21 · pushed 4 days ago · 45 commits · 1 contributor
languages
Rust 99%Shell 1%C 0%Linker Script 0%
paperwork
licensereadme 42% health
dependencies
no dependency graph (no manifest, or disabled) · OSV.dev, checked 2 hours ago

Disclosures, inferred by the Cap'm

slopbucket
vibe-coded
category
other
ai_generated
mostly
human_touch
light
status
works-on-my-machine
language (detected)
clinker-scriptrustshell
license (detected)
bsd-2-clause

The Cap'm's log

The Cap'm wrote this paperwork, not the owner. This repo never submitted itself to SlopScore. The Cap'm picked it by hand: ltop, a minimal tree-style process monitor in Rust with per-process GPU usage, whose README says "All code was written by Claude Opus 4.6 through 4.8". It carries the BSD-2-Clause license. The disclosures above are his best guess from what GitHub shows.

Is this yours? Commit a real slopscore.md and press Refresh to replace this, or remove the listing in one click. There's no account to make: you log in with GitHub.

README (read the rest on GitHub)

ltop 🌳

linux-x86 linux-arm mac-arm

Minimal process monitor (top replacement) in Rust. Designed for monitoring builds (Lean/Lake, C++, etc.), GPU experiments, and similar workloads. Screenshot:

ltop screenshot

Features:

  • Tree-structured process display
  • Per-process GPU usage column (NVIDIA on Linux, AGX on macOS) with no cover library linked — raw /dev/nvidiactl ioctls and raw IOKit MIG
  • CPU and memory threshold filtering
  • Interpreter-aware: shows script names for python, ruby, node, etc.
  • Color-coded by CPU (blue) and memory (red) pressure
  • Works on Linux and macOS

Footprint

The shipped builds run libc-free static (Linux) or single-LC_LOAD_DYLIB to libSystem only (mac); GPU monitoring is built in without dragging the cover library into the link.

Target Binary Startup RSS Stable RSS
Linux x86_64 ≤ 23.7 KB ~44 KB ~44 KB
Linux aarch64 ≤ 22.0 KB ~44 KB ~44 KB
macOS arm64 † ≤ 32.6 KB ~944 KB ≤ 224 KB

† macOS phys_footprint peaks transiently at ~944 KB during dyld init while libSystem subdylibs load and libmalloc reserves zone arenas; mac_sys::unmap_idle_state reclaims that state at the top of main before the first tick fires, dropping to the 224 KB steady-state. Of those 224 KB, ~160 KB is per-process page-table backing the dyld shared cache, which mach_vm_deallocate can't actually clear (kernel ignores deallocation of shared submap entries — see CLAUDE.md "mach_vm_deallocate is a placebo on dyld-shared-cache submap entries").

Linux has no equivalent transient peak: the libc-free static build goes from kernel exec straight to _start to main with no library init in between. The custom _start (src/start.rs) madvise-sweeps the kernel-set argv/env stack pages within microseconds of process bring-up, and the steady-state ~44 KB is reached effectively at t=0.

Binary size is asserted by tests/footprint.rs per-platform (CI materialises the binary via cargo ltop -- --check before running cargo test --release). RSS is host-dependent (page size, kernel version, dyld shared cache layout) so the table values are documentary rather than test-asserted; intentional changes to either column should update README + the test threshold in the same commit.

The smallness is bought with unsafe: we use #![no_std] with a custom _start, kernel calls are raw svc/syscall instructions, formatting bypasses core::fmt, GPU and IOKit traffic is hand-encoded MIG over hand-rolled Mach traps, and all working memory lives in one 512 KB bump arena instead of the heap (the global allocator aborts). That is a great deal of unsafe atop kernel ABIs — raw syscall wrappers, pointer-bumping arena internals, manual VM reclaim. The arena's space-time profile for one macOS tick (peak 53 KB live of the 512 KB reservation) looks like:

macOS arena allocation trace — one tick, 53 KB peak

Possibly there are bugs! All code was written by Claude Opus 4.6 through 4.8, so the fun question is whether Fable will find any bugs once it comes back online. Seems like roughly a coin flip.

Install

cargo ltop --install

Builds the minimal libc-free static binary (the one the footprint table above documents) and copies it onto $PATH (the cargo install root — ~/.cargo/bin by default). The same command works on every supported host — Linux x86_64/aarch64 and macOS aarch64 — picking the right target spec under the hood. rustup handles the toolchain: rust-toolchain.toml pins nightly + rust-src and rustup auto-installs them on first build.

Plain cargo install --path . can't produce this binary: the minimal pipeline needs -Z build-std plus a custom per-arch target spec, and the only ways to make cargo install pick those up are workspace-global (they'd break cargo test). It still works, but yields a regular release build (host libc, no static pipeline), so the footprint numbers won't match. Prefer cargo ltop --install for the shipped binary.

Usage

ltop          # interactive
ltop --once   # one frame and exit

Press q (or Ctrl-C) to quit.

To build-and-run straight from the repo without installing, use the cargo ltop alias (same minimal pipeline):

cargo ltop                 # build + run
cargo ltop -- --once       # pass args after --
Scan report · 2026-09-11
  • Prohibited terms or links
  • Repository eligibility
  • slopscore.md paperwork
  • Content policy
  • Risk review

0 comments

log in to comment.

report this listinglog in to report