mallcop is a single Go binary. Install it, then schedule
mallcop scan yourself (e.g. cron) for continuous monitoring.
Findings land in a git repo you control.
Just the binary. No Go or Python needed
Downloads the prebuilt binary for your platform, verifies its checksum, and puts it on your PATH.
curl -fsSL https://mallcop.app/install.sh | sh
/usr/local/bin or ~/.local/bin, no sudo neededmallcop init to scaffold a store and print your first scan commandgo install github.com/mallcop-app/mallcop/cmd/mallcop@latestNo Go toolchain required
Download a prebuilt per-platform binary from GitHub Releases, unpack it, and put it on your PATH.
# Pick the tar.gz for your OS/arch from: https://github.com/mallcop-app/mallcop/releases
mallcop init to write your configThere is no daemon to babysit. Continuous monitoring is mallcop scan on a schedule you set, for example a cron entry that scans your GitHub org every few hours:
mallcop init # creates ./store and a sample events.jsonl # crontab -e, e.g. every 6 hours: 0 */6 * * * cd /path/to/deployment && mallcop scan --connector github --github-org YOUR_ORG --store store