ワンクリックで
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 職業分類に基づく
| 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.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.