kickers: SDLC workflow automators
March 25, 2026 ยท View on GitHub

SUMMARY
kickers provides a framework for per-repository, per-user scripts.
EXAMPLE
% kick
Everything up-to-date
DOWNLOAD
Per-Repository Scripts
-
Copy a
.kickersscripts directory to your local repository.% git clone https://github.com/mcandre/kickers.git ~/src/github.com/mcandre/kickers % cp -r ~/src/github.com/mcandre/kickers/.kickers <your-repository> -
Register the
.kickersdirectory with direnv..envrc:
DIR="$(dirname "\$1")" PATH_add "${DIR}/.kickers" -
Allowlist direnv.
direnv allow
Per-User Scripts
-
Copy a
.kickersscripts directory to your home directory.% git clone https://github.com/mcandre/kickers.git ~/src/github.com/mcandre/kickers % cp -r ~/src/github.com/mcandre/kickers/.kickers ~ -
Register the
.kickersdirectory with direnv..envrc:
PATH_add "${HOME}/.kickers" -
Allowlist direnv.
direnv allow
PREREQUISITES
Recommended
- bash 4+
For details on building from source, see DEVELOPMENT.
๐