بنقرة واحدة
finishing-branches
Use when work is complete and ready for integration, merge, or PR creation.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Use when work is complete and ready for integration, merge, or PR creation.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Post-processes clirec recordings for video production by scrubbing TUI artifacts, redacting PII, and stitching clean shell sections with raw Claude Code sections.
Reviews a user-provided demo script, proposes a clirec-ready version with timing and wait directives, then records on approval. Three phases — review, propose, record.
Manages task lifecycle transitions including starting, completing, and blocking tasks with enforcement gates and Trello synchronization.
Guides module architecture decisions including file size limits, function boundaries, and modular design patterns to maintain code quality and prevent complexity creep.
Runs cross-repo contract detection and impact analysis on sibling projects in a workspace. Detects schema, route, command, and config changes, traces the dependency graph, and produces an impact report with severity and recommended actions.
Manages feature planning workflow including budget validation, task creation, and Trello synchronization.
| name | finishing-branches |
| description | Use when work is complete and ready for integration, merge, or PR creation. |
| skills | ["finishing-branches"] |
| agent-roles | ["reviewer"] |
bpsai-pair ci # Tests + linting in one command
bpsai-pair validate # Check project structure
bpsai-pair security scan-secrets --staged # Check for leaked secrets
git diff main...HEAD --stat
git diff main...HEAD | grep -E "print\(|breakpoint|TODO|FIXME"
Follow managing-task-lifecycle skill for two-step completion.
bpsai-pair github auto-pr # Auto-creates PR from branch, detects TASK-xxx
## Summary
Brief description.
## Changes
- Added X
- Modified Y
- Fixed Z
## Testing
- [ ] Unit tests added/updated
- [ ] All tests passing
- [ ] Manual testing completed
## Checklist
- [ ] No debug statements
- [ ] Documentation updated
- [ ] Task status updated
git checkout main
git pull origin main
git branch -d <feature-branch>
pytest && ruff check . && git add -A && git commit -m "[TASK-XXX] Description" && git push