A tool for developing safe, testable, and portable Bash scripts.

Install

mkdir -p .claude/skills/bash-pro && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/4452" && unzip -o skill.zip -d .claude/skills/bash-pro && rm skill.zip

Installs to .claude/skills/bash-pro

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

Master of defensive Bash scripting for production automation, CI/CD
67 charsno explicit “when” trigger
Intermediate

Key capabilities

  • Enforces strict mode (set -Eeuo pipefail)
  • Implements safe argument parsing via getopts
  • Provides templates for idempotent script design
  • Integrates ShellCheck and Bats for validation
  • Replaces unsafe globbing with array-based iteration

How it works

Applies a predefined template of safety patterns, linting rules, and error-handling traps to ensure script execution fails early and predictably.

Inputs & outputs

You give it
Raw script logic or untrusted input sources
You get back
Validated, testable, and hardened shell script

When to use bash-pro

  • Develop CI/CD pipeline scripts
  • Harden production automation scripts
  • Write system utilities
  • Audit shell scripts for security

About this skill

Use this skill when

  • Writing or reviewing Bash scripts for automation, CI/CD, or ops
  • Hardening shell scripts for safety and portability

Do not use this skill when

  • You need POSIX-only shell without Bash features
  • The task requires a higher-level language for complex logic
  • You need Windows-native scripting (PowerShell)

Instructions

  1. Define script inputs, outputs, and failure modes.
  2. Apply strict mode and safe argument parsing.
  3. Implement core logic with defensive patterns.
  4. Add tests and linting with Bats and ShellCheck.

Safety

  • Treat input as untrusted; avoid eval and unsafe globbing.
  • Prefer dry-run modes before destructive actions.

Focus Areas

  • Defensive programming with strict error handling
  • POSIX compliance and cross-platform portability
  • Safe argument parsing and input validation
  • Robust file operations and temporary resource management
  • Process orchestration and pipeline safety
  • Production-grade logging and error reporting
  • Comprehensive testing with Bats framework
  • Static analysis with ShellCheck and formatting with shfmt
  • Modern Bash 5.x features and best practices
  • CI/CD integration and automation workflows

Approach

  • Always use strict mode with set -Eeuo pipefail and proper error trapping
  • Quote all variable expansions to prevent word splitting and globbing issues
  • Prefer arrays and proper iteration over unsafe patterns like for f in $(ls)
  • Use [[ ]] for Bash conditionals, fall back to [ ] for POSIX compliance
  • Implement comprehensive argument parsing with getopts and usage functions
  • Create temporary files and directories safely with mktemp and cleanup traps
  • Prefer printf over echo for predictable output formatting
  • Use command substitution $() instead of backticks for readability
  • Implement structured logging with timestamps and configurable verbosity
  • Design scripts to be idempotent and support dry-run modes
  • Use shopt -s inherit_errexit for better error propagation in Bash 4.4+
  • Employ IFS=$'\n\t' to prevent unwanted word splitting on spaces
  • Validate inputs with : "${VAR:?message}" for required environment variables
  • End option parsing with -- and use rm -rf -- "$dir" for safe operations
  • Support --trace mode with set -x opt-in for detailed debugging
  • Use xargs -0 with NUL boundaries for safe subprocess orchestration
  • Employ readarray/mapfile for safe array population from command output
  • Implement robust script directory detection: SCRIPT_DIR="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd -P)"
  • Use NUL-safe patterns: find -print0 | while IFS= read -r -d '' file; do ...; done

Compatibility & Portability

  • Use #!/usr/bin/env bash shebang for portability across systems
  • Check Bash version at script start: (( BASH_VERSINFO[0] >= 4 && BASH_VERSINFO[1] >= 4 )) for Bash 4.4+ features
  • Validate required external commands exist: command -v jq &>/dev/null || exit 1
  • Detect platform differences: case "$(uname -s)" in Linux*) ... ;; Darwin*) ... ;; esac
  • Handle GNU vs BSD tool differences (e.g., sed -i vs sed -i '')
  • Test scripts on all target platforms (Linux, macOS, BSD variants)
  • Document minimum version requirements in script header comments
  • Provide fallback implementations for platform-specific features
  • Use built-in Bash features over external commands when possible for portability
  • Avoid bashisms when POSIX compliance is required, document when using Bash-specific features

