agentsclimarketplace

Generator

Skill pantheon-org/tekhne/skills/development/scripting/bash-script/generator

Creates bash scripts with argument parsing, error handling, logging, and input validation following current standards. Use when creating new bash or shell scripts, .sh files, CLI tools, scripting automation, text processing workflows (grep/awk/sed pipelines), or building production-ready command-line utilities. Trigger phrases include 'write a bash script', 'create a shell script', 'generate a .sh file', 'bash command', 'scripting', or 'automate with bash'.From its SKILL.md

Install
npx -y skills add pantheon-org/tekhne --skill generator

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 9 stars9 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

11.0 KB, ~2.7k tokens by cl100k_base, as published. Nobody here has run it

Bash Script Generator

Overview

This skill generates production-ready bash scripts with best practices built-in: strict mode, error handling, logging, argument parsing, input validation, and cleanup traps. Use for system administration, text processing, API clients, automation workflows, and scheduled tasks.

Pre-Generation Checklist (REQUIRED)

Before writing any script, complete these steps:

  1. Clarify ambiguities — ask if any of the following are unclear:

    • Input data format (nginx log, JSON, CSV, custom?)
    • Large file handling (>100MB)?
    • Error handling preference (fail fast / continue / retry)?
    • Security context (sensitive data, elevated privileges)?
    • Portability needs (bash-specific vs POSIX sh)?
    • Output format (human-readable, JSON, CSV)?
  2. Explain your approach — before writing code, briefly describe:

    • Script architecture and main functions
    • Tool selections (grep/awk/sed) with rationale from references/text-processing-guide.md
    • Key design decisions and customization points
  3. Use the template for standard scripts (CLI tools, automation scripts):

    bash scripts/generate_script_template.sh standard output-script.sh
    

    Then customize for your specific use case.

Generation Workflow

Stage 1 – Understand Requirements

Determine: purpose, input/output sources, bash vs POSIX sh, argument needs, error handling strategy, performance constraints, security requirements. Use AskUserQuestion for anything unclear.

Stage 2 – Architecture Planning

  • Select functions, config management, logging strategy, error handling approach
  • Tool selection: grep (pattern matching/filtering), awk (structured data, calculations), sed (substitutions, stream editing), find (filesystem), curl/wget (HTTP)
  • Plan set -euo pipefail, error functions, and trap cleanup

Stage 3 – Script Structure

#!/usr/bin/env bash
#
# Script Name: script-name.sh
# Description: Brief description
# Created: YYYY-MM-DD
#

set -euo pipefail
IFS=$'\n\t'

readonly SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
readonly SCRIPT_NAME="$(basename "${BASH_SOURCE[0]}")"

cleanup() {
    local exit_code=$?
    # Remove temp files, release locks, etc.
    exit "${exit_code}"
}
trap cleanup EXIT ERR INT TERM

Stage 4 – Core Functions

Full implementations are in assets/templates/standard-template.sh. Key signatures to include:

Logging (one line per level):

log_info()  { echo "[INFO]  $(date '+%Y-%m-%d %H:%M:%S') - $*" >&2; }
log_warn()  { echo "[WARN]  $(date '+%Y-%m-%d %H:%M:%S') - $*" >&2; }
log_error() { echo "[ERROR] $(date '+%Y-%m-%d %H:%M:%S') - $*" >&2; }
log_fatal() { echo "[FATAL] $(date '+%Y-%m-%d %H:%M:%S') - $*" >&2; exit 1; }
# Add log_debug with LOG_LEVEL guard from template when DEBUG support is needed

Error handling:

die()           { log_error "$@"; exit 1; }
check_command() { command -v "$1" &>/dev/null || die "Required command '$1' not found."; }
validate_file() { [[ -f "$1" ]] || die "File not found: $1"; [[ -r "$1" ]] || die "File not readable: $1"; }

Argument parsing (getopts):

usage() {
    cat << EOF
Usage: ${SCRIPT_NAME} [OPTIONS] [ARGUMENTS]

Options:
    -h          Show this help and exit
    -v          Enable verbose output
    -f FILE     Input file path
    -o FILE     Output file path
    -d          Enable debug logging

Examples:
    ${SCRIPT_NAME} -f input.txt -o output.txt
EOF
}

