スキル一覧に戻る
doanchienthangdev

finishing-development-branches

by doanchienthangdev

Omega Vibecode Kit

2🍴 1📅 2026年1月21日
GitHubで見るManusで実行

SKILL.md


name: finishing-development-branches description: AI agent completes development branches with comprehensive quality gates, clean git history, and thorough PR preparation. Use when wrapping up features, preparing for merge, or finalizing PRs.

Finishing Development Branches

Quick Start

  1. Code Complete - All acceptance criteria met, edge cases handled, no TODOs
  2. Quality Assurance - Tests pass, coverage met, lint clean, build succeeds
  3. Documentation - README, API docs, inline comments updated
  4. Git Hygiene - Rebase on main, clean commit history, no conflicts
  5. PR Ready - Complete description, screenshots, reviewers assigned

Features

FeatureDescriptionGuide
Code CompletenessAll requirements implementedCheck acceptance criteria, edge cases, cleanup
Quality GatesAutomated validationTests, lint, types, security, build
TODO ScannerFind unaddressed itemsTODO, FIXME, HACK, XXX patterns
Git PreparationClean history for mergeRebase, squash WIP, conventional commits
PR GenerationComprehensive descriptionSummary, changes, testing, screenshots
Verification ScriptFinal pre-PR checkRun all gates, generate report

Common Patterns

# Completion Checklist
PHASE 1: CODE COMPLETE
[ ] All acceptance criteria implemented
[ ] Edge cases handled
[ ] Error handling complete
[ ] No TODO/FIXME unaddressed
[ ] Debug code removed

PHASE 2: QUALITY ASSURANCE
[ ] All tests passing
[ ] Coverage meets threshold (80%+)
[ ] Lint/format passing
[ ] Type checking passing
[ ] Security scan passing

PHASE 3: DOCUMENTATION
[ ] README updated if needed
[ ] API documentation updated
[ ] Complex logic commented

PHASE 4: GIT HYGIENE
[ ] Rebased on latest main
[ ] Commit history clean
[ ] Conventional commit messages
[ ] No merge conflicts

PHASE 5: PR READY
[ ] Description complete
[ ] Screenshots for UI changes
[ ] Reviewers assigned
# Git Preparation
git fetch origin main
git rebase origin/main

# Review commits for squashing
git log --oneline main..HEAD
# Consider squashing: fix, wip, temp commits
git rebase -i main

# Push with lease (safe force)
git push origin feature-branch --force-with-lease

# Quality verification
npm run lint && npm run typecheck && npm test && npm run build
# PR Description Template
## Summary
[2-3 sentences on what/why]

## Changes
- [Change 1]
- [Change 2]

## Testing
- [x] Unit tests
- [x] Integration tests
- [ ] Manual testing

## Screenshots
[For UI changes]

## Checklist
- [x] Self-review completed
- [x] Tests pass
- [x] Documentation updated

Best Practices

DoAvoid
Run all checks locally before pushingPushing broken code
Rebase on latest main to avoid conflictsForce pushing without --force-with-lease
Squash WIP commits into meaningful unitsLeaving fix/wip/temp commits
Write clear conventional commit messagesCryptic commit messages
Include screenshots for UI changesCreating PRs without descriptions
Self-review your diff before requestingLeaving debug statements in code
Test in clean environment if possibleSkipping tests to save time
Link to related tickets in PRIgnoring linting warnings
  • requesting-code-reviews - Write effective review requests
  • verifying-before-completion - Quality gate checklists
  • writing-plans - Plan completion criteria upfront
  • executing-plans - Track progress to completion

スコア

総合スコア

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

レビュー

💬

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