Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
akin-ozer avatar

Bash Script Validator

  • 407 installs
  • 286 repo stars
  • Updated July 26, 2026
  • akin-ozer/cc-devops-skills

bash-script-validator is an agent skill that validates bash scripts for syntax errors, common pitfalls, and unsafe patterns for developers who need shell automation to pass review before merge or deployment.

About

bash-script-validator is an agent skill from akin-ozer/cc-devops-skills that reviews bash shell scripts before they merge or deploy. The skill checks syntax validity, flags common bash pitfalls such as unquoted variables and fragile command substitutions, and surfaces unsafe patterns that cause production failures in CI/CD or server automation. Developers reach for bash-script-validator when shell scripts power deploy hooks, cron jobs, or pipeline steps and need an early review gate without running every script on a live host. It fits the ship-phase review step so shell automation fails in pull request review instead of during a production deployment.

  • Catch bash syntax errors before runtime
  • Flag unsafe or non-portable shell patterns
  • Improve reliability of deploy scripts
  • Speed up shell code review
  • Reduce production automation surprises

Bash Script Validator by the numbers

  • 407 all-time installs (skills.sh)
  • Ranked #136 of 550 CLI & Terminal skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/akin-ozer/cc-devops-skills --skill bash-script-validator

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs407
repo stars286
Last updatedJuly 26, 2026
Repositoryakin-ozer/cc-devops-skills

How do you validate bash scripts before deployment?

Validate bash scripts for syntax, common pitfalls, and unsafe patterns before merge or deployment so shell automation fails early in review.

Who is it for?

DevOps engineers and backend developers who maintain bash deploy scripts, hooks, or CI shell steps and want pre-merge validation.

Skip if: Teams that have fully migrated pipelines to Python, Go, or Makefile tasks with no bash automation to review.

When should I use this skill?

A bash script is added or changed in a deploy hook, cron job, or CI step and needs syntax and safety review before merge.

What you get

Validation report listing syntax errors, pitfall warnings, and unsafe pattern findings

  • validation report
  • pitfall warnings

Files

SKILL.mdMarkdownGitHub ↗

Bash Script Validator

Overview

This skill validates Bash and POSIX shell scripts with layered checks:

1. Syntax validation (bash -n or sh -n) 2. ShellCheck static analysis (system binary or wrapper fallback) 3. Custom security, portability, and optimization checks

Use the default flow below, then branch to fallbacks only when the environment is constrained.

Trigger Guidance

Use this skill when the request includes script quality, linting, syntax checking, or shell portability work.

Trigger Phrases

  • "Validate this bash script"
  • "Lint this .sh file"
  • "Find security issues in this shell script"
  • "Why does this script fail ShellCheck?"
  • "Make this script POSIX compliant"
  • "Review this shell script before CI"

Non-Trigger Examples

  • General Linux command questions with no script file
  • Kubernetes, Terraform, or pipeline validation tasks that do not involve shell scripts
  • Pure prose editing tasks

Deterministic Execution Model

Run commands from this skill directory:

cd devops-skills-plugin/skills/bash-script-validator

Step 1: Preflight

1. Confirm target path exists and is readable. 2. Confirm bash is available. 3. Determine whether fixes can be applied directly (write access) or only suggested (read-only).

Step 2: Run Baseline Validation (Default Path)

bash scripts/validate.sh <script-path>

For deterministic stage behavior, set the ShellCheck provider explicitly:

# Modes: auto (default), system, wrapper, disabled
VALIDATOR_SHELLCHECK_MODE=system bash scripts/validate.sh <script-path>

