techaiscriptbash
星标2
分支13
更新时间2026年3月10日 13:31
Create or modify Bash scripts with purpose header, emoji logs, and readable guard-clause flow.
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Create or modify Bash scripts with purpose header, emoji logs, and readable guard-clause flow.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Produce concise, complete pull request descriptions aligned with the repository PR template.
Repository-specific topology, naming patterns, and validation guidance for working in the oneidentity repository.
Create or modify secure GitHub Actions workflows for CI/CD pipelines.
Create or modify governance policies for AWS SCP, Azure Policy, and GCP Org Policy.
Create or modify reusable GitHub composite actions with secure Bash and deterministic behavior.
Safely update structured JSON/YAML registry files (users, groups, teams, repositories, or policy maps).
| name | TechAIScriptBash |
| description | Create or modify Bash scripts with purpose header, emoji logs, and readable guard-clause flow. |
#!/usr/bin/env bash), never POSIX sh.#!/usr/bin/env bash
#
# Purpose: {description}
# Usage examples:
# ./{script_name}.sh --help
set -euo pipefail
log_info() { echo "ℹ️ $*"; }
log_warn() { echo "⚠️ $*"; }
log_success() { echo "✅ $*"; }
log_error() { echo "❌ $*" >&2; }
bash -nshellcheck -s bash (if available)