shell-script-development

Installation
SKILL.md

Shell Script Development

Create shell scripts following consistent conventions.

Template

#!/usr/bin/env bash

set -e -o pipefail

# Colors
green='\033[0;32m'
red='\033[0;31m'
yellow='\033[1;33m'
blue='\033[0;34m'
nc='\033[0m'

# Script logic here
Installs
6
GitHub Stars
21
First Seen
Apr 28, 2026
shell-script-development — dwmkerr/claude-toolkit