Loading...
Loading...
Manage `chronic` wrapper for suppressing noisy command output in shell commands. Use this skill proactively whenever: (1) Running shell commands that produce verbose output on success (builds, linters, formatters, tests, migrations, deploys), (2) A command wrapped in chronic is hiding output you or the user actually need to see, (3) Reviewing or writing Justfiles, Makefiles, CI scripts, or shell scripts that invoke build/check/lint/test commands. Chronic runs a command silently on success but shows full output on failure.
npx skill4agent add maximaster/skills chronicchronicmoreutilschronic# NixOS / nix
nix-shell -p moreutils --run "chronic ..."
# or add moreutils to system/devshell packages
# Debian/Ubuntu
apt install moreutils
# macOS
brew install moreutilsflake.nixdevbox.jsondevenv.nixmoreutilschronic# Before — noisy on every run
check:
eslint src/
tsc --noEmit
# After — silent on success, verbose on failure
check:
chronic eslint src/
chronic tsc --noEmit# Justfile
check:
chronic cargo clippy --all-targets
chronic cargo fmt -- --checkchronic npm install
chronic terraform plan -detailed-exitcodechroniccargo clippyjust checkchronic -vchronic -e