← スキル一覧に戻る

review-shell-scripts
by powdream
Claude Code plugins to boost your development workflow
⭐ 0🍴 0📅 2026年1月21日
SKILL.md
name: review-shell-scripts description: Review all shell scripts against the Bash Script Convention. Use when you need to check script compliance or before committing changes.
Review Shell Scripts
Review all shell scripts in the repository against the Bash Script Convention.
Instructions
Step 1: Find All Shell Scripts
Use find to locate all .sh files:
find . -name "*.sh" -type f
Step 2: Run Shellcheck
For each script found, spawn a sub-agent to:
- Run
shellcheck <script-path> - Fix any issues found
- Repeat shellcheck until no issues remain
Step 3: Convention Review
Spawn sub-agents in parallel (2-3 scripts per agent) for convention review.
Follow the exact sub-agent prompt structure defined in AGENTS.md under "Bash Script Review >> 2. Spawn a sub-agent". Fix any violations found.
Step 4: Library Script Exceptions
Library scripts (like utils.sh) have different rules:
- No strict mode (
set -euo pipefail) required - No
main()function required
Step 5: Report Results
Report the final results summarizing:
- Number of scripts reviewed
- Issues found and fixed
- Any remaining issues that need manual attention
Notes
- Reference: AGENTS.md "Bash Script Review" section
- The convention document (
doc/bash-script-convention.md) takes precedence over the checklist above
スコア
総合スコア
60/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です