Two Dev Tools Claude Code skills, side by side. Pick the right skill for your workflow with a side-by-side look at metadata, sample code, and install commands.
| Name | build-bash-script | completion-script-generator |
|---|---|---|
| Description | Scaffolds a standalone Bash 4.0+ script — a single-file CLI tool, glue automation, or ops utility — with explicit shebang, `set -euo pipefail`, header comment, `readonly` constants, `die` helper, `local` variables,… | Generates shell completion scripts for CLI tools. Parses command structure from help output, commander/yargs configs, or manual specification. Produces completions for bash, zsh, and fish that follow each shell's… |
| Category | Dev Tools | Dev Tools |
| Sub-category | dev-shells | scaffolders |
| Tags | lang:python type:generator type:integration | type:generator |
| Author | bcbeidel | curiositech |
| License | MIT | — |
| Install | /add-skill build-bash-script | /add-skill completion-script-generator |
#!/usr/bin/env bash
#
# <progname> — <one-line purpose>
#
# Usage:
# <progname> [options] <args>
#
# Dependencies: <comma-separated list of external CLI tools>
#
# Exit codes:
# 0 success
# 1 general failure
# 64 usage error
# 69 missing required dependency
…
# Extract commands and options from commander program
grep -rn '\.command(' src/cli.ts | while read -r line; do
cmd=$(echo "$line" | grep -oP "\.command\(['\"]([^'\"]+)" | sed "s/.*['\"]//")
echo "COMMAND: $cmd"
done
grep -rn '\.option(' src/cli.ts | while read -r line; do
flag=$(echo "$line" | grep -oP "\.option\(['\"]([^'\"]+)" | sed "s/.*['\"]//")
desc=$(echo "$line" | grep -oP "'[^']*'\s*\)" | head -1)
echo "OPTION: $flag -- $desc"
done
build-bash-script — Scaffolds a standalone Bash 4.0+ script — a single-file CLI tool, glue automation, or ops utility — with explicit shebang, `set -euo pipefail`, header comment, `readonly` constants, `die` helper, `local` variables,…
completion-script-generator — Generates shell completion scripts for CLI tools. Parses command structure from help output, commander/yargs configs, or manual specification. Produces completions for bash, zsh, and fish that follow each shell's…
Both are free to install. If you're unsure, install both — Claude Code skills are isolated by filename and only collide if their trigger phrases overlap (rare). The richest signal is the SKILL.md body itself — open both skill pages and read the first paragraph of each.
See all Claude Code skill comparisons · Browse all Dev Tools skills · Top 100
SKILL.md files, not affiliated with, endorsed by, or sponsored by Anthropic.