원클릭으로
bash-style
Use when creating or editing Bash, shell, or zsh scripts, including `.sh`, `.bash`, `.zsh`, shell hooks, and CLI helper scripts.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use when creating or editing Bash, shell, or zsh scripts, including `.sh`, `.bash`, `.zsh`, shell hooks, and CLI helper scripts.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use when improving Codex steering, token/context cost, hooks, skills, plugins, MCPs, or dotty-managed config.
Generic Godspeed list and label discovery, inbox triage, and API-backed task organization for a mirrored GTD setup with work and personal folders. Use when Codex needs to inspect Godspeed lists, summarize inbox or active tasks, or apply explicit task updates through the Godspeed API without tracking personal taxonomy in the repo.
Use when TypeScript or TSX work needs guidance on API shape, function signatures, exported contracts, strict typing, lint-safe escape hatches, or lightweight off-the-shelf library choices for JS/TS tools.
Use when diagnosing terminal or TUI rendering problems: ANSI color/theme mismatches, truecolor vs xterm-256 vs terminal-palette behavior, Markdown/code renderer differences, pager output, tmux or fzf preview wrapping, or CLI UI screenshots that look different from expected.
Use when writing a new README from scratch, creating, auditing, or updating README/repo landing pages, setup docs, CLI docs, contributor notes, AGENTS/repo steering docs, or docs drift checks.
Use when React or frontend work needs guidance on cleanup and simplification, component boundaries, hooks, context, rendering, testing, or modern React defaults.
| name | bash-style |
| description | Use when creating or editing Bash, shell, or zsh scripts, including `.sh`, `.bash`, `.zsh`, shell hooks, and CLI helper scripts. |
Use this skill for shell scripts and shell-based helper tools. Prefer the local project style when it is already clear, and apply these defaults when the surrounding code does not establish something stronger.
#!/usr/bin/env bash for executable scripts so macOS can pick up Homebrew Bash when available.sh only when portability to minimal shells is a real requirement.set -euo pipefail.return, continue, or exit paths to avoid deeply nested conditionals.# ====, # ----, or # --- name ---. Use a plain comment with surrounding blank lines when a section marker helps._resolve_chain is better than _resolve plus a comment explaining what it resolves._, such as _link_item.cmd_, such as cmd_install or cmd_status, when a script dispatches subcommands.local by default inside functions.SCREAMING_SNAKE_CASE for constants and script-level globals.readonly when they should not change."${var}" unless a shell pattern or word-splitting behavior is intentionally required."${var:-default}" for simple defaults.$(...) for command substitution, not backticks.[[ ... ]] over [ ... ] in Bash scripts.printf over echo for formatted output, escape-sensitive text, and anything that may start with -.die helper for repeated fatal errors instead of scattering inline printf ... >&2 plus exit 1.sed, date, stat, and readlink when the script is expected to run on both macOS and Linux.