parse_args() {
    while getopts ":hvf:o:d" opt; do
        case ${opt} in
            h) usage; exit 0 ;;
            v) VERBOSE=true ;;
            f) INPUT_FILE="${OPTARG}" ;;
            o) OUTPUT_FILE="${OPTARG}" ;;
            d) LOG_LEVEL="DEBUG" ;;
            \?) echo "Invalid option: -${OPTARG}" >&2; usage; exit 1 ;;
            :)  echo "Option -${OPTARG} requires an argument" >&2; usage; exit 1 ;;
        esac
    done
    shift $((OPTIND - 1))
}

Stage 5 – Business Logic

  • Text processing: use references/text-processing-guide.md for grep/awk/sed selection
  • System administration: include prerequisite validation, backup, rollback, progress indicators
  • API clients: include HTTP error handling, retry logic, authentication, response parsing

Stage 6 – Main Function

main() {
    parse_args "$@"  # From Stage 4
    check_command "grep"
    check_command "awk"
    [[ -n "${INPUT_FILE:-}" ]] || die "Input file not specified. Use -f option."
    validate_file "${INPUT_FILE}"
    log_info "Starting processing..."  # From Stage 4
    # Main logic here
    log_info "Processing completed successfully"
}

main "$@"

Stage 7 – Documentation

#######################################
# Brief description of function
# Globals:
#   VARIABLE_NAME
# Arguments:
#   $1 - Description
# Outputs:
#   Writes results to stdout
# Returns:
#   0 if successful, non-zero on error
#######################################

Stage 8 – Validate

After generating any script, invoke devops-skills:bash-script-validator:

  1. Generate the script
  2. Run validator; review syntax, ShellCheck, security, performance results
  3. Fix issues and re-validate until all checks pass
  4. Provide Post-Generation Summary (see below)

Key Best Practices

Security:

  • Always quote variables: "${var}" not $var
  • Validate inputs: [[ "${val}" =~ ^[a-zA-Z0-9/_.-]+$ ]] || die "Invalid"
  • Never eval user input; use case statements instead

Performance:

  • Avoid useless cat: grep pattern file not cat file | grep pattern
  • Single-pass awk: awk '/ERROR/{e++} /WARN/{w++} END{print e,w}' log

Maintainability:

  • Functions follow single responsibility
  • Use readonly for constants
  • Meaningful variable names; comments for complex logic

Portability (POSIX sh):

  • Avoid bash arrays, [[ ]], $BASH_SOURCE; test with sh -n script.sh

Common Script Patterns

See references/script-patterns.md for full templates including text processing and parallel batch processing. Quick reference for simple CLI tools:

Pattern 1 – Simple CLI tool:

#!/usr/bin/env bash
set -euo pipefail

# For production scripts, use the full logging and argument parsing
# functions from Stage 4 above. This minimal example demonstrates structure:

usage() { cat << EOF
Usage: ${0##*/} [OPTIONS] FILE
    -h  Show help
    -v  Verbose
    -o  Output file
EOF
}

main() {
    local verbose=false output_file="" input_file=""
    while getopts ":hvo:" opt; do
        case ${opt} in
            h) usage; exit 0 ;; v) verbose=true ;; o) output_file="${OPTARG}" ;;
            *) echo "Invalid option: -${OPTARG}" >&2; usage; exit 1 ;;
        esac
    done
    shift $((OPTIND - 1))
    input_file="${1:-}"
    [[ -n "${input_file}" ]] || { echo "Error: FILE required" >&2; usage; exit 1; }
    [[ -f "${input_file}" ]] || { echo "Error: File not found: ${input_file}" >&2; exit 1; }
    if [[ -n "${output_file}" ]]; then
        process_file "${input_file}" > "${output_file}"
    else
        process_file "${input_file}"
    fi
}

process_file() { local file="$1"; cat "${file}"; }
main "$@"

For text processing (grep/awk/sed pipelines) and parallel batch processing patterns, see references/script-patterns.md.

Post-Generation Summary (REQUIRED)

After every script, provide:

## Generated Script Summary

**File:** path/to/script.sh

**Architecture:** [main functions and purposes]

**Tool Selection:**
- grep: [why used]
- awk: [why used]
- sed: [why used / not needed]

**Key Features:** [list]

**Customization Points:** [variables/functions to modify]

**Usage:**
  ./script.sh --help
  ./script.sh -v input.log

**Validation Status:** ✅ Passed ShellCheck / ❌ Issues found (fixing...)

**Documentation References:**
- references/text-processing-guide.md (tool selection)
- references/script-patterns.md (argument parsing)

Anti-Patterns

NEVER start a bash script without set -euo pipefail

  • WHY: Without these flags, errors are silently ignored: -e causes exit on error, -u errors on unset variables, -o pipefail catches pipeline failures.
  • BAD: #!/usr/bin/env bash with no error flags and silent failures.
  • GOOD: #!/usr/bin/env bash followed immediately by set -euo pipefail as the first two lines of every script.

NEVER use unquoted variable expansions in command arguments

  • WHY: Word splitting and glob expansion on unquoted $VAR cause subtle bugs when values contain spaces or special characters.
  • BAD: cp $SOURCE $DEST
  • GOOD: cp "$SOURCE" "$DEST"

NEVER use ls | grep to filter files

  • WHY: ls output is not reliably parseable; it is locale-dependent and breaks on filenames with special characters.
  • BAD: ls *.log | grep error
  • GOOD: for f in *.log; do grep error "$f"; done or find . -name "*.log" -exec grep error {} +

NEVER hardcode absolute paths for tools like python, node, or bash

  • WHY: Paths differ across operating systems and distributions, making scripts non-portable.
  • BAD: #!/usr/bin/python3 or /usr/local/bin/node script.js
  • GOOD: Use #!/usr/bin/env python3, rely on PATH for node script.js, or guard with command -v python3 || { echo "python3 required"; exit 1; }.

NEVER use eval to execute dynamically constructed commands

  • WHY: eval enables code injection when any part of the command comes from user input or external data.
  • BAD: eval "rm -rf $USER_INPUT"
  • GOOD: Use arrays for command construction: cmd=(rm -rf "$USER_INPUT"); "${cmd[@]}"

References

Internal references (offline, load as context):

  • references/bash-scripting-guide.md — strict mode, functions, arrays, parameter expansion
  • references/script-patterns.md — argument parsing, logging, retry logic, lock files, parallel processing
  • references/text-processing-guide.md — grep/awk/sed selection, pipelines, large-file optimization
  • references/generation-best-practices.md — naming, documentation, testing, security, portability
  • assets/templates/standard-template.sh — production-ready template with all components
  • examples/log-analyzer.sh — grep/awk/sed usage demonstration
  • scripts/generate_script_template.sh — template generator tool

Official documentation:


All generated scripts are automatically validated using devops-skills:bash-script-validator to ensure correct syntax, ShellCheck compliance, security, and performance.

What ships with it: 12 files

64.5 KB alongside SKILL.md, 3 of them executable

scripts/

Gives 0 of the 12 instructions most automation workflows skills give in ~2.7k tokens

Counted across 745 of the 1,008 authors here whose files we hold, read 2026-08-07

  • Write conventional commit messagesin 36 of 745, across 35 files
  • Delete branches after mergein 30 of 745, across 21 files
  • Make atomic commitsin 25 of 745, across 15 files
  • Write minimal code to pass testsin 22 of 745, across 10 files
  • Re-snapshot after navigation or DOM changesin 21 of 745, across 13 files
  • Use try-catch for error handlingin 20 of 745, across 8 files
  • Run tests before committingin 20 of 745, across 12 files
  • Write tests before implementationin 20 of 745, across 8 files
  • Configure branch protection rulesin 19 of 745, across 5 files
  • Explain the why in commit messagesin 19 of 745, across 9 files
  • Refactor code while tests remain greenin 19 of 745, across 6 files
  • Interact with elements using refsin 19 of 745, across 11 files

Said here and by no other author read

  • explain the chosen approach before writing
  • use the standard template for new scripts
  • start every script with strict mode
  • include cleanup traps in scripts
  • include logging and error handling functions
  • document functions with standard headers

Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.

Keep looking

Skills are one crate of 326,750. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.