一键导入
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