npx skills add ...
npx skills add vercel-labs/bash-tool --skill text
npx skills add vercel-labs/bash-tool --skill text
Analyze and transform text files using bash tools
Process text files using standard bash tools (grep, sed, awk, wc).
Get statistics about a text file (lines, words, characters).
Search for patterns in text files.
Extract specific lines or sections from a file.
Count word frequencies in a text file.
bash /skills/text/scripts/wordfreq.sh document.txt [--top <n>]# Get file statistics
bash /skills/text/scripts/stats.sh readme.txt
# Search with context
bash /skills/text/scripts/search.sh log.txt "ERROR" --context 2
# Extract lines 10-20
bash /skills/text/scripts/extract.sh file.txt --lines 10-20
# Top 10 most frequent words
bash /skills/text/scripts/wordfreq.sh article.txt --top 10