create-clone | Skill Performance & Reviews | TopRankSkills

TopRank Skills

Home / Skills / tools / create-clone

create-clone

maintained by YoniChechik

star 0 account_tree 0 verified_user MIT License
bolt View GitHub

name: "create-clone" description: "Create isolated git clone for feature"

Creates a git clone for isolated feature development.

Feature description from user input

"$ARGUMENTS"

Feature Description Validation

  • If empty or missing: "Error: Feature description is required. Please provide a detailed description."

Process

Step 1: Parse Feature Description

  • Decide on feature name based on description
  • Convert feature name to kebab-case for branch naming
  • Validate description is sufficient for planning

Step 2: Create Git Clone

Set up isolated feature branch from origin/main (unless user stated a different branch)

# Get the current repo URL
REPO_URL=$(git config --get remote.origin.url)

# Create _clones directory if it doesn't exist
mkdir -p _clones

# Create clone in _clones subdirectory with branch name as folder
git clone -b main "$REPO_URL" _clones/$FEATURE_NAME

# Move to new clone directory
cd _clones/$FEATURE_NAME

# Create and checkout the feature branch
git checkout -b $FEATURE_NAME

Step 3: Publish Branch to Remote

Push the empty branch to remote to establish tracking:

# Push the branch to remote and set upstream
git push -u origin $FEATURE_NAME

Step 4: Sync with Main

Run the sync skill to commit and push.

Step 5: Setup Environment

Setup development environment:

# Setup development environment
bash ~/.claude/scripts/setup_project_env.sh

Step 6: Notify User

Tell user:

  • The clone has been created at _clones/$FEATURE_NAME
  • The branch $FEATURE_NAME has been published to remote

Step 7: Change to Feature Directory

Change to the feature clone directory.

FROM NOW ALL NEW WORK SHOULD ONLY BE DONE IN THIS FEATURE DIR

chat Comments (0)

chat_bubble_outline

No comments yet. Be the first to share your thoughts!

Skill Details

GitHub Stars 0
GitHub Forks 0
Created Jan 2026
Last Updated il y a 5 mois
tools tools git workflows

Related Skills

pr

pr

MoonshotAI
star 6.1k
chevron_right
feature-dev
chevron_right
drafting-pr
chevron_right
creating-pr
chevron_right
checking-docs
chevron_right

Build your own?

Join 12,000+ developers contributing to the Claude ecosystem.