スキル一覧に戻る
kecbigmt

preparing-review

by kecbigmt

Claude Code plugin for Story-driven Development

0🍴 0📅 2026年1月24日
GitHubで見るManusで実行

SKILL.md


name: preparing-review description: Commit, push, create PR. Use after verification passes and ready to share work for team review.

Preparing for Code Review

Pre-Commit Checklist

Before Commit:
- [ ] Developer verification complete
- [ ] All tests pass
- [ ] Linting passes
- [ ] Story log updated

Commit Granularity

CRITICAL: One intent per commit. Split by "why" not "what".

❌ FORBIDDEN:

git add .  # Groups unrelated changes
git commit -m "add feature X and refactor Y"

✅ REQUIRED:

git add src/feature.ts tests/feature.test.ts
git commit -m "feat: enable feature X"

git add src/utils.ts
git commit -m "refactor: extract common logic"

Commit Message

CRITICAL: Explain WHY, not WHAT (diff shows what)

Format: <type>(<scope>): <summary> + body

Types: feat, fix, refactor, test, docs, chore

Good:

feat(sync): enable GitHub backup for notes

Users need version control. Initializes repo for that.

Bad (avoid):

feat(sync): add git init
^^ Only what, not why it matters

Guidelines:

  • Title: what + value (imperative, ≤50 chars)
  • Body: problem solved, context, user benefit
  • Never restate code changes

Push

git push -u origin <branch>  # first time
git push                      # subsequent

Create PR

Use pr-template skill for PR structure and guidelines.

スコア

総合スコア

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

レビュー

💬

レビュー機能は近日公開予定です