원클릭으로
writing-bash-scripts
Bash script style guide. Always use when writing bash scripts, shell scripts, or CLI bash tools.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Bash script style guide. Always use when writing bash scripts, shell scripts, or CLI bash tools.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Test-driven development (TDD) process used when writing code. Use whenever you are adding any new code, unless the programmmer explicitly asks to skip TDD or the code is exploratory/spike.
Standardized process for creating meaningful git commits using Arlo's notation
Visualizes tasks as a Discovery Tree using Mermaid diagrams. Use when planning or tracking multi-step work with parent and child task relationships.
Refactoring process. Invoke immediately when programmer or document mentions refactoring, or proactively when code gets too complex or messy.
Writes tests without mocks using Nullables. Use when writing tests, especially testing code with external I/O (HTTP, files, databases, clocks, random numbers), designing infrastructure wrappers or replacing mocking libraries.
| name | writing-bash-scripts |
| description | Bash script style guide. Always use when writing bash scripts, shell scripts, or CLI bash tools. |
#!/usr/bin/env bash as shebangset -euo pipefail for safetychmod +x <script>