@mikedemarais.eth
i set up this alias last week for a simple CLI tool for counting the number of tokens in a given file or given directory, its been quite useful
step 1: sudo uv pip install token-count --system
step 2: Add these aliases to your shell startup file (~/.zshrc, ~/.bashrc, etc.):
# Token-count aliases
alias tc='token-count' # file or dir, auto-detects
alias tcd='token-count -d' # force “directory” mode
alias tcf='token-count -f' # force “file” mode