
vercel-labs/bash-tool
2 skills194 installs1.2k starsGitHub
Install
npx skills add https://github.com/vercel-labs/bash-toolSkills in this repo
1Csvcsv is a small bash-tool skill bundling shell recipes to analyze structure, filter rows by column value, and select column subsets from CSV files. Solo builders and agents use it when a dataset path is known and you need fast answers—how many rows, what headers exist, sample rows, or a filtered slice—without spinning up Python or a notebook. Each script documents usage and exits with clear errors when files or arguments are missing. It fits CLI-heavy agent workflows on macOS or Linux environments where executing permitted shell is acceptable. Beginner-friendly if you already trust CSV parsing limitations of simple awk comma splitting.147installs2TextThe text skill from vercel-labs bash-tool is a compact pair of bash scripts—extract and search—that help solo builders and their agents slice files instead of loading entire trees into context. extract.sh supports numeric line ranges or delimiter patterns; search.sh wraps grep with match counts and contextual lines. It is phase-specific in primary placement but genuinely useful whenever an agent is reading logs, configs, or large sources during Build, Ship review, or Operate incident triage. There is no application framework coupling: only bash, sed, and grep. Ideal when you want predictable CLI behavior the agent can call with documented flags rather than improvising one-off shell. Not a replacement for ripgrep-heavy IDE search or structured AST tools. Complexity is beginner-level shell; deliverables are stdout snippets and match statistics for downstream reasoning.47installs