Readability & Maintainability

  • Use long-form options in scripts for clarity: --verbose instead of -v
  • Employ consistent naming: snake_case for functions/variables, UPPER_CASE for constants
  • Add section headers with comment blocks to organize related functions
  • Keep functions under 50 lines; refactor larger functions into smaller components
  • Group related functions together with descriptive section headers
  • Use descriptive function names that explain purpose: validate_input_file not check_file
  • Add inline comments for non-obvious logic, avoid stating the obvious
  • Maintain consistent indentation (2 or 4 spaces, never tabs mixed with spaces)
  • Place opening braces on same line for consistency: function_name() {
  • Use blank lines to separate logical blocks within functions
  • Document function parameters and return values in header comments
  • Extract magic numbers and strings to named constants at top of script

Safety & Security Patterns

  • Declare constants with readonly to prevent accidental modification
  • Use local keyword for all function variables to avoid polluting global scope
  • Implement timeout for external commands: timeout 30s curl ... prevents hangs
  • Validate file permissions before operations: [[ -r "$file" ]] || exit 1
  • Use process substitution <(command) instead of temporary files when possible
  • Sanitize user input before using in commands or file operations
  • Validate numeric input with pattern matching: [[ $num =~ ^[0-9]+$ ]]
  • Never use eval on user input; use arrays for dynamic command construction
  • Set restrictive umask for sensitive operations: (umask 077; touch "$secure_file")
  • Log security-relevant operations (authentication, privilege changes, file access)
  • Use -- to separate options from arguments: rm -rf -- "$user_input"
  • Validate environment variables before using: : "${REQUIRED_VAR:?not set}"
  • Check exit codes of all security-critical operations explicitly
  • Use trap to ensure cleanup happens even on abnormal exit

Performance Optimization

  • Avoid subshells in loops; use while read instead of for i in $(cat file)
  • Use Bash built-ins over external commands: [[ ]] instead of test, ${var//pattern/replacement} instead of sed
  • Batch operations instead of repeated single operations (e.g., one sed with multiple expressions)
  • Use mapfile/readarray for efficient array population from command output
  • Avoid repeated command substitutions; store result in variable once
  • Use arithmetic expansion $(( )) instead of expr for calculations
  • Prefer printf over echo for formatted output (faster and more reliable)
  • Use associative arrays for lookups instead of repeated grepping
  • Process files line-by-line for large files instead of loading entire file into memory
  • Use xargs -P for parallel processing when operations are independent

Documentation Standards

  • Implement --help and -h flags showing usage, options, and examples
  • Provide --version flag displaying script version and copyright information
  • Include usage examples in help output for common use cases
  • Document all command-line options with descriptions of their purpose
  • List required vs optional arguments clearly in usage message
  • Document exit codes: 0 for success, 1 for general errors, specific codes for specific failures
  • Include prerequisites section listing required commands and versions
  • Add header comment block with script purpose, author, and modification date
  • Document environment variables the script uses or requires
  • Provide troubleshooting section in help for common issues
  • Generate documentation with shdoc from special comment formats
  • Create man pages using shellman for system integration
  • Include architecture diagrams using Mermaid or GraphViz for complex scripts

Modern Bash Features (5.x)

  • Bash 5.0: Associative array improvements, ${var@U} uppercase conversion, ${var@L} lowercase
  • Bash 5.1: Enhanced ${parameter@operator} transformations, compat shopt options for compatibility
  • Bash 5.2: varredir_close option, improved exec error handling, EPOCHREALTIME microsecond precision
  • Check version before using modern features: [[ ${BASH_VERSINFO[0]} -ge 5 && ${BASH_VERSINFO[1]} -ge 2 ]]
  • Use ${parameter@Q} for shell-quoted output (Bash 4.4+)
  • Use ${parameter@E} for escape sequence expansion (Bash 4.4+)
  • Use ${parameter@P} for prompt expansion (Bash 4.4+)
  • Use ${parameter@A} for assignment format (Bash 4.4+)
  • Employ wait -n to wait for any background job (Bash 4.3+)
  • Use mapfile -d delim for custom delimiters (Bash 4.4+)

CI/CD Integration

  • GitHub Actions: Use shellcheck-problem-matchers for inline annotations
  • Pre-commit hooks: Configure .pre-commit-config.yaml with shellcheck, shfmt, checkbashisms
  • Matrix testing: Test across Bash 4.4, 5.0, 5.1, 5.2 on Linux and macOS
  • Container testing: Use official bash:5.2 Docker images for reproducible tests
  • CodeQL: Enable shell script scanning for security vulnerabilities
  • Actionlint: Validate GitHub Actions workflow files that use shell scripts
  • Automated releases: Tag versions and generate changelogs automatically
  • Coverage reporting: Track test coverage and fail on regressions
  • Example workflow: shellcheck *.sh && shfmt -d *.sh && bats test/

Security Scanning & Hardening

  • SAST: Integrate Semgrep with custom rules for shell-specific vulnerabilities
  • Secrets detection: Use gitleaks or trufflehog to prevent credential leaks
  • Supply chain: Verify checksums of sourced external scripts
  • Sandboxing: Run untrusted scripts in containers with restricted privileges
  • SBOM: Document dependencies and external tools for compliance
  • Security linting: Use ShellCheck with security-focused rules enabled
  • Privilege analysis: Audit scripts for unnecessary root/sudo requirements
  • Input sanitization: Validate all external inputs against allowlists
  • Audit logging: Log all security-relevant operations to syslog
  • Container security: Scan script execution environments for vulnerabilities

Observability & Logging

  • Structured logging: Output JSON for log aggregation systems
  • Log levels: Implement DEBUG, INFO, WARN, ERROR with configurable verbosity
  • Syslog integration: Use logger command for system log integration
  • Distributed tracing: Add trace IDs for multi-script workflow correlat

Content truncated.

When not to use it

  • Scripts requiring non-Bash POSIX compliance only
  • Complex data processing tasks better suited for Python/Go

Prerequisites

Bash 5.xshellcheckbats

Limitations

  • Cannot guarantee runtime logic correctness
  • Increases script verbosity due to mandatory error handling
  • Requires familiarization with advanced Bash 5.x features

How it compares

It transforms standard shell scripting from error-prone execution into a formalized development workflow incorporating automated testing and static analysis.

Compared to similar skills

bash-pro side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
bash-pro (this skill)14moReviewIntermediate
turborepo612moReviewIntermediate
bazel-build-optimization142moNo flagsAdvanced
ml-pipeline-workflow94moNo flagsAdvanced

Try saying

Example prompts that trigger this skill in your AI assistant.

mobile-design

sickn33

Mobile-first design and engineering doctrine for iOS and Android apps. Covers touch interaction, performance, platform conventions, offline behavior, and mobile-specific decision-making. Teaches principles and constraints, not fixed layouts. Use for React Native, Flutter, or native mobile apps.

149231

unity-developer

sickn33

Build Unity games with optimized C# scripts, efficient rendering, and proper asset management. Masters Unity 6 LTS, URP/HDRP pipelines, and cross-platform deployment. Handles gameplay systems, UI implementation, and platform optimization. Use PROACTIVELY for Unity performance issues, game mechanics, or cross-platform builds.

142357

architect-review

sickn33

Master software architect specializing in modern architecture patterns, clean architecture, microservices, event-driven systems, and DDD. Reviews system designs and code changes for architectural integrity, scalability, and maintainability. Use PROACTIVELY for architectural decisions.

109320

angular

sickn33

Modern Angular (v20+) expert with deep knowledge of Signals, Standalone Components, Zoneless applications, SSR/Hydration, and reactive patterns. Use PROACTIVELY for Angular development, component architecture, state management, performance optimization, and migration to modern patterns.

100129

frontend-slides

sickn33

Create stunning, animation-rich HTML presentations from scratch or by converting PowerPoint files. Use when the user wants to build a presentation, convert a PPT/PPTX to web, or create slides for a talk/pitch. Helps non-designers discover their aesthetic through visual exploration rather than abstract choices.

95195

minecraft-bukkit-pro

sickn33

Master Minecraft server plugin development with Bukkit, Spigot, and Paper APIs. Specializes in event-driven architecture, command systems, world manipulation, player management, and performance optimization. Use PROACTIVELY for plugin architecture, gameplay mechanics, server-side features, or cross-version compatibility.

9078

You might also like

turborepo

vercel

Turborepo monorepo build system guidance. Triggers on: turbo.json, task pipelines, dependsOn, caching, remote cache, the "turbo" CLI, --filter, --affected, CI optimization, environment variables, internal packages, monorepo structure/best practices, and boundaries. Use when user: configures tasks/workflows/pipelines, creates packages, sets up monorepo, shares code between apps, runs changed/affected packages, debugs cache, or has apps/packages directories.

61191

bazel-build-optimization

wshobson

Optimize Bazel builds for large-scale monorepos. Use when configuring Bazel, implementing remote execution, or optimizing build performance for enterprise codebases.

14116

ml-pipeline-workflow

wshobson

Build end-to-end MLOps pipelines from data preparation through model training, validation, and production deployment. Use when creating ML pipelines, implementing MLOps practices, or automating model training and deployment workflows.

995

linkerd-patterns

wshobson

Implement Linkerd service mesh patterns for lightweight, security-focused service mesh deployments. Use when setting up Linkerd, configuring traffic policies, or implementing zero-trust networking with minimal overhead.

672

deployment-pipeline-design

wshobson

Design multi-stage CI/CD pipelines with approval gates, security checks, and deployment orchestration. Use when architecting deployment workflows, setting up continuous delivery, or implementing GitOps practices.

670

glab

NikiforovAll

Expert guidance for using the GitLab CLI (glab) to manage GitLab issues, merge requests, CI/CD pipelines, repositories, and other GitLab operations from the command line. Use this skill when the user needs to interact with GitLab resources or perform GitLab workflows.

664

Search skills

Search the agent skills registry