MR
Mayur Rathi
@mayurrathi
⭐ 40.7k GitHub stars

Bash Pro

Bash Pro is an productivity AI skill with a core value of |. It helps developers solve real-world problems in the productivity domain, boosting efficiency, automating repetitive tasks, and optimizing workflows.

|

Last verified on: 2026-07-07

Quick Facts

Category productivity
Works With Claude
Source sickn33/antigravity-awesome-skills
Stars ⭐ 40.7k
Last Verified 2026-07-07
Risk Level Medium
mkdir -p ./skills/bash-pro && curl -sfL https://raw.githubusercontent.com/sickn33/antigravity-awesome-skills/main/skills/bash-pro/SKILL.md -o ./skills/bash-pro/SKILL.md

Run in terminal / PowerShell. Requires curl (Unix) or PowerShell 5+ (Windows).

Skill Content

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 `

🎯 Best For

  • Claude users
  • Knowledge workers
  • Remote teams
  • Professionals

💡 Use Cases

  • Using Bash Pro in daily workflow
  • Automating repetitive productivity tasks

📖 How to Use This Skill

  1. 1

    Install the Skill

    Copy the install command from the Terminal tab and run it. The SKILL.md file downloads to your local skills directory.

  2. 2

    Load into Your AI Assistant

    Open Claude and reference the skill. Paste the SKILL.md content or use the system prompt tab.

  3. 3

    Apply Bash Pro to Your Work

    Provide context for your task — paste source material, describe your audience, or share existing work to guide the AI.

  4. 4

    Review and Refine

    Edit the AI output for accuracy, tone, and completeness. Add human insight where the AI lacks context.

❓ Frequently Asked Questions

How do I install Bash Pro?

Copy the install command from the Terminal tab and run it. The skill downloads to ./skills/bash-pro/SKILL.md, ready to use.

Can I customize this skill for my team?

Absolutely. Edit the SKILL.md file to add team-specific instructions, examples, or workflows.

⚠️ Common Mistakes to Avoid

Not reading the full skill

Skills contain important context and edge cases beyond the quick start.

🔗 Related Skills