Token导航 LogoToken导航TokenDH.com
开发只读github未标认证来源可访问许可证需确认审计未展示

ring%3afinishing-a-development-branchRing%3a 正在完成开发分支

Agent Skill

ring%3afinishing-a-development-branch 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

606

周安装

25

GitHub Stars

180

下载量

198
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:ring%3afinishing-a-development-branch(Ring%3a 正在完成开发分支)
来源仓库:https://github.com/lerianstudio/ring
仓库路径:skills/ring%3Afinishing-a-development-branch
安装命令:
npx skills add https://github.com/lerianstudio/ring --skill ring:finishing-a-development-branch
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/lerianstudio/ring --skill ring:finishing-a-development-branch

简介

ring%3afinishing-a-development-branch 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 它适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理。
  • 可通过 npx skills add 命令从 GitHub 仓库安装,具体功能需参考原始 README 文档。
  • 使用前应确认权限边界、维护情况,避免触发不必要的联网或文件操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Finishing a Development Branch

Overview

Guide completion of development work by presenting clear options and handling chosen workflow.

Core principle: Verify tests → Present options → Execute choice → Clean up.

Announce at start: "I'm using the finishing-a-development-branch skill to complete this work."

The Process

Step 1: Verify Tests

Run npm test / cargo test / pytest / go test./... If tests fail: Show failures, stop. Cannot proceed until tests pass.

Step 2: Determine Base Branch

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

Step 3: Present Options

Present exactly these 4 options (no explanation):

  1. Merge back to locally
  2. Push and create a Pull Request
  3. Keep the branch as-is (I'll handle it later)
  4. Discard this work

Step 4: Execute Choice

OptionCommands
1. Merge Locallygit checkout <base>git pullgit merge <feature> → verify tests → git branch -d <feature> → Cleanup worktree
2. Create PRgit push -u origin <feature>gh pr create --title "..." --body "## Summary..." → Cleanup worktree
3. Keep As-IsReport: "Keeping branch. Worktree preserved at." Don't cleanup.
4. DiscardConfirm first: "Type 'discard' to confirm." → git checkout <base>git branch -D <feature> → Cleanup worktree

Step 5: Cleanup Worktree

Options 1, 2, 4: git worktree list | grep $(git branch --show-current) → if in worktree: git worktree remove <path> Option 3: Keep worktree.

Quick Reference

OptionMergePushKeep WorktreeCleanup Branch
1. Merge locally--
2. Create PR--
3. Keep as-is---
4. Discard---✓ (force)

Common Mistakes

MistakeProblemFix
Skipping test verificationMerge broken code, create failing PRAlways verify tests before offering options
Open-ended questions"What should I do next?" → ambiguousPresent exactly 4 structured options
Automatic worktree cleanupRemove worktree when might need itOnly cleanup for Options 1 and 4
No confirmation for discardAccidentally delete workRequire typed "discard" confirmation

Red Flags

Never:

  • Proceed with failing tests
  • Merge without verifying tests on result
  • Delete work without confirmation
  • Force-push without explicit request

Always:

  • Verify tests before offering options
  • Present exactly 4 options
  • Get typed confirmation for Option 4
  • Clean up worktree for Options 1 & 4 only

Integration

Called by:

  • ring:subagent-driven-development (Step 7) - After all tasks complete
  • ring:executing-plans (Step 5) - After all batches complete

Pairs with:

  • ring:using-git-worktrees - Cleans up worktree created by that skill

Blocker Criteria

STOP and report if:

Decision TypeBlocker ConditionRequired Action
Test VerificationTests fail or test command not foundSTOP and report - CANNOT proceed until tests pass
Base BranchCannot determine base branch (main or master)STOP and ask user which branch to merge into
Git StateUncommitted changes exist in working directorySTOP and report - MUST commit or stash changes first
Merge ConflictGit merge results in conflictsSTOP and report conflicts - user MUST resolve

Cannot Be Overridden

The following requirements CANNOT be waived:

  • MUST verify tests pass before offering any completion options
  • MUST present exactly 4 options - no improvised alternatives
  • MUST require typed "discard" confirmation for Option 4 - no shortcuts
  • CANNOT force-push without explicit user request and confirmation

Severity Calibration

SeverityConditionRequired Action
CRITICALTests failing in feature branchMUST fix tests before any merge/PR option
HIGHMerge to base branch introduces test failuresMUST abort merge and report - tests must pass post-merge
MEDIUMWorktree cleanup fails after successful mergeShould report warning but consider completion successful
LOWBranch deletion fails after mergeFix in next iteration - code is already merged

Pressure Resistance

User SaysYour Response
"Just merge it, I'll fix the tests later""CANNOT proceed with failing tests. Tests MUST pass before offering merge options. This prevents broken code from reaching the base branch."
"Skip the test verification, I know it works""I MUST run test verification. 'Knowing it works' is not evidence - actual test output is required before proceeding."
"Delete the branch without confirmation""CANNOT delete work without typed 'discard' confirmation. Type 'discard' to confirm you want to permanently delete this branch."

Anti-Rationalization Table

RationalizationWhy It's WRONGRequired Action
"Tests were passing earlier, skip verification"Tests can break between commits. Current state must be verified, not assumed.MUST run tests before offering options
"User is experienced, skip the 4-option prompt"Structured options prevent mistakes. User experience doesn't justify skipping workflow.MUST present exactly 4 options
"Small change, discard confirmation is overkill"Size doesn't determine value. Any work deserves explicit discard confirmation.MUST require typed 'discard' for Option 4
"Worktree cleanup failed but merge succeeded"Cleanup failure leaves orphan state. Report it even if merge completed.MUST report cleanup failures

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.82%
按下载量换算73

Claude

29.24%
按下载量换算58

Cursor

19.87%
按下载量换算39

Gemini CLI

10.77%
按下载量换算21

安全审计

暂无安全审计结果可展示。

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills