ワンクリックで
bash-scripting
Bash scripting workflow for creating production-ready shell scripts with defensive patterns, error handling, and testing.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Bash scripting workflow for creating production-ready shell scripts with defensive patterns, error handling, and testing.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Master defensive Bash programming techniques for production-grade scripts. Use when writing robust shell scripts, CI/CD pipelines, or system utilities requiring fault tolerance and safety.
Bash/Linux terminal patterns. Critical commands, piping, error handling, scripting. Use when working on macOS or Linux systems.
Master of defensive Bash scripting for production automation, CI/CD pipelines, and system utilities. Expert in safe, portable, and testable shell scripts.
Bash scripting workflow for creating production-ready shell scripts with defensive patterns, error handling, and testing.
Workflow mestre para gestão de documentação do SetupVibe. Use ao criar, revisar, traduzir ou sincronizar Markdown, READMEs, CHANGELOG e documentação de steps em Claude Code.
Workflow completo para investigar, corrigir e fechar issues do repositório promovaweb/setupvibe. Lê a issue no GitHub, cria a branch fix/issue-N, identifica a causa raiz nos scripts, aplica as correções, faz commit e push, e pode postar um comentário na issue com o comando de teste apontando para a branch.
| name | bash-scripting |
| description | Bash scripting workflow for creating production-ready shell scripts with defensive patterns, error handling, and testing. |
Specialized workflow for creating robust, production-ready bash scripts with defensive programming patterns, comprehensive error handling, and automated testing.
This is the Codex version of the skill.
rg for discovery and exec_command for shell validation.apply_patch for manual script edits.update_plan for multi-step script work..claude/skills/bash-scripting.Use this workflow when:
bash-pro - Professional scriptingbash-defensive-patterns - Defensive patternsUse the `bash-pro` skill to design a production-ready Bash script.
bash-pro - Script structurebash-defensive-patterns - Safety patternsUse the `bash-defensive-patterns` skill to implement strict mode and error handling.
bash-linux - Linux commandslinux-shell-scripting - Shell scriptingUse the `bash-linux` skill to implement system commands.
bash-defensive-patterns - Error handlingerror-handling-patterns - Error patternsUse the `bash-defensive-patterns` skill to add comprehensive error handling.
bash-pro - Logging patternsUse the `bash-pro` skill to implement structured logging.
bats-testing-patterns - Bats testingshellcheck-configuration - ShellCheckUse the relevant test skill or local test pattern to write script tests.
Use ShellCheck directly when available to lint Bash scripts.
documentation-templates - DocumentationUse the `documentation` skill to document Bash scripts.
#!/usr/bin/env bash
set -euo pipefail
readonly SCRIPT_NAME=$(basename "$0")
readonly SCRIPT_DIR=$(cd "$(dirname "$0")" && pwd)
log() { echo "[$(date '+%Y-%m-%d %H:%M:%S')] $*"; }
error() { log "ERROR: $*" >&2; exit 1; }
usage() { cat <<EOF
Usage: $SCRIPT_NAME [OPTIONS]
Options:
-h, --help Show help
-v, --verbose Verbose output
EOF
}
main() {
log "Script started"
# Implementation
log "Script completed"
}
main "$@"
os-scripting - OS scriptinglinux-troubleshooting - Linux troubleshootingcloud-devops - DevOps automationAo criar ou modificar qualquer arquivo .md, você DEVE invocar a skill /markdown-format antes de concluir a tarefa. As regras de formatação estão em MARKDOWN.md. Esta regra é inegociável e se aplica a qualquer skill, independente do seu escopo.