Record:

  • Detected shell type
  • Exit code (0 clean, 1 warnings, 2 errors)
  • All reported issue lines and ShellCheck codes (SC####) when present

Step 3: Load Only Needed References

Progressive disclosure by issue type:

  • ShellCheck code explanations: docs/shellcheck-reference.md
  • General fix patterns and security mistakes: docs/common-mistakes.md
  • Bash-only behavior: docs/bash-reference.md
  • POSIX portability or bashism fixes: docs/shell-reference.md
  • Text-processing optimization issues: docs/grep-reference.md, docs/awk-reference.md, docs/sed-reference.md, docs/regex-reference.md (only when directly relevant)

Step 4: Provide or Apply Fixes

For each issue, include:

1. Exact location from validator output (line number and snippet) 2. Root cause 3. Corrected code 4. Why the change is safer or more portable 5. Subsection-level citation (format below)

If the request includes patching files and write access is available, apply fixes in small batches grouped by issue type.

Step 5: Rerun Policy (Mandatory After Changes)

After each batch of edits, rerun the validator:

bash scripts/validate.sh <script-path>

Rerun loop rules:

1. Continue until no new errors are introduced. 2. If warnings remain by design, document why they are intentionally accepted. 3. If constraints prevent full resolution, report unresolved items with a clear next action. 4. Always report the latest rerun exit code and remaining issue count.

Fallback Behavior

Use these branches only when the default flow cannot run as-is.

ConstraintFallback actionReporting requirement
shellcheck missing, wrapper availableLet scripts/validate.sh use scripts/shellcheck_wrapper.sh --cache automaticallyState that wrapper mode was used
shellcheck and wrapper unavailableRun syntax + custom checks only (validator does this)Explicitly call out reduced coverage and missing ShellCheck analysis
Python unavailable for wrapperSkip wrapper path, keep syntax + custom checksState why ShellCheck could not run
Target file is read-onlyProvide precise patch suggestions without editingMark response as "advisory only"
Target file missing or unreadableStop and request a valid file pathDo not fabricate results
Binary/non-text inputStop validationReport unsupported input type

Citation Guidance for Fixes

Use subsection-level citations for every non-trivial fix.

Required citation format:

Reference: docs/<file>.md -> <Section> -> <Subsection>

Examples:

  • Reference: docs/common-mistakes.md -> 1. Unquoted Variables -> Solution
  • Reference: docs/shellcheck-reference.md -> SC2164: Use || exit After cd
  • Reference: docs/shell-reference.md -> POSIX Best Practices -> 5. Avoid Bashisms

Citation rules:

1. Cite the most specific section that justifies the fix. 2. For ShellCheck findings, include both the SC#### code and the matching section. 3. If no exact subsection exists, cite the closest section and state that the fix is inferred from that guidance.

Response Template

Use this structure for deterministic output:

  • Validation Results
  • Command: bash scripts/validate.sh <script-path>
  • Detected shell: <shell>
  • Exit code: <code>
  • Summary: <errors> errors, <warnings> warnings, <info> info
  • Issue: <short label> (Line <n>)
  • Problem:
  <problematic snippet>
  • Fix:
  <corrected snippet>
  • Why: <short explanation>
  • Reference: docs/<file>.md -> <Section> -> <Subsection>
  • Rerun command: bash scripts/validate.sh <script-path>
  • Exit code after fixes: <code>
  • Remaining issues: <count or none>

Example Flows

Fully Automated Environment

# 1) Baseline validation
bash scripts/validate.sh examples/bad-bash.sh

# 2) Apply fixes to target script
# 3) Rerun validation
bash scripts/validate.sh examples/bad-bash.sh

Expected behavior: full syntax + ShellCheck + custom-check coverage, with iterative reruns until stable.

Deterministic CI Gate

# Requires a system shellcheck binary.
bash scripts/run_ci_checks.sh

This runner enforces VALIDATOR_REQUIRE_SHELLCHECK=1 and VALIDATOR_SHELLCHECK_MODE=system so CI fails if the ShellCheck stage is skipped or unavailable.

Constrained Environment (No ShellCheck Runtime)

# shellcheck unavailable and wrapper cannot run
bash scripts/validate.sh examples/bad-shell.sh

Expected behavior: syntax + custom checks still run. Report reduced coverage and list what must be revalidated once ShellCheck is available.

Validator Script Details

Scripts

  • scripts/validate.sh: primary validator entrypoint
  • scripts/shellcheck_wrapper.sh: optional ShellCheck fallback using a cached Python virtual environment

Detection and Ordering

Validation order in scripts/validate.sh:

1. File checks (exists/readable/text) 2. Shebang-based shell detection 3. Syntax check 4. ShellCheck (or fallback/skip behavior) 5. Custom checks 6. Summary with exit code

Exit Codes

  • 0: no issues found
  • 1: warnings found
  • 2: errors found

References

Load only what is needed:

  • docs/bash-reference.md
  • docs/shell-reference.md
  • docs/shellcheck-reference.md
  • docs/common-mistakes.md
  • docs/grep-reference.md
  • docs/awk-reference.md
  • docs/sed-reference.md
  • docs/regex-reference.md

Done Criteria

This skill update is complete when all are true:

1. Trigger guidance is explicit (positive and non-trigger examples). 2. Default workflow is deterministic and ordered. 3. Fallback behavior is explicit for missing tooling and constrained environments. 4. Fix explanations include subsection-level citations. 5. Post-fix rerun policy is mandatory and reported with exit codes. 6. Documentation supports both fully automated and constrained execution paths.

Related skills

How it compares

Use bash-script-validator for quick bash review gates rather than full infrastructure-as-code or container security audit skills.

FAQ

What does bash-script-validator check?

bash-script-validator reviews bash scripts for syntax errors, common pitfalls like unquoted variables, and unsafe patterns in deploy hooks or CI steps, producing a validation report before merge or deployment.

When should I run bash-script-validator?

Run bash-script-validator during ship-phase review when bash deploy scripts, cron jobs, or CI shell steps change, so syntax and safety issues surface in the pull request instead of production.

CLI & Terminaldevopstesting

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.