Agent skill

cli-productivity-common-issues

Sub-skill of cli-productivity: Common Issues.

Stars 4
Forks 4

Install this agent skill to your Project

npx add-skill https://github.com/vamseeachanta/workspace-hub/tree/main/.claude/skills/_archive/operations/devtools/cli-productivity/common-issues

SKILL.md

Common Issues

Common Issues

fzf not finding files:

bash
# Check FZF_DEFAULT_COMMAND
echo $FZF_DEFAULT_COMMAND

# Test fd directly
fd --type f

# Check for hidden files
fd -H

Colors not working:

bash
# Check terminal capabilities
echo $TERM

# Force color output
export CLICOLOR_FORCE=1

Slow shell startup:

bash
# Profile startup time
time bash -i -c exit

# Identify slow sources
for f in ~/.bashrc ~/.bash_profile; do
    echo "--- $f ---"
    time source "$f"
done

zoxide not working:

bash
# Check initialization
type z

# Rebuild database
zoxide import --from=z

Expand your agent's capabilities with these related and highly-rated skills.

Didn't find tool you were looking for?

Be as detailed as possible for better results