What problem does it solve?
Shell scripts, Dockerfiles, Makefiles, and command snippets often drift into inconsistent styles—inline comments, over-clever one-liners, and fragile quoting—that make them hard to review and maintain. This Skill keeps every script and command example readable, directly executable, and easy to audit.
Core Features & Use Cases
- Comment conventions: Enforces standalone comment lines that explain intent, boundaries, and risk instead of trailing comments that restate the obvious.
- Heredoc guidance: Promotes clear heredocs with quoted delimiters like
<<'EOF' for literal multi-line content instead of nested escaping.
- Safe file writes with tee: Recommends
tee and sudo tee over error-prone patterns like sudo echo > file, with explicit distinction between overwrite and append.
- Use Case: When asking an AI to modify a deployment shell script or add a Dockerfile, the Skill ensures the output uses clean heredocs, standalone comments, and reviewable step-by-step commands.
Quick Start
Ask the AI to write or modify a shell script, Dockerfile, or Makefile following the cc-bash-style conventions for comments, heredocs, and tee-based file writes.