Install
$ agentstack add skill-postmelee-hyper-waterfall-pr-merge-cleanup ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
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 →About
PR merge 후 부산물 정리
트리거
- 작업지시자가 "merge 후 정리", "타스크 정리"를 명시 지시한 경우
- 본 SKILL을 직접 호출한 경우
사전 조건
- 대상 PR이 GitHub에서 실제 merged 상태 (
gh pr view {번호} --json state,mergeCommit) - 작업지시자의 이슈 close 승인 (또는 PR 본문에
closes #N명시되어 자동 close된 상태)
절차
- PR과 이슈 상태 확인
``bash gh pr view {번호} --json state,mergedAt,mergeCommit,headRefName gh issue view {N} --json state ``
- PR
state == MERGED아니면 즉시 중단하고 작업지시자 보고
- 이슈 close (자동 close 안 된 경우만)
``bash gh issue close {N} ``
- {BASE_BRANCH} 최신화
``bash git fetch origin --prune git checkout {BASE_BRANCH} git pull --ff-only ``
- 원격 publish 브랜치 삭제 (이미 PR merge 시
--delete-branch로 삭제된 경우 skip)
``bash git push origin --delete publish/task{N} 2>&1 || echo "이미 삭제됨" ``
- 분리 worktree 사용했다면 제거
``bash git worktree remove ../{repo}-task{N} git worktree prune ``
- 로컬 작업 브랜치 삭제 (재사용 가능성 없을 때만)
``bash git branch -d local/task{N} # 강제 삭제는 작업지시자 명시 승인 후에만: git branch -D local/task{N} ``
- 오늘할일 최종 정리:
mydocs/orders/{yyyymmdd}.md의 #{N} 행이완료+ 시각 기록되어 있는지 재확인 - 결과 보고: 정리된 항목 목록을 작업지시자에게 짧게 회신
검증
gh pr view {번호}state == MERGED확인git branch -vv | grep local/task{N}출력 없음 (삭제된 경우)git ls-remote origin publish/task{N}빈 출력 (원격 삭제 확인)git worktree list출력에 정리 대상 worktree 미존재git branch --show-current가{BASE_BRANCH}
절대 하지 말 것
- PR이 merged 상태가 아닌데 이슈 close
- 작업지시자 다른 task 브랜치(
local/task{다른번호})나 메인 worktree 삭제 git branch -D강제 삭제 무단 사용 (병합 안 된 커밋이 있을 때 손실 위험)- 다른 작업자의 stash 삭제
호출 방법
- Codex:
$pr-merge-cleanup또는/skills메뉴 - Claude Code:
/pr-merge-cleanup
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: postmelee
- Source: postmelee/hyper-waterfall
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.