Smithery Logo
MCPsSkillsDocsPricing
Login
Smithery Logo

Accelerating the Agent Economy

Resources

DocumentationPrivacy PolicySystem Status

Company

PricingAboutBlog

Connect

© 2026 Smithery. All rights reserved.

    shikajiro

    pr-and-cleanup

    shikajiro/pr-and-cleanup
    DevOps
    64

    About

    SKILL.md

    Install

    Install via Skills CLI

    or add to your agent
    • Claude Code
      Claude Code
    • Codex
      Codex
    • OpenClaw
      OpenClaw
    • Cursor
      Cursor
    • Amp
      Amp
    • GitHub Copilot
      GitHub Copilot
    • Gemini CLI
      Gemini CLI
    • Kilo Code
      Kilo Code
    • Junie
      Junie
    • Replit
      Replit
    • Windsurf
      Windsurf
    • Cline
      Cline
    • Continue
      Continue
    • OpenCode
      OpenCode
    • OpenHands
      OpenHands
    • Roo Code
      Roo Code
    • Augment
      Augment
    • Goose
      Goose
    • Trae
      Trae
    • Zencoder
      Zencoder
    • Antigravity
      Antigravity
    ├─
    ├─
    └─

    About

    Create a PR and automatically cleanup the worktree. Keeps local and remote branches intact.

    SKILL.md

    PR And Cleanup

    worktreeでの開発完了後、PR作成と同時にworktreeを自動的にクリーンアップします。

    概要

    このスキルは以下を自動で実行します:

    1. 現在のworktreeディレクトリとブランチを検出
    2. 未コミットの変更がないか確認
    3. PRを作成(タイトル・本文はインタラクティブ入力可能)
    4. PR作成成功後、worktreeを削除
    5. mainブランチ(リポジトリルート)にチェックアウト

    重要: ローカルブランチとリモートブランチは残ります(削除されません)

    使用方法

    基本的な使い方

    # worktreeディレクトリ内で実行
    cd .worktrees/<feature-name>
    bash ../../.claude/skills/pr-and-cleanup/scripts/pr_and_cleanup.sh
    

    オプション

    # PR作成のみ(worktreeを削除しない)
    bash pr_and_cleanup.sh --pr-only
    
    # worktreeクリーンアップのみ(PR作成済みの場合)
    bash pr_and_cleanup.sh --cleanup-only
    
    # タイトルと本文を事前指定
    bash pr_and_cleanup.sh --title "feat: Add new feature" --body "詳細な説明..."
    
    # ドラフトPRとして作成
    bash pr_and_cleanup.sh --draft
    
    # 未コミット変更を無視(非推奨)
    bash pr_and_cleanup.sh --force
    

    前提条件

    • worktreeディレクトリ内で実行すること
    • すべての変更がコミット済みであること
    • gh CLI がインストール・認証済みであること
    • リモートブランチにpush済みであること(またはgh pr createが自動push)

    実行例

    $ cd .worktrees/user-auth
    $ bash ../../.claude/skills/pr-and-cleanup/scripts/pr_and_cleanup.sh
    
    [INFO] Current branch: feature/user-auth
    [INFO] Worktree path: /path/to/.worktrees/user-auth
    [STEP] Checking for uncommitted changes...
    [INFO] No uncommitted changes detected
    [STEP] Creating pull request...
    [INFO] PR created: https://github.com/user/repo/pull/123
    [STEP] Removing worktree...
    [INFO] Worktree removed successfully
    [STEP] Returning to main branch...
    [INFO] Now on branch: main
    

    エラーハンドリング

    未コミットの変更がある場合

    スクリプトは停止し、コミットを促します。

    PR作成失敗時

    worktreeは削除されず、現在のディレクトリに留まります。

    worktree外で実行した場合

    警告を表示し、処理を中止します。

    関連スキル

    • create-worktree: worktree作成
    • commit-commands:commit-push-pr: 従来のPR作成(worktree削除なし)
    • commit-commands:clean_gone: マージ済みブランチの一括削除

    詳細

    詳細については REFERENCE.md を参照してください。

    Recommended Servers
    Vercel Grep
    Vercel Grep
    Confluence
    Confluence
    Google Docs
    Google Docs
    Repository
    shikajiro/claude-code-skill-example
    Files