
vercel-labs/bash-tool
2 skills254 installs1.2k starsGitHub
Install
npx skills add https://github.com/vercel-labs/bash-toolSkills in this repo
1CsvAnalyze and transform CSV data using bash tools. Process CSV files using standard bash tools (awk, cut, sort, grep). The csv skill documents workflows, constraints, and examples from SKILL.md for agent-assisted execution.196installs2TextThe text skill processes text files using standard bash tools through four bundled scripts: stats.sh for line, word, and character counts; search.sh for pattern search with optional count and context flags; extract.sh for line ranges or section extraction between start and end patterns; and wordfreq.sh for ranked word frequency analysis. Each script is invoked via bash with documented arguments, enabling agents to gather file statistics, grep-like searches with context, targeted line extraction, and top-N word frequency reports without writing custom one-off commands. Examples show searching logs for ERROR with two lines of context, extracting lines 10 through 20, and listing the ten most frequent words in an article. The skill assumes text files on disk and relies on shell execution rather than language-specific parsers. It suits quick document inspection, log triage, and lightweight text analytics inside agent workflows where reproducible script entry points are preferred over ad hoc awk or sed one-liners. No network access or external services are required.58installs