AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Finishing A Development Branch

skill-yinqd3-workbuddy-skills-finishing-a-development-branch · by yinqd3

所有任务完成、所有测试通过后使用。验证测试 → 提供合并/PR/保留/丢弃四个选项 → 执行选择。触发词:完成了、做完了、合并、提交PR、收尾、finish、merge。

No reviews yet
0 installs
26 views
0.0% view→install

Install

$ agentstack add skill-yinqd3-workbuddy-skills-finishing-a-development-branch

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-yinqd3-workbuddy-skills-finishing-a-development-branch)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Finishing A Development Branch? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

完成开发分支

步骤 1:验证测试

运行项目测试套件。测试失败 → 停止,不能继续。

# Python
pytest -q

# Node/TS
pnpm test

如果失败,必须先用 systematic-debugging 修复。

步骤 2:确定基准分支

git merge-base HEAD main 2>/dev/null || git merge-base HEAD master 2>/dev/null
git branch --show-current

步骤 3:呈现四个选项

实现完成。你想怎么做?

1. 合并回 (本地)
2. 推送并创建 Pull Request
3. 保留分支现状(我稍后处理)
4. 丢弃这些工作

选哪个?

步骤 4:执行选择

选项 1:本地合并

git checkout 
git pull
git merge 
# 运行测试
git branch -d 

选项 2:推送 + PR

git push -u origin 
gh pr create --title "" --body "## 概要
- 
- 

## 测试计划
- [ ] "

选项 3:保留现状

报告:"保留分支 ``。稍后可以继续。"

选项 4:丢弃

先确认:

这将永久删除:
- 分支 
- 自  以来的所有提交

输入"discard"确认。

等待精确输入 "discard" 后再执行:

git checkout 
git branch -D 

常见错误

  • 提供选项前不验证测试 → 总是先验证
  • 合并不拉取最新基准 → 总是先 git pull
  • PR 未合并就删分支 → 等待合并确认

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.